新增单据

prod
anthonywj 2 years ago
parent 7f000a1fd8
commit 5d0d6e8f33

@ -35,6 +35,7 @@
"url": "https://gitee.com/y_project/RuoYi-Vue.git" "url": "https://gitee.com/y_project/RuoYi-Vue.git"
}, },
"dependencies": { "dependencies": {
"element-china-area-data": "^5.0.2",
"@riophae/vue-treeselect": "0.4.0", "@riophae/vue-treeselect": "0.4.0",
"axios": "0.24.0", "axios": "0.24.0",
"clipboard": "2.0.8", "clipboard": "2.0.8",

@ -180,15 +180,16 @@
</el-card> </el-card>
<el-tabs type="border-card" style="margin: 5px"> <el-tabs type="border-card" style="margin: 5px">
<el-tab-pane label="业务详情"> <el-tab-pane label="业务详情">
<biz-detail-panel :idQuery="orderFormData" v-if="isCodeAlive"></biz-detail-panel> <biz-detail-panel :idQuery="orderFormData" :refreshPanel="refreshCodesPanel" :refreshOrder="refreshOrder"
v-if="isBizDetailAlive"></biz-detail-panel>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="扫码详情"> <el-tab-pane label="扫码详情">
<codeDetailPanel :idQuery="orderFormData" v-if="isCodeAlive"></codeDetailPanel> <codeDetailPanel :idQuery="orderFormData" :refreshPanel="refreshCodesPanel"
v-if="isCodeDetailAlive"></codeDetailPanel>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="扫码明细"> <el-tab-pane label="扫码明细">
<codesPanel :idQuery="orderFormData" v-if="isCodeAlive"></codesPanel> <codesPanel :idQuery="orderFormData" :refreshPanel="refreshCodesPanel" v-if="isCodeAlive"></codesPanel>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
@ -331,6 +332,8 @@ export default {
}, },
fromOptions: [], fromOptions: [],
isCodeAlive: true, isCodeAlive: true,
isBizDetailAlive: true,
isCodeDetailAlive: true,
editCodeVisible: false, editCodeVisible: false,
actionEnable: false, actionEnable: false,
@ -382,7 +385,7 @@ export default {
findInvByUser() findInvByUser()
.then((response) => { .then((response) => {
this.curInvOptions = response.data || []; this.curInvOptions = response.data || [];
if (this.curInvOptions != null && this.curInvOptions.length == 1) { if (this.curInvOptions != null && this.curInvOptions.length > 1) {
this.orderFormData.invWarehouseCode = this.curInvOptions[0].code; this.orderFormData.invWarehouseCode = this.curInvOptions[0].code;
this.getBusTypeByInv() this.getBusTypeByInv()
} }
@ -511,7 +514,7 @@ export default {
addCodeSubmit(tQuery) { addCodeSubmit(tQuery) {
addOrderWeb(tQuery).then((response) => { addOrderWeb(tQuery).then((response) => {
if (response.code === 20000) { if (response.code === 20000) {
this.idQuery.billNo = response.data.orderId; this.orderFormData.billNo = response.data.orderId;
if (response.data.errMsg != null) { if (response.data.errMsg != null) {
this.$alert(response.data.errMsg, '提示', { this.$alert(response.data.errMsg, '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
@ -528,13 +531,13 @@ export default {
} else { } else {
if (response.code == 502) { if (response.code == 502) {
this.curRow = response.data; this.curRow = response.data;
this.idQuery.billNo = this.curRow.orderId; this.orderFormData.billNo = this.curRow.orderId;
this.refreshCodesPanel(); this.refreshCodesPanel();
this.selectRlTitle = response.message; this.selectRlTitle = response.message;
this.bindRl(response.data); this.bindRl(response.data);
} else if (response.code == 503) { } else if (response.code == 503) {
this.curRow = response.data; this.curRow = response.data;
this.idQuery.billNo = this.curRow.orderId; this.orderFormData.billNo = this.curRow.orderId;
this.refreshCodesPanel(); this.refreshCodesPanel();
this.selectUnitTitle = response.message; this.selectUnitTitle = response.message;
this.handleUnitClick(response.data); this.handleUnitClick(response.data);
@ -591,15 +594,24 @@ export default {
refreshCodesPanel() { refreshCodesPanel() {
this.isCodeAlive = false; this.isCodeAlive = false;
this.isBizDetailAlive = false;
this.isCodeDetailAlive = false;
this.$nextTick(() => { // this.$nextTick(() => { //
this.isCodeAlive = true this.isCodeAlive = true
this.isBizDetailAlive = true;
this.isCodeDetailAlive = true;
}) })
}, },
refreshOrder(idQuery) {
this.orderFormData = idQuery;
},
submit() { submit() {
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData))); let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData)));
tQuery.orderId = this.idQuery.billNo; tQuery.orderId = this.orderFormData.billNo;
submitOrderWeb(tQuery) submitOrderWeb(tQuery)
.then((response) => { .then((response) => {
if (response.code === 20000) { if (response.code === 20000) {
@ -613,7 +625,7 @@ export default {
}, },
saveOrder() { saveOrder() {
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData))); let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData)));
tQuery.orderId = this.idQuery.billNo; tQuery.orderId = this.orderFormData.billNo;
saveOrderWeb(tQuery).then((response) => { saveOrderWeb(tQuery).then((response) => {
if (response.code === 20000) { if (response.code === 20000) {
this.closeDialog(); this.closeDialog();
@ -696,7 +708,7 @@ export default {
repeatAddCode(editData) { repeatAddCode(editData) {
let tQuery = editData; let tQuery = editData;
tQuery.orderId = this.idQuery.id; tQuery.orderId = this.orderFormData.id;
tQuery.actDate = parseTime(this.orderFormData.actDate, '{y}-{m}-{d} {h}:{i}:{s}'); tQuery.actDate = parseTime(this.orderFormData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
tQuery.action = this.orderFormData.action; tQuery.action = this.orderFormData.action;
this.closeCodeDialog(); this.closeCodeDialog();
@ -734,7 +746,7 @@ export default {
updateCodeBindSup(query).then((response) => { updateCodeBindSup(query).then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("绑定成功"); this.$message.success("绑定成功");
this.idQuery.id = this.curRow.orderId; this.orderFormData.id = this.curRow.orderId;
this.getCodeList(); this.getCodeList();
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
@ -754,12 +766,12 @@ export default {
updateCodeBindSup(query).then((response) => { updateCodeBindSup(query).then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("绑定成功"); this.$message.success("绑定成功");
this.idQuery.id = this.curRow.orderId; this.orderFormData.id = this.curRow.orderId;
this.getCodeList(); this.getCodeList();
} else { } else {
if (response.code == 503) { if (response.code == 503) {
this.curRow = response.data; this.curRow = response.data;
this.idQuery.id = this.curRow.orderId; this.orderFormData.id = this.curRow.orderId;
this.getCodeList(); this.getCodeList();
this.selectUnitTitle = response.message; this.selectUnitTitle = response.message;
this.handleUnitClick(response.data); this.handleUnitClick(response.data);

@ -197,6 +197,14 @@ export default {
type: Object, type: Object,
required: true, required: true,
}, },
refreshPanel: {
type: Function,
required: true,
},
refreshOrder: {
type: Function,
required: true,
},
}, },
data() { data() {
return { return {
@ -332,6 +340,15 @@ export default {
, ,
filters: {} filters: {}
, ,
watch: {
'idQuery.billNo': {
handler() {
this.refreshOrder(this.idQuery);
},
}
},
mounted() { mounted() {
document.body.ondrop = function (event) { document.body.ondrop = function (event) {
event.preventDefault(); event.preventDefault();

@ -112,6 +112,10 @@ export default {
type: Object, type: Object,
required: true, required: true,
}, },
refreshPanel: {
type: Function,
required: true,
},
}, },
data() { data() {
return { return {
@ -165,7 +169,7 @@ export default {
deleteCodesTempById(tQuery) deleteCodesTempById(tQuery)
.then((response) => { .then((response) => {
if (response.code === 20000) { if (response.code === 20000) {
this.getCodeList(); this.refreshPanel();
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }

@ -155,6 +155,7 @@
import {getUdiInfos} from "@/api/basic/product/udiRelevance"; import {getUdiInfos} from "@/api/basic/product/udiRelevance";
import {addBizProduct} from "@/api/inout/orderDetailCode"; import {addBizProduct} from "@/api/inout/orderDetailCode";
import {filterCompanyProductRelevance} from "@/api/basic/udiRlSuptRelevance";
export default { export default {
name: "stockOrderNewSelectProduct", name: "stockOrderNewSelectProduct",
@ -226,7 +227,7 @@ export default {
getList() { getList() {
this.loading = true; this.loading = true;
getUdiInfos(this.listQuery) filterCompanyProductRelevance(this.listQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code === 20000) { if (response.code === 20000) {
@ -282,7 +283,7 @@ export default {
combine() { combine() {
let data = { let data = {
relId: this.currentRow.id, relId: this.currentRow.rlId,
supId: this.currentRow.customerId, supId: this.currentRow.customerId,
zczbhhzbapzbh: this.currentRow.zczbhhzbapzbh, zczbhhzbapzbh: this.currentRow.zczbhhzbapzbh,
orderEntity: this.data, orderEntity: this.data,

@ -665,7 +665,6 @@ export default {
}, },
// //
printSupCertProductionPdf(row) { printSupCertProductionPdf(row) {
debugger
let query = {moduleId: 10}; let query = {moduleId: 10};
this.loading = true; this.loading = true;

@ -221,7 +221,6 @@ export default {
}, },
addUser() { // addUser() { //
debugger
this.currentCode = this.inputQuery.code; this.currentCode = this.inputQuery.code;
this.userFormVisible = true; this.userFormVisible = true;
this.selectUserQuery.code = this.inputQuery.code; this.selectUserQuery.code = this.inputQuery.code;

Loading…
Cancel
Save