pen one
01/05/2021, 9:38 PMericbirdsall
01/05/2021, 9:46 PMpen one
01/05/2021, 9:47 PMfunction dimsTotalSumEst(type, form, request){
var totalWeightLbs = 0;
var gridTotalWeightLbs = nlapiGetCurrentLineItemValue('recmachcustrecord_1','custrecord_total_weight_lbs');
var lines = nlapiGetLineItemCount('recmachcustrecord_1');
for(var i = 1; i <= lines; i++){
if (gridTotalWeightLbs) { totalWeightLbs = totalWeightLbs + parseFloat(nlapiGetLineItemValue('recmachcustrecord_1', 'custrecord_total_weight_lbs', i));}
}
if (gridTotalWeightLbs > 0){ nlapiSetFieldValue('custbody87',totalWeightLbs)};
}
ericbirdsall
01/05/2021, 9:52 PMericbirdsall
01/05/2021, 9:52 PMericbirdsall
01/05/2021, 9:58 PMif (type != "idofthesublistyoucareabout") return true;
pen one
01/05/2021, 10:09 PM