From 0987190d74c7535b3da802b754e1c3a7f2c22706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Fri, 16 Jul 2021 00:49:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=8A=A5=E8=A1=A8=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=9D=A1=E7=A0=81=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/report/BuyInReport.vue | 3 ++- jshERP-web/src/views/report/InDetail.vue | 7 ++++--- jshERP-web/src/views/report/InMaterialCount.vue | 5 +++-- jshERP-web/src/views/report/InOutStockReport.vue | 15 ++++++++------- jshERP-web/src/views/report/OutDetail.vue | 7 ++++--- jshERP-web/src/views/report/OutMaterialCount.vue | 5 +++-- jshERP-web/src/views/report/SaleOutReport.vue | 3 ++- .../src/views/report/StockWarningReport.vue | 5 +++-- 8 files changed, 29 insertions(+), 21 deletions(-) diff --git a/jshERP-web/src/views/report/BuyInReport.vue b/jshERP-web/src/views/report/BuyInReport.vue index 4b924146..f2f1ccbd 100644 --- a/jshERP-web/src/views/report/BuyInReport.vue +++ b/jshERP-web/src/views/report/BuyInReport.vue @@ -14,7 +14,7 @@ - + @@ -87,6 +87,7 @@ return parseInt(index)+1; } }, + {title: '条码', dataIndex: 'barCode', width: 160}, {title: '名称', dataIndex: 'materialName', width: 160}, {title: '规格', dataIndex: 'materialStandard', width: 80}, {title: '型号', dataIndex: 'materialModel', width: 80}, diff --git a/jshERP-web/src/views/report/InDetail.vue b/jshERP-web/src/views/report/InDetail.vue index 6c9ac2d1..637043d2 100644 --- a/jshERP-web/src/views/report/InDetail.vue +++ b/jshERP-web/src/views/report/InDetail.vue @@ -31,7 +31,7 @@ - + @@ -134,15 +134,16 @@ title: '单据编号', dataIndex: 'number', width: 140, scopedSlots: { customRender: 'numberCustomRender' }, }, + {title: '条码', dataIndex: 'barCode', width: 120}, {title: '名称', dataIndex: 'mname', width: 120}, {title: '规格', dataIndex: 'standard', width: 100}, {title: '型号', dataIndex: 'model', width: 100}, {title: '单价', dataIndex: 'unitPrice', width: 60}, {title: '入库数量', dataIndex: 'operNumber', width: 80}, {title: '金额', dataIndex: 'allPrice', width: 60}, - {title: '供应商', dataIndex: 'sname', width: 200}, + {title: '供应商', dataIndex: 'sname', width: 120}, {title: '仓库', dataIndex: 'dname', width: 120}, - {title: '入库日期', dataIndex: 'operTime', width: 120} + {title: '入库日期', dataIndex: 'operTime', width: 100} ], url: { list: "/depotHead/findInDetail", diff --git a/jshERP-web/src/views/report/InMaterialCount.vue b/jshERP-web/src/views/report/InMaterialCount.vue index ac5a65af..ac4e5e34 100644 --- a/jshERP-web/src/views/report/InMaterialCount.vue +++ b/jshERP-web/src/views/report/InMaterialCount.vue @@ -31,7 +31,7 @@ - + @@ -123,7 +123,8 @@ return parseInt(index)+1; } }, - {title: '名称', dataIndex: 'mName', width: 150}, + {title: '条码', dataIndex: 'barCode', width: 120}, + {title: '名称', dataIndex: 'mName', width: 120}, {title: '规格', dataIndex: 'standard', width: 100}, {title: '型号', dataIndex: 'model', width: 100}, {title: '类型', dataIndex: 'categoryName', width: 120}, diff --git a/jshERP-web/src/views/report/InOutStockReport.vue b/jshERP-web/src/views/report/InOutStockReport.vue index e001faa3..cd6cb3cf 100644 --- a/jshERP-web/src/views/report/InOutStockReport.vue +++ b/jshERP-web/src/views/report/InOutStockReport.vue @@ -27,7 +27,7 @@ - + @@ -110,17 +110,18 @@ return parseInt(index)+1; } }, - {title: '名称', dataIndex: 'materialName', width: 160}, + {title: '条码', dataIndex: 'barCode', width: 120}, + {title: '名称', dataIndex: 'materialName', width: 120}, {title: '规格', dataIndex: 'materialStandard', width: 80}, {title: '型号', dataIndex: 'materialModel', width: 80}, {title: '扩展信息', dataIndex: 'materialOther', width: 120}, {title: '单位', dataIndex: 'unitName', width: 80}, {title: '单价', dataIndex: 'unitPrice', width: 60}, - {title: '上月结存数量', dataIndex: 'prevSum', width: 120}, - {title: '入库数量', dataIndex: 'inSum', width: 80}, - {title: '出库数量', dataIndex: 'outSum', width: 80}, - {title: '本月结存数量', dataIndex: 'thisSum', width: 120}, - {title: '结存金额', dataIndex: 'thisAllPrice', width: 80} + {title: '上月结存数量', dataIndex: 'prevSum', width: 80}, + {title: '入库数量', dataIndex: 'inSum', width: 60}, + {title: '出库数量', dataIndex: 'outSum', width: 60}, + {title: '本月结存数量', dataIndex: 'thisSum', width: 80}, + {title: '结存金额', dataIndex: 'thisAllPrice', width: 60} ], url: { list: "/depotItem/findByAll", diff --git a/jshERP-web/src/views/report/OutDetail.vue b/jshERP-web/src/views/report/OutDetail.vue index ff2e63b7..84f3e807 100644 --- a/jshERP-web/src/views/report/OutDetail.vue +++ b/jshERP-web/src/views/report/OutDetail.vue @@ -31,7 +31,7 @@ - + @@ -134,15 +134,16 @@ title: '单据编号', dataIndex: 'number', width: 140, scopedSlots: { customRender: 'numberCustomRender' }, }, + {title: '条码', dataIndex: 'barCode', width: 120}, {title: '名称', dataIndex: 'mname', width: 120}, {title: '规格', dataIndex: 'standard', width: 100}, {title: '型号', dataIndex: 'model', width: 100}, {title: '单价', dataIndex: 'unitPrice', width: 60}, {title: '出库数量', dataIndex: 'operNumber', width: 80}, {title: '金额', dataIndex: 'allPrice', width: 60}, - {title: '客户', dataIndex: 'sname', width: 200}, + {title: '客户', dataIndex: 'sname', width: 120}, {title: '仓库', dataIndex: 'dname', width: 120}, - {title: '出库日期', dataIndex: 'operTime', width: 120} + {title: '出库日期', dataIndex: 'operTime', width: 100} ], url: { list: "/depotHead/findInDetail", diff --git a/jshERP-web/src/views/report/OutMaterialCount.vue b/jshERP-web/src/views/report/OutMaterialCount.vue index 51ae7094..df996a30 100644 --- a/jshERP-web/src/views/report/OutMaterialCount.vue +++ b/jshERP-web/src/views/report/OutMaterialCount.vue @@ -31,7 +31,7 @@ - + @@ -123,7 +123,8 @@ return parseInt(index)+1; } }, - {title: '名称', dataIndex: 'mName', width: 150}, + {title: '条码', dataIndex: 'barCode', width: 120}, + {title: '名称', dataIndex: 'mName', width: 120}, {title: '规格', dataIndex: 'standard', width: 100}, {title: '型号', dataIndex: 'model', width: 100}, {title: '类型', dataIndex: 'categoryName', width: 120}, diff --git a/jshERP-web/src/views/report/SaleOutReport.vue b/jshERP-web/src/views/report/SaleOutReport.vue index d5e43e00..da4a35e5 100644 --- a/jshERP-web/src/views/report/SaleOutReport.vue +++ b/jshERP-web/src/views/report/SaleOutReport.vue @@ -14,7 +14,7 @@ - + @@ -87,6 +87,7 @@ return parseInt(index)+1; } }, + {title: '条码', dataIndex: 'barCode', width: 160}, {title: '名称', dataIndex: 'materialName', width: 160}, {title: '规格', dataIndex: 'materialStandard', width: 80}, {title: '型号', dataIndex: 'materialModel', width: 80}, diff --git a/jshERP-web/src/views/report/StockWarningReport.vue b/jshERP-web/src/views/report/StockWarningReport.vue index bb485296..a50bf449 100644 --- a/jshERP-web/src/views/report/StockWarningReport.vue +++ b/jshERP-web/src/views/report/StockWarningReport.vue @@ -21,7 +21,7 @@ - + @@ -94,7 +94,8 @@ return parseInt(index)+1; } }, - {title: '名称', dataIndex: 'mname', width: 160}, + {title: '条码', dataIndex: 'barCode', width: 120}, + {title: '名称', dataIndex: 'mname', width: 120}, {title: '规格', dataIndex: 'mstandard', width: 80}, {title: '型号', dataIndex: 'mmodel', width: 80}, {title: '扩展信息', dataIndex: 'materialOther', width: 150},