|
|
|
@ -333,7 +333,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="查询方式" prop="traceType">
|
|
|
|
|
<el-input v-model="this.formateTraceType" size="small"
|
|
|
|
|
<el-input v-model="manuOrderFormView.traceType" size="small"
|
|
|
|
|
style="width: 90%" :disabled="true"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -427,7 +427,7 @@
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
|
<el-form-item label="包装状态" prop="packState">
|
|
|
|
|
<el-input v-model="this.formatePackState" size="small" style="width: 90%" :disabled="true"
|
|
|
|
|
<el-input v-model="manuOrderCodeRelFormView.packState" size="small" style="width: 90%" :disabled="true"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -563,8 +563,8 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="所属企业" prop="companyIdFk" show-overflow-tooltip>
|
|
|
|
|
<el-input v-model="this.formateCompanyName" size="small"
|
|
|
|
|
<el-form-item label="所属企业" prop="companyName" show-overflow-tooltip>
|
|
|
|
|
<el-input v-model="formView.companyName" size="small"
|
|
|
|
|
style="width: 90%" :disabled="true"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -612,7 +612,8 @@
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
|
<el-form-item label="出入库类型" prop="inOutType" show-overflow-tooltip>
|
|
|
|
|
<el-input v-model="this.formateInOutType" size="small" style="width: 90%" :disabled="true"
|
|
|
|
|
<el-input v-model="this.formView.inOutType"
|
|
|
|
|
size="small" style="width: 90%" :disabled="true"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -627,7 +628,7 @@
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
|
<el-form-item label="查询方式" prop="sourceType" show-overflow-tooltip>
|
|
|
|
|
<el-input v-model="this.formateSourceType" size="small" style="width: 90%" :disabled="true"
|
|
|
|
|
<el-input v-model="formView.sourceType" size="small" style="width: 90%" :disabled="true"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -895,8 +896,8 @@ export default {
|
|
|
|
|
this.getRecordResult()
|
|
|
|
|
this.monitorOrder = setTimeout(this.orderTimeOut, 10000);
|
|
|
|
|
},
|
|
|
|
|
formaterInOutType(row) {
|
|
|
|
|
if (row.inOutType == 1) {
|
|
|
|
|
formaterInOutType() {
|
|
|
|
|
if (this.formView.inOutType == 1) {
|
|
|
|
|
this.formateInOutType = "入库"
|
|
|
|
|
return "入库"
|
|
|
|
|
} else {
|
|
|
|
|