下午好, 我需要知道如何访问客户记录之外的单价字段,该字段位于客户 --> 财务子选项卡 --> 和子列表项目定价中。 我需要通过脚本编辑此值,但现在我不知道如何访问此字段以及在何处/何时生成此值,因为该值在项目中不存在。 谢谢你的时间!
ItemPricing 它是客户记录中的子列表,您可以使用它循环
var customer = record.load({
type: record.Type.CUSTOMER,
id: user.internalid,
isDynamic: true
});
for ( var j = 0; j < customer.getLineCount( 'itempricing'); j++ ) {
var infoField=customer.getSublistValue( 'itempricing', 'FIELD YOU ARE LOOKING FOR', j )
}