@things-factory/operato-wms 4.3.820 → 4.3.822

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.
@@ -240,10 +240,12 @@ class InventoryAdjustmentApproval extends connect(store)(localize(i18next)(PageV
240
240
  }
241
241
  }
242
242
 
243
+ const isTransfer = record.transactionType === 'TRANSFER'
243
244
  recordDiff.push({
244
245
  column: item.name,
245
246
  current: currentVal || '[N/A]',
246
- update: updatedVal != null && currentVal != updatedVal ? updatedVal : '[N/A]'
247
+ update:
248
+ updatedVal != null && (isTransfer || currentVal != updatedVal) ? updatedVal : '[N/A]'
247
249
  })
248
250
  })
249
251
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-wms",
3
- "version": "4.3.820",
3
+ "version": "4.3.822",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -89,9 +89,9 @@
89
89
  "@things-factory/pdf": "^4.3.815",
90
90
  "@things-factory/print-proxy-service": "^4.3.815",
91
91
  "@things-factory/print-ui": "^4.3.815",
92
- "@things-factory/product-base": "^4.3.819",
92
+ "@things-factory/product-base": "^4.3.822",
93
93
  "@things-factory/resource-ui": "^4.3.815",
94
- "@things-factory/sales-ui": "^4.3.820",
94
+ "@things-factory/sales-ui": "^4.3.822",
95
95
  "@things-factory/scene-data-transform": "^4.3.815",
96
96
  "@things-factory/scene-excel": "^4.3.815",
97
97
  "@things-factory/scene-firebase": "^4.3.815",
@@ -107,8 +107,8 @@
107
107
  "@things-factory/system-ui": "^4.3.815",
108
108
  "@things-factory/transport-base": "^4.3.819",
109
109
  "@things-factory/tutorial-ui": "^4.3.815",
110
- "@things-factory/warehouse-base": "^4.3.819",
111
- "@things-factory/worksheet-base": "^4.3.820"
110
+ "@things-factory/warehouse-base": "^4.3.822",
111
+ "@things-factory/worksheet-base": "^4.3.822"
112
112
  },
113
113
  "devDependencies": {
114
114
  "@things-factory/builder": "^4.3.815",
@@ -117,5 +117,5 @@
117
117
  "cypress-localstorage-commands": "^1.6.1",
118
118
  "eslint-plugin-cypress": "^2.12.1"
119
119
  },
120
- "gitHead": "50ff67176b1c57306867ee735081facd63a14d3b"
120
+ "gitHead": "a3d4a456e624f2ec794324e0f395d737df34e554"
121
121
  }