diff --git a/src/i18n/lang/cn.ts b/src/i18n/lang/cn.ts index db3901c..c6d423f 100644 --- a/src/i18n/lang/cn.ts +++ b/src/i18n/lang/cn.ts @@ -508,7 +508,7 @@ export default { PleaseOne: '请输入责任人', PleaseTwo: '请输入不良原因', rejectsOffline: '不良品下线', - ResponsibleProcess: '责任工序', + ResponsibleProcess: '责任区域', PleaseThere: '请输入责任工序', rawWasteJudgment: '原材料判废', reason1: '原因', @@ -526,5 +526,7 @@ export default { allocation: '调拨', Relationship: 'BOM关系外生产扣料', Insufficient: '源容器不足', + defect: '缺陷', + Note: '备注', }, }; diff --git a/src/i18n/lang/en.ts b/src/i18n/lang/en.ts index a8d3361..98667ee 100644 --- a/src/i18n/lang/en.ts +++ b/src/i18n/lang/en.ts @@ -503,12 +503,12 @@ export default { Lineedge_raw_transfer: 'Line edge raw material transfer', CostCenter: 'Cost Center', recovery: 'recovery', - personLiable: 'person liable', + personLiable: 'responsible person', CausesOfDefects: 'Causes of defects', PleaseOne: 'Please enter the responsible person', PleaseTwo: 'Please enter the cause of the defect', rejectsOffline: 'NG Roll Off', - ResponsibleProcess: 'Responsible process', + ResponsibleProcess: 'Responsible area', PleaseThere: 'Please enter the responsible operation', rawWasteJudgment: 'Waste judgment of raw', reason1: 'reason', @@ -526,5 +526,7 @@ export default { allocation: 'allocation', Relationship: 'External Mat', Insufficient: 'Insufficient source container', + defect: 'defects', + Note: 'Note', }, }; diff --git a/src/i18n/lang/ru.ts b/src/i18n/lang/ru.ts index ab8058a..623a319 100644 --- a/src/i18n/lang/ru.ts +++ b/src/i18n/lang/ru.ts @@ -508,7 +508,7 @@ export default { PleaseOne: 'Введите ответственное лицо', PleaseTwo: 'Введите причину неисправности', rejectsOffline: 'нижняя линия дефекта', - ResponsibleProcess: 'ответственная операция', + ResponsibleProcess: 'зона ответственности', PleaseThere: 'Введите ответственную операцию', rawWasteJudgment: 'утилизация сырья', reason1: 'причина', @@ -526,5 +526,7 @@ export default { allocation: 'переброска', Relationship: 'производственные вычеты', Insufficient: 'недостаточная емкость источника', + defect: 'дефект', + Note: 'Примечание', }, }; diff --git a/src/pages/raw/LineSide/rejectsOffline/index.vue b/src/pages/raw/LineSide/rejectsOffline/index.vue index 092a2b8..f687e49 100644 --- a/src/pages/raw/LineSide/rejectsOffline/index.vue +++ b/src/pages/raw/LineSide/rejectsOffline/index.vue @@ -31,18 +31,22 @@ - - + + - + + + + + @@ -130,10 +134,10 @@ export default class productCheckReceipt extends BasePage { this.customToast(this.$t('message.PleaseTwo') as string); return; } - if (!this.Some.responsibleUser) { - this.customToast(this.$t('message.PleaseOne') as string); - return; - } + // if (!this.Some.responsibleUser) { + // this.customToast(this.$t('message.PleaseOne') as string); + // return; + // } if (!this.Some.responsibleProcess) { this.customToast(this.$t('message.PleaseThere') as string); return; @@ -148,6 +152,7 @@ export default class productCheckReceipt extends BasePage { reason: this.Some.reason, responsibleUser: this.Some.responsibleUser, responsibleProcess: this.Some.responsibleProcess, + add2: this.Some.Note, }); if (this.model.code == '1') { uni.showToast({ diff --git a/src/pages/raw/LineSide/semifinished-wasteJudgment/index.vue b/src/pages/raw/LineSide/semifinished-wasteJudgment/index.vue index 216817a..f6eea76 100644 --- a/src/pages/raw/LineSide/semifinished-wasteJudgment/index.vue +++ b/src/pages/raw/LineSide/semifinished-wasteJudgment/index.vue @@ -25,21 +25,25 @@ - + - - + + - + - + + + + + @@ -76,6 +80,7 @@ export default class KanDanHandOver extends BasePage { responsibleUser = ''; responsibleProcess = ''; every: any = {}; + Note = ''; async query() { if (this.barcode == '' || this.barcode.length == 0) { this.customToast(this.$t('message.barcode') as string); @@ -105,10 +110,10 @@ export default class KanDanHandOver extends BasePage { this.customToast(this.$t('message.PleaseFour') as string); return; } - if (this.responsibleUser == '') { - this.customToast(this.$t('message.PleaseOne') as string); - return; - } + // if (this.responsibleUser == '') { + // this.customToast(this.$t('message.PleaseOne') as string); + // return; + // } if (this.responsibleProcess == '') { this.customToast(this.$t('message.PleaseThere') as string); return; @@ -128,6 +133,7 @@ export default class KanDanHandOver extends BasePage { reason: this.reason, responsibleUser: this.responsibleUser, responsibleProcess: this.responsibleProcess, + add2: this.Note, }; await this.model.submit(params); if (this.model.submitCode == '1') { @@ -137,6 +143,7 @@ export default class KanDanHandOver extends BasePage { this.reason = ''; this.responsibleUser = ''; this.responsibleProcess = ''; + this.Note = ''; } } }