Gail Kasnett
05/06/2020, 7:28 PMbattk
05/06/2020, 8:19 PMGail Kasnett
05/06/2020, 8:36 PMGail Kasnett
05/09/2020, 9:28 PMSean Murphy
05/09/2020, 9:34 PMSean Murphy
05/09/2020, 9:35 PMSean Murphy
05/09/2020, 9:40 PMbattk
05/09/2020, 11:17 PMbattk
05/09/2020, 11:17 PMbattk
05/09/2020, 11:19 PMGail Kasnett
05/10/2020, 6:33 PMAndrea Rivetti
05/12/2020, 9:16 AMAndrea Rivetti
05/12/2020, 9:19 AMGail Kasnett
05/17/2020, 8:01 PMvar itemRecord = record.load({ type: 'inventoryitem', id: 739 });
var locationCount = itemRecord.getLineCount('locations');
var allLocInv = [];
for (var i = 0; i < locationCount; i++) {
allLocInv.push({
location: itemRecord.getSublistValue('locations', 'location', i),
quantityavailable: itemRecord.getSublistValue('locations', 'quantityavailable', i)
})
}Gail Kasnett
05/17/2020, 8:01 PM