You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
280 lines
9.2 KiB
280 lines
9.2 KiB
<template>
|
|
<el-dialog
|
|
append-to-body
|
|
title="入库详情"
|
|
:visible.sync="dialogVisible"
|
|
destroy-on-close
|
|
fullscreen
|
|
@close="close"
|
|
@open="open"
|
|
>
|
|
<el-form ref="form" style="border: 1px solid #cfe0df;margin-top: 10px;padding-top: 10px;" :inline="true" :model="form" size="mini" label-width="85px" label-suffix=":">
|
|
<el-form-item label="单据号" prop="bill_code">
|
|
<label slot="label">单 据 号:</label>
|
|
<el-input v-model="form.bill_code" disabled placeholder="系统生成" clearable style="width: 210px" />
|
|
</el-form-item>
|
|
<el-form-item label="仓库" prop="stor_id">
|
|
<label slot="label">仓 库:</label>
|
|
<el-select
|
|
v-model="form.stor_id"
|
|
clearable
|
|
placeholder="仓库"
|
|
class="filter-item"
|
|
style="width: 210px"
|
|
:disabled="true"
|
|
>
|
|
<el-option
|
|
v-for="item in storlist"
|
|
:key="item.stor_id"
|
|
:label="item.stor_name"
|
|
:value="item.stor_id"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="业务类型" prop="bill_type">
|
|
<el-select
|
|
v-model="form.bill_type"
|
|
clearable
|
|
placeholder="业务类型"
|
|
style="width: 210px"
|
|
class="filter-item"
|
|
:disabled="true"
|
|
>
|
|
<el-option
|
|
v-for="item in dict.INANDOUT_BILL_TYPE"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="单据状态" prop="bill_status">
|
|
<el-select
|
|
v-model="form.bill_status"
|
|
clearable
|
|
style="width: 210px"
|
|
placeholder="单据状态"
|
|
class="filter-item"
|
|
disabled
|
|
>
|
|
<el-option
|
|
v-for="item in dict.io_bill_status"
|
|
:key="item.id"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="明细数" prop="detail_count">
|
|
<label slot="label">明 细 数:</label>
|
|
<el-input v-model="form.detail_count" size="mini" disabled style="width: 210px" />
|
|
</el-form-item>
|
|
<el-form-item label="总重量" prop="total_qty">
|
|
<label slot="label">总 重 量:</label>
|
|
<el-input-number
|
|
v-model="form.total_qty"
|
|
:controls="false"
|
|
:precision="3"
|
|
:min="0"
|
|
disabled
|
|
style="width: 210px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="业务日期" prop="biz_date">
|
|
<el-date-picker v-model="form.biz_date" type="date" placeholder="选择日期" style="width: 210px" value-format="yyyy-MM-dd" :disabled="true" />
|
|
</el-form-item>
|
|
<el-form-item label="备注" prop="remark">
|
|
<label slot="label">备 注:</label>
|
|
<el-input v-model="form.remark" style="width: 380px;" rows="2" type="textarea" :disabled="true" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div class="crud-opts2">
|
|
<span class="role-span2">入库明细</span>
|
|
</div>
|
|
<el-card class="box-card" shadow="never" :body-style="{padding:'0'}">
|
|
<!--表格渲染-->
|
|
<el-table
|
|
ref="table"
|
|
:data="tableDtl"
|
|
style="width: 100%;"
|
|
max-height="300"
|
|
size="mini"
|
|
border
|
|
:highlight-current-row="true"
|
|
:header-cell-style="{background:'#f5f7fa',color:'#606266'}"
|
|
@current-change="handleDtlCurrentChange"
|
|
>
|
|
<el-table-column type="index" label="序号" width="55" align="center" />
|
|
<!-- <el-table-column min-width="120" show-overflow-tooltip prop="bill_code" label="单据号" align="center" />-->
|
|
<el-table-column :formatter="bill_statusFormat" prop="bill_status" label="状态" />
|
|
<el-table-column min-width="120" show-overflow-tooltip prop="material_code" label="物料编码" align="center" />
|
|
<el-table-column min-width="120" show-overflow-tooltip prop="material_name" label="物料名称" align="center" />
|
|
<el-table-column prop="pcsn" label="批次号" width="150" align="center" />
|
|
<!-- <el-table-column prop="sap_pcsn" label="SAP批次号" width="150" align="center" />-->
|
|
<el-table-column prop="plan_qty" :formatter="crud.formatNum3" label="重量" align="center" />
|
|
<el-table-column prop="qty_unit_name" label="单位" align="center" />
|
|
<el-table-column prop="source_bill_type" label="源单类型" align="center" width="130px" :formatter="invtypeFormat" />
|
|
<el-table-column prop="source_bill_code" label="源单号" align="center" width="130px" />
|
|
<el-table-column show-overflow-tooltip prop="remark" label="明细备注" align="center" />
|
|
</el-table>
|
|
</el-card>
|
|
<div class="crud-opts2">
|
|
<span class="role-span">作业明细</span>
|
|
</div>
|
|
<el-card class="box-card" shadow="never" :body-style="{padding:'0'}">
|
|
<!--表格渲染-->
|
|
<el-table
|
|
ref="table2"
|
|
:data="tabledis"
|
|
style="width: 100%;"
|
|
max-height="300"
|
|
size="mini"
|
|
border
|
|
:highlight-current-row="true"
|
|
:header-cell-style="{background:'#f5f7fa',color:'#606266'}"
|
|
@current-change="handleDisCurrentChange"
|
|
>
|
|
<el-table-column min-width="120" show-overflow-tooltip prop="material_code" label="物料编码" align="center" />
|
|
<el-table-column min-width="120" show-overflow-tooltip prop="material_name" label="物料名称" align="center" />
|
|
<el-table-column prop="pcsn" label="批次号" align="center" width="150" />
|
|
<!-- <el-table-column prop="sap_pcsn" label="SAP批次号" align="center" />-->
|
|
<el-table-column prop="storagevehicle_code" label="载具号" align="center" />
|
|
<el-table-column prop="plan_qty" :formatter="crud.formatNum3" label="重量" align="center" />
|
|
<el-table-column prop="point_code" label="起始位置" align="center" />
|
|
<el-table-column prop="struct_code" label="目的位置" align="center" />
|
|
<el-table-column prop="task_code" label="任务号" align="center" />
|
|
</el-table>
|
|
</el-card>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import { crud } from '@crud/crud'
|
|
import checkoutbill from '@/views/wms/st/outbill/checkoutbill'
|
|
import rawassist from '@/views/wms/st/inbill/rawassist'
|
|
import crudBsrealstorattr from '@/views/wms/basedata/bsrealstorattr/bsrealstorattr'
|
|
import { getInBillTaskDtl } from './rawassist'
|
|
|
|
export default {
|
|
name: 'ViewDialog',
|
|
components: { },
|
|
mixins: [crud()],
|
|
dicts: ['io_bill_status', 'work_status', 'task_status', 'SCH_TASK_TYPE_DTL', 'INANDOUT_BILL_TYPE'],
|
|
props: {
|
|
dialogShow: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
rowmst: {
|
|
type: Object
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
dialogVisible: false,
|
|
tableDtl: [],
|
|
tabledis: [],
|
|
storlist: [],
|
|
currentdtl: null,
|
|
currentDis: {},
|
|
form: {}
|
|
}
|
|
},
|
|
watch: {
|
|
dialogShow: {
|
|
handler(newValue) {
|
|
this.dialogVisible = newValue
|
|
}
|
|
},
|
|
rowmst: {
|
|
handler(newValue) {
|
|
this.form = newValue
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
crudBsrealstorattr.getStor().then(res => {
|
|
this.storlist = res
|
|
})
|
|
},
|
|
methods: {
|
|
open() {
|
|
this.queryTableDtl()
|
|
},
|
|
close() {
|
|
this.$emit('update:dialogShow', false)
|
|
this.currentDis = {}
|
|
this.currentdtl = null
|
|
this.tableDtl = []
|
|
this.tabledis = []
|
|
this.$emit('TaskChanged')
|
|
},
|
|
bill_statusFormat(row) {
|
|
return this.dict.label.io_bill_status[row.bill_status]
|
|
},
|
|
taskdtl_typeFormat(row) {
|
|
return this.dict.label.SCH_TASK_TYPE_DTL[row.taskdtl_type]
|
|
},
|
|
task_statusFormat(row) {
|
|
return this.dict.label.task_status[row.task_status]
|
|
},
|
|
work_statusFormat(row) {
|
|
return this.dict.label.work_status[row.work_status]
|
|
},
|
|
handleDtlCurrentChange(current) {
|
|
if (current !== null) {
|
|
this.tabledis = []
|
|
this.currentdtl = current
|
|
this.queryTableDdis()
|
|
} else {
|
|
this.tabledis = []
|
|
this.currentdtl = {}
|
|
}
|
|
},
|
|
handleDisCurrentChange(current) {
|
|
this.currentDis = current
|
|
},
|
|
queryTableDtl() {
|
|
// checkoutbill.getOutBillDtl({ 'iostorinv_id': this.form.iostorinv_id }).then(res => {
|
|
// this.tableDtl = res
|
|
// })
|
|
rawassist.getIODtl({ 'iostorinv_id': this.form.iostorinv_id }).then(res => {
|
|
this.tableDtl = res
|
|
})
|
|
},
|
|
queryTableDdis() {
|
|
if (this.currentdtl !== null) {
|
|
rawassist.getInBillTaskDtl({ 'iostorinvdtl_id': this.currentdtl.iostorinvdtl_id }).then(res => {
|
|
this.tabledis = res
|
|
}).catch(() => {
|
|
this.tabledis = []
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.crud-opts2 {
|
|
padding: 0;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.crud-opts2 .el-dialog__title2 {
|
|
line-height: 24px;
|
|
font-size:20px;
|
|
color:#303133;
|
|
}
|
|
|
|
.crud-opts2 .role-span2 {
|
|
padding: 0px 0px 20px 0px;
|
|
}
|
|
.crud-opts2 {
|
|
padding: 10px 0px 0px 50px;
|
|
}
|
|
|
|
</style>
|
|
|