Version: eXtendMultiFulfillment 1.0.1 and above
Audience: Administrator

Use Case

  • Copy additional fields from the original item fulfillment record to multi-fulfillment records. This way, you can set the additional field values on item fulfillments created through the eXtendMultiFulfillment process.

Configuration

By default, eXtendMultiFulfillments copies the Transaction Date and Status from the source item fulfillment to the generated multi-fulfillment records. If you want to copy additional fields from the source item fulfillment transaction, you can specify those fields in the bodyFields and/or columnFields variables in the suite_multifulfillment_fields.js file. This will help ensure that important field data is written back to newly created multi-fulfillments.

Example:

/**
 * @NModuleScope Public
 */
 define([],
 function () {

   var bodyFields = [
     'trandate', 'shipstatus'
   ];

   var columnFields = [
   ];

   return {
     bodyFields: bodyFields,
     columnFields: columnFields
   }
 }
);