Merge remote-tracking branch 'origin/master'

prod
郑明梁 2 years ago
commit 11523ede3e

@ -119,9 +119,9 @@ export function addStockOrder(query) {
export function addReceiveOrder(query) { export function addReceiveOrder(query) {
return axios({ return axios({
url: "/udiwms/receive/addStockOrder", url: "/udiwms/inout/order/addReceiveOrder",
method: "get", method: "post",
params: query data: query
}); });
} }

@ -281,6 +281,20 @@ export function updateCodeBindSup(query) {
) )
} }
export function updateBizBind(query) {
return axios(
{
url: "/udiwms/inout/biz/updateBind",
method: "post",
data: query
}
)
}
export function backStock(query) { export function backStock(query) {
return axios( return axios(
{ {

@ -54,8 +54,8 @@ export function systemPDFModuleSave(data, formName, method = "post") {
export function systemPDFTemplateDeleteById(query) { export function systemPDFTemplateDeleteById(query) {
return axios({ return axios({
url: "/system/pdf/template/delete", url: "/system/pdf/template/delete",
method: "get", method: "post",
params: query data: query
}); });
} }

@ -64,7 +64,7 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-dialog <el-dialog
title="产品信息编辑" title="产品信息详情"
:visible.sync="editDialogVisible" :visible.sync="editDialogVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
append-to-body append-to-body
@ -502,6 +502,10 @@ import {updateBind} from "../../api/inout/order"
export default { export default {
name: "DialogSelectRl", name: "DialogSelectRl",
props: { props: {
type: {
type: Object,
required: true,
},
curRow: { curRow: {
type: Object, type: Object,
required: true, required: true,
@ -510,7 +514,7 @@ export default {
type: Function, type: Function,
required: true, required: true,
}, },
fromCorp:{ fromCorp: {
type: Object, type: Object,
required: true, required: true,
}, },
@ -705,7 +709,7 @@ export default {
, ,
bindId(val) { bindId(val) {
if (this.curRow.code != null) { if (this.curRow.code != null || this.type == 1) {
this.$emit("selectBindRl", val); this.$emit("selectBindRl", val);
this.$emit("closeBindDialog", true); this.$emit("closeBindDialog", true);
} else { } else {

@ -149,6 +149,7 @@ import {getOriginBusType} from "@/api/basic/busOriginType";
import {filterAllByUser} from "@/api/system/invWarehouse"; import {filterAllByUser} from "@/api/system/invWarehouse";
import selectInvDialog from "./DialogSelectInv"; import selectInvDialog from "./DialogSelectInv";
import {getBasicThirdSys} from "@/api/basic/basicThirdSys"; import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
import {getThrOrderDetails, getThrOrders} from "@/api/thrsys/thrOrder";
export default { export default {
name: "closeDialog", name: "closeDialog",
@ -253,9 +254,21 @@ export default {
this.unionQuery.page = val; this.unionQuery.page = val;
this.getList(); this.getList();
}, },
handleChange(val) { handleChange(row) {
this.currentRow = val; this.currentRow = row;
this.detailList = val.subErpOrders; let query = {orderIdFk: row.billNo};
getThrOrderDetails(query)
.then((response) => {
if (response.code == 20000) {
this.detailList = response.data.list || [];
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
});
}, },
handleErpPageChange(val) { handleErpPageChange(val) {
this.listQuery.page = val; this.listQuery.page = val;
@ -275,7 +288,7 @@ export default {
this.listQuery.endDate = null; this.listQuery.endDate = null;
} }
this.listQuery.customerId = store.getters.customerId; this.listQuery.customerId = store.getters.customerId;
getCloudErp(this.listQuery) getThrOrders(this.listQuery)
.then((response) => { .then((response) => {
console.log(response) console.log(response)
this.loading = false; this.loading = false;
@ -301,26 +314,21 @@ export default {
if (this.$isBlank(this.currentRow.id)) { if (this.$isBlank(this.currentRow.id)) {
return; return;
} }
this.curLocInv = this.currentRow.locStorageCode; let tQuery = {
if (this.$isBlank(this.curLocInv)) { id: this.currentRow.id,
this.storageVisible = true; locStorageCode: this.curLocInv,
} else { invWarehouseCode: this.currentRow.invWarehouseCode,
let tQuery = {
id: this.currentRow.id,
locStorageCode: this.curLocInv,
invWarehouseCode: this.currentRow.invWarehouseCode,
}
addStockOrder(tQuery)
.then((response) => {
if (response.code === 20000) {
this.closeDialog();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
});
} }
addStockOrder(tQuery)
.then((response) => {
if (response.code === 20000) {
this.closeDialog();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
});
}, },
hideSearch() { hideSearch() {
this.showSearch = !this.showSearch; this.showSearch = !this.showSearch;
@ -401,8 +409,6 @@ export default {
.then((response) => { .then((response) => {
this.thirdSys = response.data.list || []; this.thirdSys = response.data.list || [];
this.listQuery.thirdSysFk = this.thirdSys[0].thirdId; this.listQuery.thirdSysFk = this.thirdSys[0].thirdId;
this.uploadData.thirdSys = this.listQuery.thirdSysFk;
this.selectSysParam();
this.getBusType(); this.getBusType();
}) })
.catch(() => { .catch(() => {
@ -412,15 +418,20 @@ export default {
}, },
}, }
,
created() { created() {
this.getBasicThirdSys(); this.getBasicThirdSys();
this.getStorage(); this.getStorage();
}, }
components: {selectInvDialog} ,
components: {
selectInvDialog
}
}; }
;
</script> </script>
<style scoped> <style scoped>

@ -132,8 +132,10 @@ export default {
}, },
mounted() { mounted() {
console.log("this.codeId = " + this.codeId)
if (this.codeId != null) { if (this.codeId != null) {
if (this.codeId.bindRlFk != null) {
this.codeId.relId = this.codeId.bindRlFk;
}
this.getUnitListByCode(this.codeId) this.getUnitListByCode(this.codeId)
} }
} }

@ -401,6 +401,8 @@ export default {
closeDialog() { closeDialog() {
this.addOrderVisible = false; this.addOrderVisible = false;
this.addHosOrderVisible = false; this.addHosOrderVisible = false;
this.selectReceiveVisible = false;
this.selectThrOrderVisible = false;
this.getList(); this.getList();
}, },

@ -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) {

@ -5,7 +5,7 @@
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item label="UDI码:" class="query-form-item"> <el-form-item label="UDI码:" class="query-form-item">
<el-input v-model="listQuery.nameCode" style="width: 96%" placeholder="请扫描或输入UDI码" clearable="true" @keyup.enter.native="keyup_submit($event)"></el-input> <el-input v-model="listQuery.udiCode" style="width: 96%" placeholder="请扫描或输入UDI码" clearable="true" @keyup.enter.native="keyup_submit($event)"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">

@ -44,7 +44,7 @@
<el-table-column label="创建人" prop="createByName"></el-table-column> <el-table-column label="创建人" prop="createByName"></el-table-column>
<el-table-column label="审核人" prop="auditByName"></el-table-column> <el-table-column label="审核人" prop="auditByName"></el-table-column>
<el-table-column label="采购仓库" prop="invName"></el-table-column> <el-table-column label="采购仓库" prop="invName"></el-table-column>
<el-table-column label="采购分库" prop="subInvName"></el-table-column> <!--<el-table-column label="采购分库" prop="subInvName"></el-table-column>-->
<el-table-column label="采购说明" prop="remark"></el-table-column> <el-table-column label="采购说明" prop="remark"></el-table-column>
<el-table-column label="状态" prop="status"> <el-table-column label="状态" prop="status">
<template slot-scope="scope"> <template slot-scope="scope">

@ -126,7 +126,7 @@
accept=".jasper" accept=".jasper"
:on-change="uploadOnchange" :on-change="uploadOnchange"
:on-success="uploadHandleSuccess" :on-success="uploadHandleSuccess"
:auto-upload="true" :auto-upload="false"
:file-list="fileList" :file-list="fileList"
> >
@ -156,7 +156,7 @@
:on-change="uploadJrxmlOnchange" :on-change="uploadJrxmlOnchange"
:on-success="uploadJrxmlHandleSuccess" :on-success="uploadJrxmlHandleSuccess"
:file-list="jrxmlFileList" :file-list="jrxmlFileList"
:auto-upload="true"> :auto-upload="false">
<el-button slot="trigger" size="small" type="primary" :disabled="uploadDisabled">选取文件 <el-button slot="trigger" size="small" type="primary" :disabled="uploadDisabled">选取文件
</el-button> </el-button>
<div slot="tip" class="el-upload__tip" v-if="formData.jrxmlPath==null"> jrxml <div slot="tip" class="el-upload__tip" v-if="formData.jrxmlPath==null"> jrxml
@ -333,12 +333,12 @@ export default {
module: [ module: [
{required: true, message: "请选择模板类型", trigger: "blur"} {required: true, message: "请选择模板类型", trigger: "blur"}
], ],
jasper: [ // jasper: [
{required: true, message: "请上传jasper文件", trigger: "blur"} // {required: true, message: "jasper", trigger: "blur"}
], // ],
jrxml: [ // jrxml: [
{required: true, message: "请上传jrxml文件", trigger: "blur"} // {required: true, message: "jrxml", trigger: "blur"}
] // ]
}, },
deleteLoading: false, deleteLoading: false,
@ -400,7 +400,7 @@ export default {
this.getList(); this.getList();
}, },
jumpDl(row) { jumpDl(row) {
this.handleDownload(BASE_URL + "/udiwms/donwload/file?fileName=" + row.jrxmlPath, row.name + ".jrxml"); this.handleDownload(this.BASE_URL + "/udiwms/donwload/file?fileName=" + row.jrxmlPath, row.name + ".jrxml");
}, },
@ -689,7 +689,12 @@ export default {
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
}).then(() => { }).then(() => {
systemPDFTemplateDeleteById({id: row.id, path: row.path}) let query =
{
id: row.id,
path: row.path
};
systemPDFTemplateDeleteById(query)
.then(response => { .then(response => {
console.log(response) console.log(response)
if (response.code === 20000) { if (response.code === 20000) {
@ -782,8 +787,8 @@ export default {
this.getList(); this.getList();
this.getPDFModuleNameList(); this.getPDFModuleNameList();
this.getModuleList(); this.getModuleList();
this.uploadUrl = BASE_URL + "/udiwms/upload/pdf/template/jasper"; this.uploadUrl = this.BASE_URL + "/udiwms/upload/pdf/template/jasper";
this.uploadJrxmlUrl = BASE_URL + "/udiwms/upload/pdf/template/jrxml"; this.uploadJrxmlUrl = this.BASE_URL + "/udiwms/upload/pdf/template/jrxml";
this.headers = { this.headers = {
ADMIN_ID: store.getters.adminId, ADMIN_ID: store.getters.adminId,
ADMIN_TOKEN: store.getters.token, ADMIN_TOKEN: store.getters.token,

@ -112,12 +112,11 @@
</div> </div>
</template> </template>
<script> <script>
import {delThrOrders, delAll, downloadAll} from "@/api/thrsys/thrOrder"; import {delThrOrders, delAll, downloadAll, getThrOrders, getThrOrderDetails} from "@/api/thrsys/thrOrder";
import {getBussinessType} from "@/api/basic/bussinessType"; import {getBussinessType} from "@/api/basic/bussinessType";
import {getOriginBusType} from "@/api/basic/busOriginType"; import {getOriginBusType} from "@/api/basic/busOriginType";
import {getBasicThirdSys, filterDetailByKey} from "@/api/basic/basicThirdSys"; import {getBasicThirdSys, filterDetailByKey} from "@/api/basic/basicThirdSys";
import {selectIp} from "@/api/param/systemParamConfig"; import {selectIp} from "@/api/param/systemParamConfig";
import {getCloudErp, getThirdSysOrder} from "@/api/inout/erpOrder";
export default { export default {
data() { data() {
@ -215,7 +214,7 @@ export default {
this.filterQuery.endDate = null; this.filterQuery.endDate = null;
} }
this.loading = true; this.loading = true;
getThirdSysOrder(this.filterQuery) getThrOrders(this.filterQuery)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
@ -232,7 +231,20 @@ export default {
}); });
}, },
handleDetail(row) { handleDetail(row) {
this.detailList = row.subErpOrders; let query = {orderIdFk: row.billNo};
getThrOrderDetails(query)
.then((response) => {
if (response.code == 20000) {
this.detailList = response.data.list || [];
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
});
}, },
deleteDialog(row) { deleteDialog(row) {
this.$confirm("此操作将永久删除该单据, 是否继续?", "提示", { this.$confirm("此操作将永久删除该单据, 是否继续?", "提示", {

Loading…
Cancel
Save