Browse Source

备件出入库记录 2023年3月8日 sxm

java8
[li_she] 3 years ago
parent
commit
16eb3bed86
  1. 49
      src/views/modules/partspare/repairtransdetail.vue

49
src/views/modules/partspare/repairtransdetail.vue

@ -129,7 +129,7 @@ export default {
dataList: [], dataList: [],
wareHouseList: [], wareHouseList: [],
pageIndex: 1, pageIndex: 1,
pageSize: 10,
pageSize: 20,
totalPage: 0, totalPage: 0,
height: 200, height: 200,
dataListLoading: false, dataListLoading: false,
@ -138,7 +138,7 @@ export default {
// //
columnList:[ columnList:[
{ {
columnProp: 'partno',
columnProp: 'partNo',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '备品备件编码', columnLabel: '备品备件编码',
@ -151,7 +151,7 @@ export default {
columnWidth: 140, columnWidth: 140,
}, },
{ {
columnProp: 'partdescription',
columnProp: 'partDescription',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '备品备件名称', columnLabel: '备品备件名称',
@ -162,8 +162,7 @@ export default {
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
},
{
}, {
columnProp: 'spec', columnProp: 'spec',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
@ -176,7 +175,7 @@ export default {
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
}, { }, {
columnProp: 'batchno',
columnProp: 'batchNo',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '序列号', columnLabel: '序列号',
@ -188,7 +187,7 @@ export default {
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
}, { }, {
columnProp: 'transtype',
columnProp: 'transType',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '记录类型', columnLabel: '记录类型',
@ -200,7 +199,7 @@ export default {
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
}, { }, {
columnProp: 'warehouseid',
columnProp: 'warehouseId',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '仓库编码', columnLabel: '仓库编码',
@ -212,7 +211,7 @@ export default {
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
}, { }, {
columnProp: 'locationid',
columnProp: 'locationId',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '库位编码', columnLabel: '库位编码',
@ -224,7 +223,7 @@ export default {
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
}, { }, {
columnProp: 'orderref1',
columnProp: 'orderRef1',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '机台编码', columnLabel: '机台编码',
@ -235,8 +234,20 @@ export default {
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
} ,{
columnProp: 'suppliername',
}, {
columnProp: 'supplierId',
headerAlign: "center",
align: "left",
columnLabel: '供应商编码',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 140,
}, {
columnProp: 'supplierName',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '供应商名称', columnLabel: '供应商名称',
@ -247,8 +258,8 @@ export default {
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
},{
columnProp: 'transqty',
}, {
columnProp: 'transQty',
headerAlign: "center", headerAlign: "center",
align: "right", align: "right",
columnLabel: '数量', columnLabel: '数量',
@ -259,7 +270,7 @@ export default {
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
},{
}, {
columnProp: 'remark', columnProp: 'remark',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
@ -271,8 +282,8 @@ export default {
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
},{
columnProp: 'username',
}, {
columnProp: 'userName',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '操作员', columnLabel: '操作员',
@ -283,8 +294,8 @@ export default {
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 140, columnWidth: 140,
},{
columnProp: 'transdate',
}, {
columnProp: 'transDate',
headerAlign: "center", headerAlign: "center",
align: "left", align: "left",
columnLabel: '操作日期', columnLabel: '操作日期',

Loading…
Cancel
Save