|
|
@ -97,7 +97,7 @@
|
|
|
|
prop="manufacturer"
|
|
|
|
prop="manufacturer"
|
|
|
|
show-overflow-tooltip
|
|
|
|
show-overflow-tooltip
|
|
|
|
></el-table-column>
|
|
|
|
></el-table-column>
|
|
|
|
<el-table-column label="操作" width="150">
|
|
|
|
<el-table-column label="操作" width="250">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
@ -127,6 +127,24 @@
|
|
|
|
>复制
|
|
|
|
>复制
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
v-if="scope.row.bindRlFk==null"
|
|
|
|
|
|
|
|
@click.native.stop="bindRl(scope.row)"
|
|
|
|
|
|
|
|
>绑定产品
|
|
|
|
|
|
|
|
</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
v-if="scope.row.supId==null"
|
|
|
|
|
|
|
|
@click.native.stop="handleUnitClick(scope.row)"
|
|
|
|
|
|
|
|
>绑定供应商
|
|
|
|
|
|
|
|
</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
@ -153,8 +171,6 @@
|
|
|
|
:data="thisData"
|
|
|
|
:data="thisData"
|
|
|
|
></stockOrderNewSelectProduct>
|
|
|
|
></stockOrderNewSelectProduct>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
|
title="库存产品录入"
|
|
|
|
title="库存产品录入"
|
|
|
|
:visible.sync="selectInvProductVisible"
|
|
|
|
:visible.sync="selectInvProductVisible"
|
|
|
@ -173,6 +189,44 @@
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 绑定产品-->
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
|
|
title="绑定产品"
|
|
|
|
|
|
|
|
:visible.sync="selectRlVisible"
|
|
|
|
|
|
|
|
width="80%"
|
|
|
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
|
|
|
v-if="selectRlVisible"
|
|
|
|
|
|
|
|
append-to-body
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<selectRlDialog
|
|
|
|
|
|
|
|
:curRow="curRow"
|
|
|
|
|
|
|
|
:type="bizType"
|
|
|
|
|
|
|
|
v-on:selectBindRl="selectBindRl"
|
|
|
|
|
|
|
|
v-on:closeBindDialog="closeBindDialog"
|
|
|
|
|
|
|
|
></selectRlDialog>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 绑定供应商-->
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
|
|
title="绑定供应商"
|
|
|
|
|
|
|
|
:visible.sync="dialogTableVisible"
|
|
|
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
|
|
|
v-if="dialogTableVisible"
|
|
|
|
|
|
|
|
width="80%"
|
|
|
|
|
|
|
|
append-to-body
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<DialogSelectUnit
|
|
|
|
|
|
|
|
:codeId="curRow"
|
|
|
|
|
|
|
|
:type="bizType"
|
|
|
|
|
|
|
|
v-on:selectSupUnit="selectSupUnit"
|
|
|
|
|
|
|
|
v-on:closeBindDialog="closeBindDialog"
|
|
|
|
|
|
|
|
></DialogSelectUnit>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
@ -180,6 +234,9 @@
|
|
|
|
import stockOrderNewSelectProduct from "./DialogSelectProduct";
|
|
|
|
import stockOrderNewSelectProduct from "./DialogSelectProduct";
|
|
|
|
import dialogInvProduct from "./DialogSelectInvProduct";
|
|
|
|
import dialogInvProduct from "./DialogSelectInvProduct";
|
|
|
|
import {addBizProduct, getDetailBizs, updateBizProduct, delBizProduct} from "@/api/inout/orderDetailCode";
|
|
|
|
import {addBizProduct, getDetailBizs, updateBizProduct, delBizProduct} from "@/api/inout/orderDetailCode";
|
|
|
|
|
|
|
|
import {updateBizBind} from "@/api/inout/order";
|
|
|
|
|
|
|
|
import selectRlDialog from "@/views/inout/DialogSelectRl";
|
|
|
|
|
|
|
|
import DialogSelectUnit from "@/views/inout/DialogSelectUnit";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: "IoCreateOrderBizDetail",
|
|
|
|
name: "IoCreateOrderBizDetail",
|
|
|
@ -208,6 +265,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
|
|
|
|
bizType: 1,
|
|
|
|
loading: false,
|
|
|
|
loading: false,
|
|
|
|
query: {
|
|
|
|
query: {
|
|
|
|
orderId: null,
|
|
|
|
orderId: null,
|
|
|
@ -226,9 +284,13 @@ export default {
|
|
|
|
invQueryData: {
|
|
|
|
invQueryData: {
|
|
|
|
invCode: null,
|
|
|
|
invCode: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
selectRlVisible: false,
|
|
|
|
|
|
|
|
dialogTableVisible: false,
|
|
|
|
|
|
|
|
curRow: null,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
components: {
|
|
|
|
|
|
|
|
selectRlDialog, DialogSelectUnit,
|
|
|
|
stockOrderNewSelectProduct,
|
|
|
|
stockOrderNewSelectProduct,
|
|
|
|
dialogInvProduct,
|
|
|
|
dialogInvProduct,
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -239,7 +301,6 @@ export default {
|
|
|
|
getDetailBizs(this.query) //查找该单号下的所有条码
|
|
|
|
getDetailBizs(this.query) //查找该单号下的所有条码
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
this.detailList = response.data.list || [];
|
|
|
|
this.detailList = response.data.list || [];
|
|
|
|
|
|
|
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
@ -269,9 +330,15 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
rowStyle({row, rowIndex}) {
|
|
|
|
rowStyle({row, rowIndex}) {
|
|
|
|
|
|
|
|
let rowBackground = {};
|
|
|
|
|
|
|
|
if (!this.$isNotBlank(row.supId) || !this.$isNotBlank(row.bindRlFk)) {
|
|
|
|
|
|
|
|
rowBackground.color = '#f60303';
|
|
|
|
|
|
|
|
return rowBackground;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (this.viewType == 1)
|
|
|
|
if (this.viewType == 1)
|
|
|
|
return null;
|
|
|
|
return null;
|
|
|
|
let rowBackground = {};
|
|
|
|
|
|
|
|
if (!row.checkSuccess) {
|
|
|
|
if (!row.checkSuccess) {
|
|
|
|
rowBackground.color = '#f60303';
|
|
|
|
rowBackground.color = '#f60303';
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -367,19 +434,73 @@ export default {
|
|
|
|
this.dataList = [];
|
|
|
|
this.dataList = [];
|
|
|
|
this.pageTotal = 0;
|
|
|
|
this.pageTotal = 0;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
bindRl(val) {
|
|
|
|
|
|
|
|
this.curRow = val;
|
|
|
|
|
|
|
|
this.selectRlVisible = true;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleUnitClick(row) {
|
|
|
|
|
|
|
|
this.curRow = row;
|
|
|
|
|
|
|
|
this.dialogTableVisible = true;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
selectBindRl(row) {
|
|
|
|
|
|
|
|
let query = {
|
|
|
|
|
|
|
|
id: this.curRow.id,
|
|
|
|
|
|
|
|
bindRlFk: row.id,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
updateBizBind(query).then((response) => {
|
|
|
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
|
|
|
this.$message.success("绑定成功");
|
|
|
|
|
|
|
|
this.getOrderDetails();
|
|
|
|
|
|
|
|
} else
|
|
|
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
).catch(() => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
selectSupUnit(row) {
|
|
|
|
|
|
|
|
let query = {
|
|
|
|
|
|
|
|
id: this.curRow.id,
|
|
|
|
|
|
|
|
supId: row.erpId,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
updateBizBind(query).then((response) => {
|
|
|
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
|
|
|
this.$message.success("绑定成功");
|
|
|
|
|
|
|
|
this.getOrderDetails();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
closeBindDialog() {
|
|
|
|
|
|
|
|
this.selectRlVisible = false;
|
|
|
|
|
|
|
|
this.dialogTableVisible = false;
|
|
|
|
|
|
|
|
this.refreshPanel();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
,
|
|
|
|
,
|
|
|
|
filters: {}
|
|
|
|
filters: {}
|
|
|
|
,
|
|
|
|
,
|
|
|
|
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
watch: {
|
|
|
|
'idQuery.billNo': {
|
|
|
|
'idQuery.billNo':
|
|
|
|
handler() {
|
|
|
|
{
|
|
|
|
this.refreshOrder(this.idQuery);
|
|
|
|
handler() {
|
|
|
|
},
|
|
|
|
this.refreshOrder(this.idQuery);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
,
|
|
|
|
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
mounted() {
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|