tuli
06/18/2020, 1:30 PMfunction drawVerifyValidateLine(type) {
if (type == 'item') {
var isVerified = nlapiGetCurrentLineItemValue('item', 'custcol_drawing_verification');
if (isVerified !== 'T') {
alert("You must check drawing verification for this service item.");
return false;
}
return true;
}
}
This works , but there is another custom sublist in custom tab,
that misbehaves due to this. I am not able to add item in that custom list(add operation is rejected). When I undeploy my client script (code above), this custom sublist again starts working normally. What am I doing wrong ?mizax
06/18/2020, 1:44 PMmizax
06/18/2020, 1:44 PMmizax
06/18/2020, 1:46 PMmizax
06/18/2020, 1:46 PMtuli
06/18/2020, 1:57 PM