diff --git a/src/i18n/lang/cn.ts b/src/i18n/lang/cn.ts
index 24e4a31..cea5677 100644
--- a/src/i18n/lang/cn.ts
+++ b/src/i18n/lang/cn.ts
@@ -493,6 +493,7 @@ export default {
StorageNum: '入库数量',
DeliveryLoc: '出库地点',
AllThem: '请全部出库',
+ newAllThem: '请全部入库',
submitted: '还有数据没提交 是否重新查询',
StorageLocation: '入库地点',
BCPInventory: '半成品盘点',
diff --git a/src/i18n/lang/en.ts b/src/i18n/lang/en.ts
index 2e12259..0dfb68a 100644
--- a/src/i18n/lang/en.ts
+++ b/src/i18n/lang/en.ts
@@ -493,6 +493,7 @@ export default {
StorageNum: 'total',
DeliveryLoc: 'Delivery Loc',
AllThem: 'All of them, please',
+ newAllThem: 'Please store all items in the warehouse',
submitted: 'There is data not submitted whether to re-query',
StorageLocation: 'Storage Loc',
BCPInventory: 'Inventory',
diff --git a/src/i18n/lang/ru.ts b/src/i18n/lang/ru.ts
index 978376f..c46479a 100644
--- a/src/i18n/lang/ru.ts
+++ b/src/i18n/lang/ru.ts
@@ -493,6 +493,7 @@ export default {
StorageNum: 'Оприходованное кол.',
DeliveryLoc: 'Место отгрузки',
AllThem: 'Пожалуйста отгрузите всё',
+ newAllThem: 'Пожалуйста, все на складе.',
submitted: 'Есть еще данные, которые не были переданы. Нужно проверить повторно',
StorageLocation: 'Место оприходования',
BCPInventory: 'инвентаризация полуфабриката',
diff --git a/src/pages/raw/STO/FactorySTO-Outbound/index.vue b/src/pages/raw/STO/FactorySTO-Outbound/index.vue
index 2f7566e..3896dcd 100644
--- a/src/pages/raw/STO/FactorySTO-Outbound/index.vue
+++ b/src/pages/raw/STO/FactorySTO-Outbound/index.vue
@@ -264,7 +264,7 @@ export default class dnReceiptDom extends BasePage {
stoItem: this.TheItem.stoItem,
materialCode: this.TheItem.materialCode,
orderAmount: this.TheItem.orderAmount,
- scanAmount: this.TheItem.orderAmount,
+ scanAmount: this.TheItem.scanAmount,
wlCode: this.locCode,
nowAmount: this.num,
barCode: this.barCode,
diff --git a/src/pages/raw/STO/FactorySTO-Storage/index.vue b/src/pages/raw/STO/FactorySTO-Storage/index.vue
index 6c94bf3..2f8388f 100644
--- a/src/pages/raw/STO/FactorySTO-Storage/index.vue
+++ b/src/pages/raw/STO/FactorySTO-Storage/index.vue
@@ -65,7 +65,6 @@
-
{{ $t('message.StorageLocation') }}
@@ -76,7 +75,7 @@
{{ $t('message.CommissionedLocation') }}
-
+
@@ -269,7 +268,7 @@ export default class dnReceiptDom extends BasePage {
stoItem: this.TheItem.stoItem,
materialCode: this.TheItem.materialCode,
orderAmount: this.TheItem.orderAmount,
- scanAmount: this.TheItem.orderAmount,
+ scanAmount: this.TheItem.scanAmount,
wlCode: this.Loc.value,
nowAmount: this.num,
barCode: this.barCode,
@@ -308,7 +307,7 @@ export default class dnReceiptDom extends BasePage {
let isTrue = true;
this.model.dnNoList.forEach((item: any) => {
if (item.orderAmount != item.scanAmount) {
- this.customToast(this.$t('message.AllThem') as any);
+ this.customToast(this.$t('message.newAllThem') as any);
return (isTrue = false);
}
});