|
|
|
@ -34,7 +34,8 @@
|
|
|
|
|
<el-row style="margin-top: -10px">
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="紧急程度:" prop="emergency">
|
|
|
|
|
<el-select v-model="formData.emergency" :disabled="true" placeholder="请选择紧急程度" style="width: 90%" clearable>
|
|
|
|
|
<el-select v-model="formData.emergency" :disabled="true" placeholder="请选择紧急程度" style="width: 90%"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option label="正常" :value=1></el-option>
|
|
|
|
|
<el-option label="较急" :value=2></el-option>
|
|
|
|
|
<el-option label="特急" :value=3></el-option>
|
|
|
|
@ -73,7 +74,8 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="审核说明:" prop="billNo">
|
|
|
|
|
<el-input v-model="formData.auditRemark" style="width: 90%" auto-complete="off" type="textarea" autosize></el-input>
|
|
|
|
|
<el-input v-model="formData.auditRemark" style="width: 90%" auto-complete="off" type="textarea"
|
|
|
|
|
autosize></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -81,20 +83,22 @@
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="采购说明:" prop="billNo">
|
|
|
|
|
<el-input v-model="formData.remark" style="width: 90%":disabled="true" auto-complete="off" type="textarea" autosize></el-input>
|
|
|
|
|
<el-input v-model="formData.remark" style="width: 90%" :disabled="true" auto-complete="off"
|
|
|
|
|
type="textarea" autosize></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- <el-col :span="11">-->
|
|
|
|
|
<!-- <el-form-item>-->
|
|
|
|
|
<!-- <el-checkbox v-model="formData.autoPurchase">是否生成采购入库单</el-checkbox>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="11">-->
|
|
|
|
|
<!-- <el-form-item>-->
|
|
|
|
|
<!-- <el-checkbox v-model="formData.autoPurchase">是否生成采购入库单</el-checkbox>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row v-show="formData.autoPurchase">
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="入库仓库:" prop="locStorageCode">
|
|
|
|
|
<el-select v-model="formData.targetSubInv" placeholder="入库仓库信息" style="width: 90%" @change="targetInvChange" clearable>
|
|
|
|
|
<el-select v-model="formData.targetSubInv" placeholder="入库仓库信息" style="width: 90%"
|
|
|
|
|
@change="targetInvChange" clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in tarSubList"
|
|
|
|
|
:key="item.name"
|
|
|
|
@ -124,12 +128,14 @@
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" :row-class-name="tableRowClassName" border highlight-current-row max-height="300" height="300" ref="multipleTable">
|
|
|
|
|
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" :row-class-name="tableRowClassName" border
|
|
|
|
|
highlight-current-row max-height="300" height="300" ref="multipleTable">
|
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
|
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="100"></el-table-column>
|
|
|
|
|
<el-table-column label="价格" prop="price" show-overflow-tooltip="true" width="100"></el-table-column>
|
|
|
|
|
<el-table-column width="150" label="采购数量">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input size="small" v-model="scope.row.count"
|
|
|
|
@ -169,7 +175,7 @@
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
import purPlanProducts from "@/views/purchase/purPlan/purOrderSelectProduct";
|
|
|
|
|
import {auditOrder, delOrderDetail, listOrderDetail} from "@/api/purchase/purOrder";
|
|
|
|
|
import {filterAllByUser,selectByCode} from "@/api/system/invWarehouse";
|
|
|
|
|
import {filterAllByUser, selectByCode} from "@/api/system/invWarehouse";
|
|
|
|
|
import {filterSubByInv} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import {getLocalJoinByUser} from "@/api/basic/busType";
|
|
|
|
|
import {parseTime} from "@/utils/coTools";
|
|
|
|
@ -273,10 +279,10 @@ export default {
|
|
|
|
|
let tMessage = status === '1' ? '保存' : '提交';
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let tQuery = {
|
|
|
|
|
autoPurchase:this.formData.autoPurchase,
|
|
|
|
|
targetSubInv:this.formData.targetSubInv,
|
|
|
|
|
targetDeptCode:this.formData.targetDeptCode,
|
|
|
|
|
targetBillAction:this.formData.targetBillAction,
|
|
|
|
|
autoPurchase: this.formData.autoPurchase,
|
|
|
|
|
targetSubInv: this.formData.targetSubInv,
|
|
|
|
|
targetDeptCode: this.formData.targetDeptCode,
|
|
|
|
|
targetBillAction: this.formData.targetBillAction,
|
|
|
|
|
editStatus: status,
|
|
|
|
|
purOrderEntity: this.formData,
|
|
|
|
|
subErpOrders: this.codeArray,
|
|
|
|
@ -404,8 +410,8 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
findTargetSubInvs() {
|
|
|
|
|
if(this.formData.targetSubInv!=null && this.tarSubList.length>0){
|
|
|
|
|
this.formData.targetDeptCode= this.subInvList.find(item => item.code == this.formData.targetSubInv).parentId
|
|
|
|
|
if (this.formData.targetSubInv != null && this.tarSubList.length > 0) {
|
|
|
|
|
this.formData.targetDeptCode = this.subInvList.find(item => item.code == this.formData.targetSubInv).parentId
|
|
|
|
|
}
|
|
|
|
|
this.tarSubList = [];
|
|
|
|
|
let query = {
|
|
|
|
@ -416,7 +422,7 @@ export default {
|
|
|
|
|
this.tarSubList = response.data || [];
|
|
|
|
|
if (this.tarSubList != null && this.tarSubList.length == 1) {
|
|
|
|
|
this.formData.targetSubInv = this.tarSubList[0].code;
|
|
|
|
|
this.formData.targetDeptCode=this.tarSubList[0].parentId;
|
|
|
|
|
this.formData.targetDeptCode = this.tarSubList[0].parentId;
|
|
|
|
|
|
|
|
|
|
this.targetInvChange();
|
|
|
|
|
}
|
|
|
|
@ -443,7 +449,7 @@ export default {
|
|
|
|
|
selectByCode(query1)
|
|
|
|
|
.then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.formData.targetDeptCode=res.data
|
|
|
|
|
this.formData.targetDeptCode = res.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|