From cb8b955ef39a703ed55ae27a9c32cd075db734f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Mon, 19 Sep 2022 19:50:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=89=B9=E5=8F=B7=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E6=A1=86=E5=AF=B9=E5=BA=94=E7=9A=84=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E6=A1=86=E7=9A=84=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/bill/mixins/BillModalMixin.js | 2 +- jshERP-web/src/views/bill/modules/OtherOutModal.vue | 2 +- jshERP-web/src/views/bill/modules/PurchaseBackModal.vue | 2 +- jshERP-web/src/views/bill/modules/RetailOutModal.vue | 2 +- jshERP-web/src/views/bill/modules/SaleOutModal.vue | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jshERP-web/src/views/bill/mixins/BillModalMixin.js b/jshERP-web/src/views/bill/mixins/BillModalMixin.js index f72e4ad6..adce5b20 100644 --- a/jshERP-web/src/views/bill/mixins/BillModalMixin.js +++ b/jshERP-web/src/views/bill/mixins/BillModalMixin.js @@ -134,7 +134,7 @@ export const BillModalMixin = { if(this.prefixNo === 'LSTH' || this.prefixNo === 'CGRK' || this.prefixNo === 'XSTH' || this.prefixNo === 'QTRK') { columns[i].type = FormTypes.date //显示 } else { - columns[i].type = FormTypes.normal //显示 + columns[i].type = FormTypes.input //显示 } } else { columns[i].type = FormTypes.normal //显示 diff --git a/jshERP-web/src/views/bill/modules/OtherOutModal.vue b/jshERP-web/src/views/bill/modules/OtherOutModal.vue index e17d9ce2..834cd741 100644 --- a/jshERP-web/src/views/bill/modules/OtherOutModal.vue +++ b/jshERP-web/src/views/bill/modules/OtherOutModal.vue @@ -174,7 +174,7 @@ { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, { title: '序列号', key: 'snList', width: '12%', type: FormTypes.popupJsh, kind: 'sn', multi: true }, { title: '批号', key: 'batchNumber', width: '7%', type: FormTypes.popupJsh, kind: 'batch', multi: false }, - { title: '有效期', key: 'expirationDate',width: '7%', type: FormTypes.normal }, + { title: '有效期', key: 'expirationDate',width: '7%', type: FormTypes.input, readonly: true }, { title: '多属性', key: 'sku', width: '9%', type: FormTypes.normal }, { title: '数量', key: 'operNumber', width: '5%', type: FormTypes.inputNumber, statistics: true, validateRules: [{ required: true, message: '${title}不能为空' }] diff --git a/jshERP-web/src/views/bill/modules/PurchaseBackModal.vue b/jshERP-web/src/views/bill/modules/PurchaseBackModal.vue index 418442fa..e7dc8e6d 100644 --- a/jshERP-web/src/views/bill/modules/PurchaseBackModal.vue +++ b/jshERP-web/src/views/bill/modules/PurchaseBackModal.vue @@ -244,7 +244,7 @@ { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, { title: '序列号', key: 'snList', width: '12%', type: FormTypes.popupJsh, kind: 'sn', multi: true }, { title: '批号', key: 'batchNumber', width: '7%', type: FormTypes.popupJsh, kind: 'batch', multi: false }, - { title: '有效期', key: 'expirationDate',width: '7%', type: FormTypes.normal }, + { title: '有效期', key: 'expirationDate',width: '7%', type: FormTypes.input, readonly: true }, { title: '多属性', key: 'sku', width: '9%', type: FormTypes.normal }, { title: '原数量', key: 'preNumber', width: '5%', type: FormTypes.normal }, { title: '已退货', key: 'finishNumber', width: '5%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/RetailOutModal.vue b/jshERP-web/src/views/bill/modules/RetailOutModal.vue index 66351319..0a6b99f8 100644 --- a/jshERP-web/src/views/bill/modules/RetailOutModal.vue +++ b/jshERP-web/src/views/bill/modules/RetailOutModal.vue @@ -245,7 +245,7 @@ { title: '单位', key: 'unit', width: '5%', type: FormTypes.normal }, { title: '序列号', key: 'snList', width: '12%', type: FormTypes.popupJsh, kind: 'sn', multi: true }, { title: '批号', key: 'batchNumber', width: '8%', type: FormTypes.popupJsh, kind: 'batch', multi: false }, - { title: '有效期', key: 'expirationDate',width: '9%', type: FormTypes.normal }, + { title: '有效期', key: 'expirationDate',width: '9%', type: FormTypes.input, readonly: true }, { title: '多属性', key: 'sku', width: '9%', type: FormTypes.normal }, { title: '数量', key: 'operNumber', width: '6%', type: FormTypes.inputNumber, statistics: true, validateRules: [{ required: true, message: '${title}不能为空' }] diff --git a/jshERP-web/src/views/bill/modules/SaleOutModal.vue b/jshERP-web/src/views/bill/modules/SaleOutModal.vue index b46bfc6a..bdf820d1 100644 --- a/jshERP-web/src/views/bill/modules/SaleOutModal.vue +++ b/jshERP-web/src/views/bill/modules/SaleOutModal.vue @@ -287,7 +287,7 @@ { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, { title: '序列号', key: 'snList', width: '12%', type: FormTypes.popupJsh, kind: 'sn', multi: true }, { title: '批号', key: 'batchNumber', width: '7%', type: FormTypes.popupJsh, kind: 'batch', multi: false }, - { title: '有效期', key: 'expirationDate',width: '7%', type: FormTypes.normal }, + { title: '有效期', key: 'expirationDate',width: '7%', type: FormTypes.input, readonly: true }, { title: '多属性', key: 'sku', width: '9%', type: FormTypes.normal }, { title: '原数量', key: 'preNumber', width: '4%', type: FormTypes.normal }, { title: '已出库', key: 'finishNumber', width: '4%', type: FormTypes.normal },