@things-factory/operato-wms 4.3.660 → 4.3.662

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.
@@ -896,7 +896,7 @@ class ArrivalNoticeDetail extends localize(i18next)(PageView) {
896
896
  name: 'palletId',
897
897
  header: i18next.t('field.lot_id'),
898
898
  imex: { header: i18next.t('field.lot_id'), key: 'palletId', width: 25, type: 'string' },
899
- record: { editable: editable },
899
+ record: { editable: true },
900
900
  width: 150
901
901
  }
902
902
  ]
@@ -247,7 +247,7 @@ export class EditProductPopup extends localize(i18next)(LitElement) {
247
247
  name: 'palletId',
248
248
  header: i18next.t('field.lot_id'),
249
249
  imex: { header: i18next.t('field.lot_id'), key: 'palletId', width: 25, type: 'string' },
250
- record: { editable: editable },
250
+ record: { editable: true },
251
251
  width: 150
252
252
  }
253
253
  ]
@@ -1056,7 +1056,7 @@ export class EditProductPopup extends localize(i18next)(LitElement) {
1056
1056
  )
1057
1057
  }
1058
1058
 
1059
- if (!record.location || !record.location.id) {
1059
+ if (this.enableDirectInbound && !record.location) {
1060
1060
  throw new Error(
1061
1061
  i18next.t('text.location_required_for_product', {
1062
1062
  defaultValue: `Add Product Row ${index + 1}: Location is missing for product "${record.product.name}"`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-wms",
3
- "version": "4.3.660",
3
+ "version": "4.3.662",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -108,7 +108,7 @@
108
108
  "@things-factory/transport-base": "^4.3.631",
109
109
  "@things-factory/tutorial-ui": "^4.3.591",
110
110
  "@things-factory/warehouse-base": "^4.3.660",
111
- "@things-factory/worksheet-base": "^4.3.660"
111
+ "@things-factory/worksheet-base": "^4.3.662"
112
112
  },
113
113
  "devDependencies": {
114
114
  "@things-factory/builder": "^4.3.591",
@@ -117,5 +117,5 @@
117
117
  "cypress-localstorage-commands": "^1.6.1",
118
118
  "eslint-plugin-cypress": "^2.12.1"
119
119
  },
120
- "gitHead": "d5c870cd06b2fcacea68ba21baadd244e4532b99"
120
+ "gitHead": "a9de1ca1d0d91b4d66cdfee7a278cf17e6b2a828"
121
121
  }