Eric Schultz
11/18/2022, 2:19 PMerictgrubaugh
11/18/2022, 2:55 PMnumber
, then all your display mechanisms for the value force the integer
format (e.g. in an email template with something like ${myNumber?floor}
).scottvonduhn
11/18/2022, 3:09 PMEric Schultz
11/18/2022, 3:20 PMEric Schultz
11/18/2022, 3:21 PMrecord.submitFields({
type: record.Type.SALES_ORDER,
id: parseInt(salesOrderID),
values: {
custbody_step_softw_del_email_complete: true,
custbody_resend_software_delivery: false,
},
options: {
enableSourcing: false,
ignoreMandatoryFields: true
}
});
ehcanadian
11/18/2022, 3:57 PMparseInt(id, 10).toString();