Browse Source

提货单发料

master
qiezi 9 months ago
parent
commit
f04e6db902
  1. 127
      src/views/modules/inventory/materialIssue.vue

127
src/views/modules/inventory/materialIssue.vue

@ -23,96 +23,162 @@ export default {
}, },
dataList:[], dataList:[],
total:0, total:0,
columnList:[
columnList: [
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1ReleaseNo',
tableId: '400002Table1',
tableName: '领料申请单表',
columnProp: 'notifyNo', columnProp: 'notifyNo',
columnLabel: '申请单号', columnLabel: '申请单号',
headerAlign: 'center', headerAlign: 'center',
align: 'left', align: 'left',
columnSortable: false,
columnWidth: 120,
columnHidden: false, columnHidden: false,
fixed: ''
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 90,
}, },
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1NotifyDate',
tableId: '400002Table1',
tableName: '领料申请单表',
columnProp: 'notifyDate', columnProp: 'notifyDate',
columnLabel: '申请日期', columnLabel: '申请日期',
headerAlign: 'center', headerAlign: 'center',
align: 'center', align: 'center',
columnSortable: false,
columnWidth: 120,
columnHidden: false, columnHidden: false,
fixed: ''
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 90,
}, },
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1Status',
tableId: '400002Table1',
tableName: '领料申请单表',
columnProp: 'status', columnProp: 'status',
columnLabel: '状态', columnLabel: '状态',
headerAlign: 'center', headerAlign: 'center',
align: 'left',
align: 'center',
columnHidden: false,
columnImage: false,
columnSortable: false, columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 80, columnWidth: 80,
columnHidden: false,
fixed: ''
}, },
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1IfsPickListNo',
tableId: '400002Table1',
columnProp: 'ifsPickListNo', columnProp: 'ifsPickListNo',
columnLabel: 'IFS提货单号', columnLabel: 'IFS提货单号',
headerAlign: 'center', headerAlign: 'center',
align: 'left', align: 'left',
columnSortable: false,
columnWidth: 130,
columnHidden: false, columnHidden: false,
fixed: ''
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 70,
}, },
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1ThOrderNo',
tableId: '400002Table1',
columnProp: 'thOrderNo', columnProp: 'thOrderNo',
columnLabel: '3H订单号', columnLabel: '3H订单号',
headerAlign: 'center', headerAlign: 'center',
align: 'left', align: 'left',
columnSortable: false,
columnWidth: 130,
columnHidden: false, columnHidden: false,
fixed: ''
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 80,
}, },
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1NeedDate',
tableId: '400002Table1',
columnProp: 'needDate', columnProp: 'needDate',
columnLabel: '要求发料日期', columnLabel: '要求发料日期',
headerAlign: 'center', headerAlign: 'center',
align: 'center', align: 'center',
columnSortable: false,
columnWidth: 120,
columnHidden: false, columnHidden: false,
fixed: ''
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 90,
}, },
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1OrderNo',
tableId: '400002Table1',
columnProp: 'orderNo', columnProp: 'orderNo',
columnLabel: '生产订单号', columnLabel: '生产订单号',
headerAlign: 'center', headerAlign: 'center',
align: 'left', align: 'left',
columnSortable: false,
columnWidth: 130,
columnHidden: false, columnHidden: false,
fixed: ''
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 70,
}, },
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1CreateBy',
tableId: '400002Table1',
columnProp: 'createBy', columnProp: 'createBy',
columnLabel: '申请人', columnLabel: '申请人',
headerAlign: 'center', headerAlign: 'center',
align: 'left', align: 'left',
columnSortable: false,
columnWidth: 100,
columnHidden: false, columnHidden: false,
fixed: ''
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 70,
}, },
{ {
userId: this.$store.state.user.name,
functionId: 400002,
serialNumber: '400002Table1CreateDate',
tableId: '400002Table1',
columnProp: 'createDate', columnProp: 'createDate',
columnLabel: '录入时间', columnLabel: '录入时间',
headerAlign: 'center', headerAlign: 'center',
align: 'center', align: 'center',
columnSortable: false,
columnWidth: 140,
columnHidden: false, columnHidden: false,
fixed: ''
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 90,
}, },
], ],
pickDetailVisible:false, pickDetailVisible:false,
@ -344,5 +410,8 @@ export default {
</template> </template>
<style scoped> <style scoped>
.el-table /deep/ .cell {
height: auto;
line-height: 1.5;
}
</style> </style>
Loading…
Cancel
Save