|
|
|
@ -128,12 +128,8 @@
|
|
|
|
|
<el-table-column label="生产厂家" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="150">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex" @click.stop="true"
|
|
|
|
|
@click.native="rowChange(scope.row)">编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.stop="true"
|
|
|
|
|
@click.native="deleteCodeArray(scope.$index, scope.row)">删除
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex" @click.stop="true" @click.native="rowChange(scope.row)">编辑</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.stop="true" @click.native="deleteCodeArray(scope.$index, scope.row)">删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -161,7 +157,7 @@
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {getBusChange} from "@/api/basic/busTypeChange";
|
|
|
|
|
import {inserThrOrderWeb, updateReceive, updateReceiveDetail, delReceiveDetail} from "@/api/thrsys/thrOrderReceive";
|
|
|
|
|
import {inserThrOrderWeb, updateReceive, updateReceiveDetail,delReceiveDetail} from "@/api/thrsys/thrOrderReceive";
|
|
|
|
|
import {filterSubByInv, findByFrom, findInvByUser} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import dialogInvProduct from "../DialogSelectInvProduct";
|
|
|
|
|
import {getOrderDetail} from "@/api/inout/receiveOrder";
|
|
|
|
@ -281,7 +277,7 @@ export default {
|
|
|
|
|
//领用类型
|
|
|
|
|
getBusType() {
|
|
|
|
|
let query = {
|
|
|
|
|
enable: true,
|
|
|
|
|
enable: false,
|
|
|
|
|
type: 1,
|
|
|
|
|
};
|
|
|
|
|
getBusChange(query)
|
|
|
|
@ -325,6 +321,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (status === '0') {
|
|
|
|
@ -345,7 +342,7 @@ export default {
|
|
|
|
|
type: "warning",
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.submitFunction(status);
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.loading=false
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
@ -363,22 +360,22 @@ export default {
|
|
|
|
|
tQuery.status = status;
|
|
|
|
|
tQuery.subErpOrders = this.codeArray;
|
|
|
|
|
tQuery.thirdPartyDate = 2;
|
|
|
|
|
updateReceive(tQuery)
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success(tMessage + "成功");
|
|
|
|
|
this.closeDialog(true);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
updateReceive(tQuery)
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success(tMessage + "成功");
|
|
|
|
|
this.closeDialog(true);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
selectProductFunction(event) {
|
|
|
|
|
|
|
|
|
|
if (this.formData.targetInvCode == null) {
|
|
|
|
|
if(this.formData.targetInvCode==null){
|
|
|
|
|
this.$message.error("往来信息为空!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
@ -389,7 +386,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
closeDialogC2(rData) {
|
|
|
|
|
this.selectInvProductVisible = false;
|
|
|
|
|
this.formData.billNo = rData;
|
|
|
|
|
this.formData.billNo=rData;
|
|
|
|
|
this.getOrderDetailList();
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
@ -402,12 +399,12 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
tableCountChange(row) {
|
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|
|
updateReceiveDetail(row).then(res => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
updateReceiveDetail(row).then(res=>{
|
|
|
|
|
if (res.code==20000){
|
|
|
|
|
this.loading = false;
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
@ -441,7 +438,7 @@ export default {
|
|
|
|
|
.then(response => {
|
|
|
|
|
this.detailLoading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.getOrderDetailList();
|
|
|
|
|
this.getOrderDetailList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -491,7 +488,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
if (this.$isNotBlank(this.idQuery.id)) {
|
|
|
|
|
this.editType = true;
|
|
|
|
|
this.editType=true;
|
|
|
|
|
this.query.limit = 100;
|
|
|
|
|
this.query.orderIdFk = this.idQuery.id;
|
|
|
|
|
this.formData = this.idQuery.formData;
|
|
|
|
@ -500,7 +497,7 @@ export default {
|
|
|
|
|
this.getOrderDetailList();
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
this.editType = false;
|
|
|
|
|
this.editType=false;
|
|
|
|
|
this.formData = {
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
targetInvCode: null,
|
|
|
|
|