Commit d75b5048 authored by 季圣华's avatar 季圣华
Browse files

给入库汇总和出库汇总报表增加单位

parent a7d6c71e
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
let fileList = []; let fileList = [];
let arr = paths.split(",") let arr = paths.split(",")
for(var a=0;a<arr.length;a++){ for(var a=0;a<arr.length;a++){
let url = getFileAccessHttpUrl(arr[a]); let url = getFileAccessHttpUrl('systemConfig/static/' + arr[a]);
fileList.push({ fileList.push({
uid:uidGenerator(), uid:uidGenerator(),
name:getFileName(arr[a]), name:getFileName(arr[a]),
......
...@@ -128,6 +128,7 @@ ...@@ -128,6 +128,7 @@
{title: '规格', dataIndex: 'standard', width: 100}, {title: '规格', dataIndex: 'standard', width: 100},
{title: '型号', dataIndex: 'model', width: 100}, {title: '型号', dataIndex: 'model', width: 100},
{title: '类型', dataIndex: 'categoryName', width: 120}, {title: '类型', dataIndex: 'categoryName', width: 120},
{title: '单位', dataIndex: 'materialUnit', width: 120},
{title: '入库数量', dataIndex: 'numSum', width: 120}, {title: '入库数量', dataIndex: 'numSum', width: 120},
{title: '入库金额', dataIndex: 'priceSum', width: 120} {title: '入库金额', dataIndex: 'priceSum', width: 120}
], ],
......
...@@ -128,6 +128,7 @@ ...@@ -128,6 +128,7 @@
{title: '规格', dataIndex: 'standard', width: 100}, {title: '规格', dataIndex: 'standard', width: 100},
{title: '型号', dataIndex: 'model', width: 100}, {title: '型号', dataIndex: 'model', width: 100},
{title: '类型', dataIndex: 'categoryName', width: 120}, {title: '类型', dataIndex: 'categoryName', width: 120},
{title: '单位', dataIndex: 'materialUnit', width: 120},
{title: '出库数量', dataIndex: 'numSum', width: 120}, {title: '出库数量', dataIndex: 'numSum', width: 120},
{title: '出库金额', dataIndex: 'priceSum', width: 120} {title: '出库金额', dataIndex: 'priceSum', width: 120}
], ],
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment