cosmoim-852 fix 俄罗斯半成品盘点关闭二次确认

master
guoshuang 3 years ago
parent a11c8eff4d
commit 2804b5dbc5

@ -541,5 +541,6 @@ export default {
LocalDNreceiving: '本地DN收货',
SOdelivery: 'SO 发货',
SONO: 'SO单号',
Closecount: '是否关闭盘点单',
},
};

@ -540,5 +540,6 @@ export default {
LocalDNreceiving: 'Local DN receiving',
SOdelivery: 'SO delivery',
SONO: 'SO NO',
Closecount: 'Close the count sheet?',
},
};

@ -540,5 +540,6 @@ export default {
LocalDNreceiving: 'локальный получатель DN',
SOdelivery: 'SO отгрузка',
SONO: 'SO NO',
Closecount: 'Закрыты ли инвентарные ведомости?',
},
};

@ -171,7 +171,7 @@ export default class LoginPage extends BasePage {
console.log('......', server.serverAddress);
if (server.serverAddress.includes('https://eurmom.haier.net')) {
//
this.Version = '1.1.15';
this.Version = '1.1.16';
} else {
this.Version = '1.0.46';
}

@ -172,12 +172,21 @@ export default class rawMaterialInventory extends BasePage {
}
//
async checkRawOrderComplete() {
await model.checkRawOrderComplete(this.pddNo);
if (this.model.code == '1') {
uni.showToast({ title: this.$t('message.Warehouse_Tip9') as any });
this.empty();
this.pddNo = '';
}
uni.showModal({
title: this.$t('message.Closecount') as string,
success: async (res) => {
if (res.confirm) {
await model.checkRawOrderComplete(this.pddNo);
if (this.model.code == '1') {
uni.showToast({ title: this.$t('message.Warehouse_Tip9') as any });
this.empty();
this.pddNo = '';
}
} else if (res.cancel) {
return;
}
},
});
}
//
back() {

Loading…
Cancel
Save