@things-factory/worksheet-base 7.1.38 → 7.1.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -130,6 +130,7 @@ export declare function inventoriesByStrategy({ worksheetId, batchId, bizplaceId
130
130
  warehouseQty: number;
131
131
  lot?: string;
132
132
  isMachineFiltering?: boolean;
133
+ origin?: string;
133
134
  originInventory?: Inventory;
134
135
  originInventoryId?: string;
135
136
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/worksheet-base",
3
- "version": "7.1.38",
3
+ "version": "7.1.39",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -34,11 +34,11 @@
34
34
  "@things-factory/integration-sftp": "^7.1.38",
35
35
  "@things-factory/marketplace-base": "^7.1.38",
36
36
  "@things-factory/notification": "^7.1.33",
37
- "@things-factory/sales-base": "^7.1.38",
37
+ "@things-factory/sales-base": "^7.1.39",
38
38
  "@things-factory/setting-base": "^7.1.33",
39
39
  "@things-factory/shell": "^7.1.24",
40
40
  "@things-factory/transport-base": "^7.1.33",
41
- "@things-factory/warehouse-base": "^7.1.38"
41
+ "@things-factory/warehouse-base": "^7.1.39"
42
42
  },
43
- "gitHead": "235f5fc6b16418cfe2ab86aa346394bde1a7969b"
43
+ "gitHead": "864377d3916437b4c7aeae9dd603ff575a86bbe3"
44
44
  }
@@ -241,6 +241,7 @@ export class UnloadingWorksheetController extends VasWorksheetController {
241
241
  newInventory.auxInfo2 = inventory.auxInfo2 || null
242
242
  newInventory.workCategory = inventory.workCategory || ''
243
243
  newInventory.isMachineFiltering = inventory.isMachineFiltering || false
244
+ newInventory.origin = inventory.origin || ''
244
245
 
245
246
  if (inventory?.expirationDate) {
246
247
  newInventory.expirationDate = new Date(inventory.expirationDate)