cosmoim-852 fix 俄罗斯新增功能调整

master
guoshuang 2 years ago
parent 10df37e456
commit 714f661d11

@ -493,6 +493,7 @@ export default {
StorageNum: '入库数量', StorageNum: '入库数量',
DeliveryLoc: '出库地点', DeliveryLoc: '出库地点',
AllThem: '请全部出库', AllThem: '请全部出库',
newAllThem: '请全部入库',
submitted: '还有数据没提交 是否重新查询', submitted: '还有数据没提交 是否重新查询',
StorageLocation: '入库地点', StorageLocation: '入库地点',
BCPInventory: '半成品盘点', BCPInventory: '半成品盘点',

@ -493,6 +493,7 @@ export default {
StorageNum: 'total', StorageNum: 'total',
DeliveryLoc: 'Delivery Loc', DeliveryLoc: 'Delivery Loc',
AllThem: 'All of them, please', AllThem: 'All of them, please',
newAllThem: 'Please store all items in the warehouse',
submitted: 'There is data not submitted whether to re-query', submitted: 'There is data not submitted whether to re-query',
StorageLocation: 'Storage Loc', StorageLocation: 'Storage Loc',
BCPInventory: 'Inventory', BCPInventory: 'Inventory',

@ -493,6 +493,7 @@ export default {
StorageNum: 'Оприходованное кол.', StorageNum: 'Оприходованное кол.',
DeliveryLoc: 'Место отгрузки', DeliveryLoc: 'Место отгрузки',
AllThem: 'Пожалуйста отгрузите всё', AllThem: 'Пожалуйста отгрузите всё',
newAllThem: 'Пожалуйста, все на складе.',
submitted: 'Есть еще данные, которые не были переданы. Нужно проверить повторно', submitted: 'Есть еще данные, которые не были переданы. Нужно проверить повторно',
StorageLocation: 'Место оприходования', StorageLocation: 'Место оприходования',
BCPInventory: 'инвентаризация полуфабриката', BCPInventory: 'инвентаризация полуфабриката',

@ -264,7 +264,7 @@ export default class dnReceiptDom extends BasePage {
stoItem: this.TheItem.stoItem, stoItem: this.TheItem.stoItem,
materialCode: this.TheItem.materialCode, materialCode: this.TheItem.materialCode,
orderAmount: this.TheItem.orderAmount, orderAmount: this.TheItem.orderAmount,
scanAmount: this.TheItem.orderAmount, scanAmount: this.TheItem.scanAmount,
wlCode: this.locCode, wlCode: this.locCode,
nowAmount: this.num, nowAmount: this.num,
barCode: this.barCode, barCode: this.barCode,

@ -65,7 +65,6 @@
<u-input v-model="TheItem.scanAmount" placeholder="" :type="type" :border="border" class="input" disabled style="padding: '0'" /> <u-input v-model="TheItem.scanAmount" placeholder="" :type="type" :border="border" class="input" disabled style="padding: '0'" />
</view> </view>
</view> </view>
<!-- 出库库位 -->
<view class="material"> <view class="material">
<view class="material-right"> <view class="material-right">
<view class="material-right-title">{{ $t('message.StorageLocation') }}</view> <view class="material-right-title">{{ $t('message.StorageLocation') }}</view>
@ -76,7 +75,7 @@
<view class="library"> <view class="library">
<view class="library-left"> <view class="library-left">
<view>{{ $t('message.CommissionedLocation') }}</view> <view>{{ $t('message.CommissionedLocation') }}</view>
<!-- <u-input v-model="locCode" disabled placeholder="" style="margin-top: 8px" /> --> <!-- <u-input v-model="TheItem.receiveRegion" disabled placeholder="" style="margin-top: 8px" /> -->
<jPicker sureColor="#ff0000" style="width: 230rpx" @bindpicker="SelectLoc" showKey="value" valKey="value" :val="Loc.value" class="search" :options="LocList" /> <jPicker sureColor="#ff0000" style="width: 230rpx" @bindpicker="SelectLoc" showKey="value" valKey="value" :val="Loc.value" class="search" :options="LocList" />
</view> </view>
</view> </view>
@ -269,7 +268,7 @@ export default class dnReceiptDom extends BasePage {
stoItem: this.TheItem.stoItem, stoItem: this.TheItem.stoItem,
materialCode: this.TheItem.materialCode, materialCode: this.TheItem.materialCode,
orderAmount: this.TheItem.orderAmount, orderAmount: this.TheItem.orderAmount,
scanAmount: this.TheItem.orderAmount, scanAmount: this.TheItem.scanAmount,
wlCode: this.Loc.value, wlCode: this.Loc.value,
nowAmount: this.num, nowAmount: this.num,
barCode: this.barCode, barCode: this.barCode,
@ -308,7 +307,7 @@ export default class dnReceiptDom extends BasePage {
let isTrue = true; let isTrue = true;
this.model.dnNoList.forEach((item: any) => { this.model.dnNoList.forEach((item: any) => {
if (item.orderAmount != item.scanAmount) { if (item.orderAmount != item.scanAmount) {
this.customToast(this.$t('message.AllThem') as any); this.customToast(this.$t('message.newAllThem') as any);
return (isTrue = false); return (isTrue = false);
} }
}); });

Loading…
Cancel
Save