Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Default configurations

Expand
titleprepare_select
Code Block
languagejson
[
  {
    "name": "preparation_note",
    "existsIf": "documents.preparation_note",
    "type": "multi_parcel"
  }
]
Expand
titlepack or pack_multi
Code Block
languagejson
{
  "pack_multi": [
    {
      "name": "shipment",
      "existsIf": "shipment.document_id"
    },
    {
      "name": "dispatch_note",
      "existsIf": "documents.dispatch_note"
    }
  ]
}
Expand
titlepack_scan
Code Block
languagejson
[
  {
    "name": "shipment",
    "existsIf": "shipment.document_id"
  },
  {
    "name": "dispatch_note",
    "existsIf": "documents.dispatch_note"
  }
]
Expand
titledispatch
Code Block
languagejson
[
  {
    "name": "shipment",
    "existsIf": "shipment.document_id",
    "entityType": "parcel"
  },
  {
    "name": "dispatch_note",
    "existsIf": "documents.dispatch_note",
    "entityType": "parcel"
  },
  {
    "name": "manifest",
    "existsIf": "document_id",
    "entityType": "shipment_manifest"
  }
]
Expand
titlebag or bag_multi
Code Block
languagejson
[
  {
    "name": "dispatch_note",
    "existsIf": "documents.dispatch_note"
  }
]
Expand
titlebag_scan
Code Block
languagejson
[
  {
    "name": "dispatch_note",
    "existsIf": "documents.dispatch_note"
  }
]
Expand
titleboxing
Code Block
languagejson
[
  {
    "name": "shipment",
    "existsIf": "shipment.document_id"
  },
  {
    "name": "dispatch_note",
    "existsIf": "documents.dispatch_note"
  }
]
Expand
titlecustomer_search > customer_order
Code Block
languagejson
[
  {
    "name": "collect_note",
    "existsIf": "documents.collect_note",
    "entityType": "order"
  },
  {
    "name": "shipment",
    "existsIf": "shipment.document_id",
    "entityType": "parcel"
  },
  {
    "name": "dispatch_note",
    "existsIf": "documents.dispatch_note",
    "entityType": "parcel"
  },
  {
    "name": "return_note",
    "existsIf": "documents.return_note",
    "entityType": "return_parcel"
  },
  {
    "name": "manifest",
    "existsIf": "documents.manifest",
    "entityType": "parcel"
  }
]