Browse Source

零部件DVP编制,DVP验证新增不认可原因

wumingxin 5 months ago
parent
commit
4a4cc11c56

+ 1 - 0
src/locales/lang/en-US/dvpPlan.js

@@ -51,6 +51,7 @@ export default {
 
   'plan.dvp.number-of-samples': 'Number Of Samples',
   'plan.dvp.sample-type': 'Sample Type',
+  'plan.dvp.reason-for-disagreement': 'Reason for disagreement',
   'plan.dvp.sample-type.soft-modules': 'Soft modules',
   'plan.dvp.sample-type.hard-module': 'Hard module',
   'plan.dvp.sample-type.fixture-parts': 'Fixture parts',

+ 1 - 0
src/locales/lang/zh-CN/dvpPlan.js

@@ -50,6 +50,7 @@ export default {
 
   'plan.dvp.number-of-samples': '样本数量',
   'plan.dvp.sample-type': '样件类型',
+  'plan.dvp.reason-for-disagreement': '不认可原因',
   'plan.dvp.sample-type.soft-modules': '软模件',
   'plan.dvp.sample-type.hard-module': '硬模件',
   'plan.dvp.sample-type.fixture-parts': '工装件',

+ 8 - 0
src/views/componentsDVP/dvpPlan/edit.vue

@@ -433,6 +433,14 @@ export default {
           align: 'center',
           ellipsis: true
         },
+        // 不认可原因
+        {
+          title: this.$t('plan.dvp.reason-for-disagreement'),
+          width: 100,
+          dataIndex: 'planDenyCause',
+          align: 'center',
+          ellipsis: true
+        },
         // 计划结束时间
         {
           title: this.$t('plan.dvp.scheduled-end-time'),

+ 8 - 0
src/views/componentsDVP/verify/dvpVerify.vue

@@ -561,6 +561,14 @@ export default {
           dataIndex: 'modifiedMeasure',
           ellipsis: true
         },
+        // 不认可原因
+        {
+          title: this.$t('plan.dvp.reason-for-disagreement'),
+          width: 100,
+          dataIndex: 'verifyDenyCause',
+          align: 'center',
+          ellipsis: true
+        },
         {
           // 操作
           title: () => this.$t('global-constant.operation'),