Export manipulation
Modifies the outgoing data before it is sent to the secondary source.
const isNewAssemblyRow =
rowData.isAssemblyRow &&
rowData.isMissingInSecondaryDatasource == true &&
rowData.isFoundInSecondaryDatasource == false;
if (!isNewAssemblyRow)
{ delete s['phantomYN']; }
if (rowData.isAssemblyRow === true)
{ delete s['material']; }
return s;
Last updated