Commit 87991eb0 authored by 沈翠玲's avatar 沈翠玲

补数报表和iqc打印页面调整

parent 171c4f0c
import request from '@/utils/request'
//
export function getWorkorderList(query) {
return request({
url: "/report/pro/workordersize/getWorkorderList",
method: "get",
params: query,
});
}
\ No newline at end of file
...@@ -294,6 +294,7 @@ ...@@ -294,6 +294,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="需求用途" width="150" align="center" prop="requirementType" /> <el-table-column label="需求用途" width="150" align="center" prop="requirementType" />
<el-table-column label="下单时间" width="150" align="center" prop="createTime" />
<el-table-column label="组合单号" width="180" align="center" prop="combinationCode" :show-overflow-tooltip="true"> <el-table-column label="组合单号" width="180" align="center" prop="combinationCode" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="mini" type="text" @click="showCombDetail(scope.row, scope.row.combinationCode)">{{ <el-button size="mini" type="text" @click="showCombDetail(scope.row, scope.row.combinationCode)">{{
......
This diff is collapsed.
...@@ -420,6 +420,8 @@ export default { ...@@ -420,6 +420,8 @@ export default {
"vendorCode": res.data.vendorCode, "vendorCode": res.data.vendorCode,
"vendorName": res.data.vendorName, "vendorName": res.data.vendorName,
"itemName": res.data.itemName, "itemName": res.data.itemName,
"checkResult": res.data.checkResult,
"checkStatus": this.checkStatusList.find(v => v.dictKey === res.data.checkStatus) ? this.checkStatusList.find(v => v.dictKey === res.data.checkStatus).dictValue : '',
"quantityUnqualified":res.data.quantityUnqualified, "quantityUnqualified":res.data.quantityUnqualified,
"checkTime": res.data.inspectDate "checkTime": res.data.inspectDate
} }
......
...@@ -23,11 +23,15 @@ ...@@ -23,11 +23,15 @@
</tr> </tr>
<tr height="20" class="color000"> <tr height="20" class="color000">
<td colspan="3" align="center">产品编号</td> <td colspan="3" align="center">产品编号</td>
<td colspan="5" align="center">{{ body.sapItemCode }}</td> <td colspan="3" align="center">{{ body.sapItemCode }}</td>
<td colspan="2" align="center">检验判定</td>
<td colspan="2" align="center"><dict-tag :options="dict.type.mes_qc_result" :value="body.checkResult" /></td>
<td colspan="2" align="center">处理措施</td>
<td colspan="2" align="center">{{ body.checkStatus }}</td>
<td colspan="2" align="center">产品名称</td> <td colspan="2" align="center">产品名称</td>
<td colspan="6" align="center">{{ body.itemName }}</td> <td colspan="2" align="center">{{ body.itemName }}</td>
<td colspan="2" align="center">供应商名称</td> <td colspan="2" align="center">供应商名称</td>
<td colspan="6" align="center" style="word-wrap:break-word;word-break:break-all">{{ body.vendorName }}</td> <td colspan="4" align="center" style="word-wrap:break-word;word-break:break-all">{{ body.vendorName }}</td>
</tr> </tr>
<tr height="20" class="color000" style="font-weight: 400"> <tr height="20" class="color000" style="font-weight: 400">
...@@ -61,6 +65,7 @@ export default { ...@@ -61,6 +65,7 @@ export default {
props: ['iqcTable'], props: ['iqcTable'],
dicts: [ dicts: [
"ver_item_determination", "ver_item_determination",
"mes_qc_result"
], ],
data() { data() {
return { return {
......
Markdown is supported
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