单据类型,业务单据修改

master
anthonywj 3 years ago
parent 4308e3c464
commit 301a4a7dd5

@ -136,7 +136,7 @@
<el-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
<span>补单单据类型:&nbsp;</span>
<span>内部进出平衡补单:&nbsp;</span>
</div>
<el-select :disabled="inputQuery.corpType !=1"
v-model="inputQuery.supplementOrderType"
@ -198,7 +198,7 @@
<!-- </el-col>-->
<el-col :span="4" class="el-col">
<div class="text item">
<el-checkbox v-model="inputQuery.checkEnable">()</el-checkbox>
<el-checkbox v-model="inputQuery.checkEnable" @change="oneCheck">()</el-checkbox>
</div>
</el-col>
</el-row>
@ -249,7 +249,9 @@
<!-- </el-col>-->
<el-col :span="4" class="el-col">
<div class="text item">
<el-checkbox v-model="inputQuery.secCheckEnable">()</el-checkbox>
<el-checkbox v-model="inputQuery.secCheckEnable"
:disabled="twoCheck">需要单据复核的来源类型(二次复核)
</el-checkbox>
</div>
</el-col>
@ -340,6 +342,7 @@ export default {
value: '2',
label: '客户信息'
}],
twoCheck: false,
}
},
@ -371,11 +374,20 @@ export default {
.catch(() => {
});
},
oneCheck(type) {
console.log(type);
if (!type) {
this.twoCheck = true;
this.inputQuery.secCheckEnable = false;
}else
this.twoCheck = false;
},
//
getOrderType() {
this.orderTypeList = [];
let query = {
mainAction: this.inputQuery.mainAction
mainAction: this.inputQuery.mainAction,
curAction:this.inputQuery.supplementOrderType,
};
getCandidateBussinessType(query).then((response) => {
this.orderTypeList = response.data || [];

@ -118,6 +118,10 @@ export default {
type: Function,
required: true,
},
invQueryData:{
type: Object,
required: true,
}
},
data() {
return {
@ -343,7 +347,7 @@ export default {
created() {
this.getBusType();
let query = this.$route.query;
this.filterQuery.invStorageCode = this.data.formData.locStorageCode;
this.filterQuery.invStorageCode = this.invQueryData.locStorageCode;
this.filterQuery = Object.assign(this.filterQuery, query);
this.filterQuery.limit = parseInt(this.filterQuery.limit);
//

@ -69,9 +69,6 @@
</el-col>
<el-col :span="7">
<el-form-item prop="billType">
<!--<el-select v-model="formData.billType" style="width: 100%" placeholder="业务类型" :disabled="true">-->
<!--<el-option label="送货单" value="deliveryNote"></el-option>-->
<!--</el-select>-->
<el-select v-model="formData.billType" placeholder="请选择业务类型" @change="actionChange">
<el-option
v-for="item in busTypes"
@ -90,7 +87,7 @@
</el-col>
<el-col :span="7">
<el-form-item class="query-form-item" prop="corpName"
v-if="curAction.corpType ==0 ">
v-if="curAction.corpType ==0">
<el-select
v-model="formData.corpName"
filterable
@ -156,10 +153,7 @@
<el-col :span="7">
<el-form-item prop="locStorageCode">
<!--<el-select v-model="formData.billType" style="width: 100%" placeholder="业务类型" :disabled="true">-->
<!--<el-option label="送货单" value="deliveryNote"></el-option>-->
<!--</el-select>-->
<el-select v-model="formData.locStorageCode" placeholder="当前仓库信息">
<el-select v-model="formData.locStorageCode" placeholder="当前仓库信息" @change="locInChange">
<el-option
v-for="item in storageList"
:key="item.name"
@ -189,7 +183,7 @@
<!-- <el-radio-button :label="false" size="mini">禁用</el-radio-button>-->
<!-- </el-radio-group>-->
<el-form-item prop="type" style="margin-right: 20px;"
v-if="curAction.mainAction=='WareHouseOut'">
v-if="!(curAction.mainAction=='WareHouseIn' && curAction.corpType == 0)">
<el-checkbox v-model="formData.noInvOut"></el-checkbox>
</el-form-item>
</el-col>
@ -491,6 +485,7 @@
<dialogInvProduct
:closeDialog="closeDialogC2"
:data="thisData"
:invQueryData="invQueryData"
></dialogInvProduct>
</el-dialog>
</div>
@ -544,7 +539,7 @@ export default {
page: 1,
limit: 10,
},
formData: {noInvOut: false,},
formData: {noInvOut: false, locStorageCode: null},
formRules: {
corpName: [
{required: true, message: "请输入供应商", trigger: "blur"}
@ -603,6 +598,7 @@ export default {
selectInvProductVisible: false,
thisData: {},
storageList: [],
invQueryData: {},
};
},
components: {
@ -618,7 +614,6 @@ export default {
this.currentRow = {};
this.selectedIndex = "";
this.iCount = 0;
this.$refs["dataForm"].validate(valid => {
if (valid) {
if (this.codeArray.length < 1) {
@ -710,7 +705,6 @@ export default {
filterAll()
.then((response) => {
this.storageList = response.data || [];
// this.formData.locStorageCode = this.storageList[0];
})
.catch(() => {
});
@ -820,17 +814,24 @@ export default {
}
this.thisData.stockOrderLists = this.codeArray;
this.thisData.formData = this.formData;
let item = this.getActionItem(this.formData.billType);
console.log(item.mainAction + "----" + this.formData.noInvOut);
if (item.mainAction == 'WareHouseOut' && this.formData.noInvOut != true)//
{
if (item.mainAction == 'WareHouseOut' && this.formData.noInvOut != true) {
this.invQueryData = {
locStorageCode: this.formData.locStorageCode,
};
this.selectInvProductVisible = true;
} else if (item.mainAction == "WareHouseIn" && this.curAction.corpType == 1 && this.formData.noInvOut != true) {
this.invQueryData = {
locStorageCode: this.formData.corpId,
};
console.log("his.invQueryData " + this.invQueryData.locStorageCode);
this.selectInvProductVisible = true;
} else {
this.selectProductVisible = true;
}
return;
}
this.code = this.code.trim();
@ -872,35 +873,6 @@ export default {
}).catch(() => {
this.loading = false;
});
// let tQuery2 = {
// id: response.data.getId
// };
// if (this.orderEditor) {
// tQuery2.orderId = this.formData.id;
// console.log(tQuery2)
// addStockOrderDetailFromCodeById(tQuery2).then((response) => {
// this.loading = false;
// if (response.code === 20000) {
// this.closeDialogC2(response);
// } else {
// this.$message.error(response.message);
// }
// }).catch(() => {
// this.loading = false;
// });
// } else {
// getStockOrderDetailInstrumentById(tQuery2).then((response) => {
// this.loading = false;
// if (response.code === 20000) {
// this.closeDialogC2(response.data);
// } else {
// this.$message.error(response.message);
// }
// }).catch(() => {
// this.loading = false;
// });
// }
} else {
this.thisData = response.data;
this.thisData.code = this.code;
@ -931,23 +903,9 @@ export default {
this.thisData = {};
if (this.$isNotBlank(rData)) {
console.log(rData)
// for (let i = 0; i < this.codeArray.length; i++) {
// let obj = this.codeArray[i];
// if (obj.batchNo == rData[0].batchNo) {
// obj.count = parseInt(obj.count) + parseInt(this.iCount);
// return;
// }
// }
this.codeArray = [];
rData.forEach((obj, index) => {
// this.codeArray.push(obj);
this.codeArray.unshift(obj);
// if (this.codeArray.length === 0) {
// this.codeArray.push(obj);
// } else {
// this.codeArray.unshift(obj);
// }
});
console.log(this.codeArray);
this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
@ -956,37 +914,6 @@ export default {
this.focusNext('iCount');
this.closeConfirmFunction(true);
}
// if (this.orderEditor) {
// this.getStockOrderDetailList();
// if (this.$isNotBlank(rData)) {
// this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
// this.currentRow = this.codeArray[0];
// this.selectedIndex = 0;
// this.focusNext('iCount');
// }
// } else {
// if (this.$isNotBlank(rData)) {
// // for (let i = 0; i < this.codeArray.length; i++) {
// // if (this.codeArray[i].productId === rData.productId) {
// // this.$alert("", '', {
// // confirmButtonText: '',
// // type: 'warning',
// // closeOnClickModal: true,
// // callback: action => {
// // this.$refs.inputRef.focus();
// // }
// // });
// // break;
// // }
// // if (i + 1 === this.codeArray.length) {
// // this.codeArray.push(rData);
// // this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
// // this.currentRow = this.codeArray[0];
// // this.selectedIndex = 0;
// // }
// // }
// }
// }
},
rowChange(val) {
this.currentRow = val;
@ -1059,8 +986,6 @@ export default {
count: this.iCount,
code: this.code,
};
//012693548470801311200226172302271020022632100025
if (this.orderEditor) {
addStockOrderDetailFromCode(tQuery).then((response) => {
this.loading = false;
@ -1317,10 +1242,13 @@ export default {
actionChange(item) {
this.curAction = this.getActionItem(item);
this.formData.locStorageCode = this.curAction.storageCode;
console.log(this.curAction.corpType + "---" + this.curAction.genUnit + "-----" + this.curAction.action);
// this.formData.corpName = '';
// this.formData.corpId = '';
console.log(this.curAction.corpType + "---" + this.formData.locStorageCode + "-----" + this.curAction.action);
},
locInChange(item) {
console.log(item);
this.formData.locStorageCode = item;
this.$forceUpdate();
}
},
filters: {},
mounted() {
@ -1345,12 +1273,9 @@ export default {
} else {
this.formData = {
billdate: "",
// corpName: store.getters.companyName,
customerId: store.getters.customerId,
// billType: "deliveryNote",
billType: "",
type: "2",
// type: "",
};
this.iCount = 0;
this.orderEditor = false;

@ -390,6 +390,37 @@
<!-- :data="thisData"-->
<!-- ></stockOrderNewSelectProduct>-->
<!-- </el-dialog>-->
<el-dialog
title="产品录入"
:visible.sync="selectProductVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="85%"
v-if="selectProductVisible"
:append-to-body='true'
>
<stockOrderNewSelectProduct
:closeDialog="closeDialogC2"
:data="thisData"
></stockOrderNewSelectProduct>
</el-dialog>
<el-dialog
title="库存产品录入"
:visible.sync="selectInvProductVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="85%"
v-if="selectInvProductVisible"
:append-to-body='true'
>
<dialogInvProduct
:closeDialog="closeDialogC2"
:data="thisData"
></dialogInvProduct>
</el-dialog>
</div>
</template>
@ -418,7 +449,7 @@ import store from "../../store";
import stockOrderNewSelectProduct from "./stockOrderNewSelectProduct";
import {getBasicUnitMaintains, getBasicUnitMaintains2} from "../../api/basic/basicUnitMaintain";
import {getBussinessType} from "../../api/basic/bussinessType";
import {getLocalBusType} from "../../api/basic/busLocalType";
import {getLocalBusType, getLocalJoinBusType} from "../../api/basic/busLocalType";
import {filterAll} from "@/api/basic/invWarehouse";
export default {
@ -497,6 +528,7 @@ export default {
currentRow: {},
selectedIndex: "",
selectProductVisible: false,
selectInvProductVisible:false,
thisData: {},
storageList: [],
};
@ -619,7 +651,9 @@ export default {
if (event == null) {
this.$refs.inputRef.focus();
} else event.target.select();
} else {
event.target.select();
}
if (this.$isBlank(event)) {
this.code = "";
this.$refs.multipleTable.setCurrentRow();
@ -632,7 +666,18 @@ export default {
if (this.orderEditor) {
this.thisData.orderId = this.formData.id
}
this.thisData.stockOrderLists = this.codeArray;
this.thisData.formData = this.formData;
this.selectProductVisible = true;
let item = this.getActionItem(this.formData.billType);
console.log(item.mainAction + "----" + this.formData.noInvOut);
if (item.mainAction == 'WareHouseOut' && this.formData.noInvOut != true)//
{
this.selectInvProductVisible = true;
} else {
this.selectProductVisible = true;
}
return;
}
this.code = this.code.trim();
@ -1089,7 +1134,7 @@ export default {
let query = {
enabled: true,
};
getLocalBusType(query)
getLocalJoinBusType(query)
.then((response) => {
this.busTypes = response.data.list || [];
})
@ -1112,6 +1157,13 @@ export default {
}
}
},
getActionItem(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].localAction === action) {
return this.busTypes[i];
}
}
},
findStorageMethod(query) {
console.log(query);
this.fromStorageOptions = [];

@ -502,9 +502,9 @@ export default {
data() {
return {
query: {
billType:null,
corpName:null,
locStorageCode:null,
billType: null,
corpName: null,
locStorageCode: null,
billNo: "",
status: "2",
startTime: "",

Loading…
Cancel
Save