|
|
|
@ -4,11 +4,10 @@
|
|
|
|
|
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
|
|
|
|
|
<el-row type="flex" justify="end" v-if="editType == 1">
|
|
|
|
|
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
|
|
|
|
|
<el-button type="primary" @click.native="saveOrder('3')" :loading="loading">审核通过</el-button>
|
|
|
|
|
<el-button type="primary" @click.native="saveOrder('4')" :loading="loading">拒绝申请</el-button>
|
|
|
|
|
<el-button type="primary" @click.native="saveOrder('3')" :loading="loading">开始配货</el-button>
|
|
|
|
|
<el-button type="primary" @click.native="saveOrder('4')" :loading="loading">作废</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-card style="margin-top: -5px;">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="11">
|
|
|
|
@ -46,30 +45,43 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</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-form-item label="处理状态:" prop="dealStatus">
|
|
|
|
|
<el-select v-model="formData.dealStatus" style="width: 90%" disabled>
|
|
|
|
|
<el-option label="已处理" :value="1"></el-option>
|
|
|
|
|
<el-option label="未处理" :value="2"></el-option>
|
|
|
|
|
<el-option label="作废" :value="3"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</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-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<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-col :span="24">
|
|
|
|
|
<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-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<!-- <el-form-item>-->
|
|
|
|
|
<!-- <el-checkbox v-model="formData.autoPurchase">是否生成采购入库单</el-checkbox>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- <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"
|
|
|
|
@ -99,13 +111,12 @@
|
|
|
|
|
</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="50"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column width="150" label="单据数量">
|
|
|
|
|
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip width="160"></el-table-column>
|
|
|
|
|
<el-table-column width="120" label="订单数量">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input size="small" v-model="scope.row.count"
|
|
|
|
|
placeholder="请输入数量" style="width: 80%"
|
|
|
|
@ -115,6 +126,11 @@
|
|
|
|
|
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip width="100"></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory" show-overflow-tooltip width="160"></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" show-overflow-tooltip="true"
|
|
|
|
|
width="160"></el-table-column>
|
|
|
|
|
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-card>
|
|
|
|
|
</el-form>
|
|
|
|
@ -141,7 +157,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";
|
|
|
|
|
|
|
|
|
@ -244,10 +260,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,
|
|
|
|
@ -375,8 +391,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 = {
|
|
|
|
@ -387,7 +403,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();
|
|
|
|
|
}
|
|
|
|
@ -414,7 +430,7 @@ export default {
|
|
|
|
|
selectByCode(query1)
|
|
|
|
|
.then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.formData.targetDeptCode=res.data
|
|
|
|
|
this.formData.targetDeptCode = res.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|