一般来说,我对编码完全陌生,我正在寻找一种在添加或编辑新地址时在地址表单上禁用默认送货地址复选框的方法。
我创建了以下脚本并将其附加到地址表单,该脚本可以正常工作,以便禁用字段,但是冻结销售订单表单,
function() {
function pageInit(context) {
var currentRecord = context.currentRecord;
currentRecord.setValue({
fieldId: 'defaultshipping',
value: false
});
context.currentRecord.getField({fieldId: 'defaultshipping'}).isDisabled = true;
context.currentRecord.getField({fieldId: 'defaultbilling'}).isDisabled = true;
context.currentRecord.getField({fieldId: 'isresidential'}).isDisabled = true;
}
return {
pageInit: pageInit,
}
销售订单表格冻结,并且当您在“选择运送目的地”下拉列表中选择一个地址时,没有任何内容可以拉到“运送目的地”字段,我也无法更改标签。