CTP 2 years ago
commit 0f904e2f5c

@ -50,3 +50,13 @@ export function updateConfig(query) {
}); });
} }
export function infoByStatus(query) {
return axios({
url: "/spssync/basic/udiinfo/infoByStatus",
method: "post",
data: query,
responseType: 'blob'
});
}

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<el-card style="margin: 5px; margin-top: -20px"> <el-card style="margin: 5px;">
<el-form <el-form
:model="orderFormData" :model="orderFormData"
:rules="formRules" :rules="formRules"

@ -180,6 +180,8 @@ export default {
page: 1, page: 1,
limit: 10, limit: 10,
}, },
isEntrust: false,
} }
}, },
@ -267,6 +269,7 @@ export default {
this.detailList = response.data.orderDetailEntities || []; this.detailList = response.data.orderDetailEntities || [];
this.formData = response.data.orderEntity; this.formData = response.data.orderEntity;
this.orderQuery = this.formData; this.orderQuery = this.formData;
this.isEntrust = response.data.entrust;
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
@ -371,6 +374,7 @@ export default {
postAccept() { postAccept() {
let query = { let query = {
orderId: this.orderQuery.billNo, orderId: this.orderQuery.billNo,
entrust: this.isEntrust,
}; };
if (this.reviewType != null && this.reviewType == 2) { if (this.reviewType != null && this.reviewType == 2) {
thirdUpdateStatus(query) thirdUpdateStatus(query)

@ -1022,6 +1022,7 @@ export default {
// //
closeAcceptDialog() { closeAcceptDialog() {
this.acceptOrderVisible = false; this.acceptOrderVisible = false;
this.newAcceptOrderVisible = false;
}, },
// //

@ -71,13 +71,13 @@
border max-height="300" height="300"> border max-height="300" height="300">
<el-table-column label="序号" type="index" width="50"></el-table-column> <el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column label="DI/物资编码" prop="relId" width="150"></el-table-column> <el-table-column label="DI/物资编码" prop="relId" width="150"></el-table-column>
<el-table-column label="物资名称" prop="productName" width="150"></el-table-column> <el-table-column label="物资名称" prop="productName" width="150" show-tooltip-when-overflow></el-table-column>
<el-table-column label="规格型号" prop="ggxh" width="150"></el-table-column> <el-table-column label="规格型号" prop="ggxh" width="150"></el-table-column>
<el-table-column label="批次号" prop="batchNo" width="150"></el-table-column> <el-table-column label="批次号" prop="batchNo" width="150"></el-table-column>
<el-table-column label="序列号" prop="serialNo" width="150"></el-table-column> <el-table-column label="序列号" prop="serialNo" width="150"></el-table-column>
<el-table-column label="计量单位" prop="measname" width="150"></el-table-column> <el-table-column label="计量单位" prop="measname" width="150"></el-table-column>
<el-table-column label="货位" prop="invSpaceName" width="150"></el-table-column> <el-table-column label="货位" prop="invSpaceName" width="150"></el-table-column>
<el-table-column label="注册备案号" prop="zczbhhzbapzbh" width="150"></el-table-column> <el-table-column label="注册备案号" prop="zczbhhzbapzbh" width="150" show-tooltip-when-overflow></el-table-column>
<el-table-column label="生产厂家" prop="manufactory" width="150"></el-table-column> <el-table-column label="生产厂家" prop="manufactory" width="150"></el-table-column>
<el-table-column label="供应商" prop="supName" width="150"></el-table-column> <el-table-column label="供应商" prop="supName" width="150"></el-table-column>
</el-table> </el-table>
@ -96,7 +96,7 @@
<invPlaceSelectOrder <invPlaceSelectOrder
:closeDialog="closeDialog" :closeDialog="closeDialog"
:formData="selectFormData" :formData="selectFormData"
:getInvProductInfogetInvProductInfogetInvProductInfo="getInvProductInfo" :getInvProductInfo="getInvProductInfo"
> >
</invPlaceSelectOrder> </invPlaceSelectOrder>
</el-dialog> </el-dialog>
@ -260,7 +260,7 @@ export default {
getInvProductInfo(orderId) { getInvProductInfo(orderId) {
let params = { let params = {
invCode: this.formData.invCode, invCode: this.formData.invCode,
code: orderId orderId: orderId
}; };
getInvProductInfo(params).then((res) => { getInvProductInfo(params).then((res) => {
if (res.data !== null) { if (res.data !== null) {

@ -125,7 +125,7 @@ export default {
}, },
getList() { getList() {
this.loading = true; this.loading = true;
getInvPlaceOrderList().then((res) => { getInvPlaceOrderList(this.filterQuery).then((res) => {
this.loading = false; this.loading = false;
if (res.code === 20000) { if (res.code === 20000) {
this.list = res.data.list || []; this.list = res.data.list || [];
@ -153,7 +153,7 @@ export default {
}, },
}, },
created() { created() {
this.getInvList(); this.getList();
}, },
} }
</script> </script>

@ -69,13 +69,13 @@
border max-height="300" height="300"> border max-height="300" height="300">
<el-table-column label="序号" type="index" width="50"></el-table-column> <el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column label="DI/物资编码" prop="relId" width="150"></el-table-column> <el-table-column label="DI/物资编码" prop="relId" width="150"></el-table-column>
<el-table-column label="物资名称" prop="productName" width="150"></el-table-column> <el-table-column label="物资名称" prop="productName" width="150" show-tooltip-when-overflow></el-table-column>
<el-table-column label="规格型号" prop="ggxh" width="150"></el-table-column> <el-table-column label="规格型号" prop="ggxh" width="150"></el-table-column>
<el-table-column label="批次号" prop="batchNo" width="150"></el-table-column> <el-table-column label="批次号" prop="batchNo" width="150"></el-table-column>
<el-table-column label="序列号" prop="serialNo" width="150"></el-table-column> <el-table-column label="序列号" prop="serialNo" width="150"></el-table-column>
<el-table-column label="计量单位" prop="measname" width="150"></el-table-column> <el-table-column label="计量单位" prop="measname" width="150"></el-table-column>
<el-table-column label="货位" prop="invSpaceName" width="150"></el-table-column> <el-table-column label="货位" prop="invSpaceName" width="150"></el-table-column>
<el-table-column label="注册备案号" prop="zczbhhzbapzbh" width="150"></el-table-column> <el-table-column label="注册备案号" prop="zczbhhzbapzbh" width="150" show-tooltip-when-overflow></el-table-column>
<el-table-column label="生产厂家" prop="manufactory" width="150"></el-table-column> <el-table-column label="生产厂家" prop="manufactory" width="150"></el-table-column>
<el-table-column label="供应商" prop="supName" width="150"></el-table-column> <el-table-column label="供应商" prop="supName" width="150"></el-table-column>
</el-table> </el-table>

@ -25,10 +25,10 @@
<el-button-group style="display:flex;"> <el-button-group style="display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" icon="search" @click="createScheduleDialog(1)" <!-- <el-button type="primary" icon="search" @click="createScheduleDialog(1)"-->
v-if="configParms.orderScanFinish==1 || configParms.orderUnReceive==1 || configParms.orderUnCheck==1"> <!-- v-if="configParms.orderScanFinish==1 || configParms.orderUnReceive==1 || configParms.orderUnCheck==1">-->
同步单据 <!-- 同步单据-->
</el-button> <!-- </el-button>-->
<!-- <el-button type="primary" icon="search" @click="createScheduleDialog(2)" <!-- <el-button type="primary" icon="search" @click="createScheduleDialog(2)"
v-if="configParms.typeBus==1||configParms.typeScan==1||configParms.typeThird==1"> v-if="configParms.typeBus==1||configParms.typeScan==1||configParms.typeThird==1">
同步单据类型 同步单据类型
@ -58,13 +58,20 @@
</el-table-column> </el-table-column>
<el-table-column label="开始时间" width="180" prop="startTime" show-overflow-tooltip></el-table-column> <el-table-column label="开始时间" width="180" prop="startTime" show-overflow-tooltip></el-table-column>
<el-table-column label="结束时间" width="180" prop="endTime" show-overflow-tooltip></el-table-column> <el-table-column label="结束时间" width="180" prop="endTime" show-overflow-tooltip></el-table-column>
<el-table-column label="同步文件" prop="cacheFilePath" width="180" show-overflow-tooltip></el-table-column>
<el-table-column label="同步信息" prop="remark" show-overflow-tooltip></el-table-column> <el-table-column label="同步信息" prop="remark" width="180" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" fixed="right" width="160"> <el-table-column label="操作" fixed="right" width="160">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="detailDialog(scope.row.id)">详情
<el-popconfirm @confirm="downFile(scope.row)" confirm-button-text='' cancel-button-text='' class="mr10"
icon="el-icon-info" icon-color="blck" title="是否确认要下载文件?" v-if="scope.row.cacheFilePath">
<el-button type="text" size="small" slot="reference">下载
</el-button> </el-button>
</el-popconfirm>
<!-- <el-button type="text" size="small" @click.native.stop="detailDialog(scope.row.id)">详情-->
<!-- </el-button>-->
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row.id)">删除 <el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row.id)">删除
</el-button> </el-button>
</template> </template>
@ -83,21 +90,21 @@
</template> </template>
<script> <script>
import { import {
filterLog, filterLog,
deleteLog, deleteLog,
createSchedule, createSchedule,
findConfig, findConfig,
updateConfig updateConfig
} from "@/api/sync/spsSyncStatus"; } from "@/api/sync/spsSyncStatus";
import store from "@/store"; import store from "@/store";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
id: null, id: null,
status: "1", status: null,
page: 1, page: 1,
limit: 10, limit: 10,
syncTime: null, syncTime: null,
@ -231,7 +238,8 @@
.then(() => { .then(() => {
this.createSchedule(type); this.createSchedule(type);
}) })
.catch(() => {}); .catch(() => {
});
} else { } else {
this.createSchedule(type); this.createSchedule(type);
} }
@ -284,8 +292,27 @@
this.loading = false; this.loading = false;
}); });
}) })
.catch(() => {}); .catch(() => {
});
},
downFile(rows) {
infoByStatus({
'id': rows.id
}).then(res => {
let blob = new Blob([res])
let fileName = rows.cacheFilePath.substring(rows.cacheFilePath.lastIndexOf('/'))
let link = document.createElement("a")
link.href = window.URL.createObjectURL(blob)
link.download = fileName
link.style.display = 'none'
document.body.appendChild(link)
link.click()
window.URL.revokeObjectURL(link.href)
document.body.removeChild(link)
})
}, },
handleChange(response, files, fileList) { handleChange(response, files, fileList) {
console.log(response); console.log(response);
if (response.code != 20000) { if (response.code != 20000) {
@ -311,7 +338,8 @@
this.configParms = response.data; this.configParms = response.data;
} }
}) })
.catch(() => {}); .catch(() => {
});
}, },
detailDialog(id) { detailDialog(id) {
this.syncVisible = true; this.syncVisible = true;
@ -323,7 +351,8 @@
} }
}, },
mounted() {}, mounted() {
},
components: {}, components: {},
created() { created() {
this.headers = { this.headers = {
@ -334,35 +363,35 @@
this.getList(); this.getList();
this.getConfig(); this.getConfig();
}, },
}; };
</script> </script>
<style> <style>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 10px; margin-top: 10px;
width: 100px; width: 100px;
} }
.text { .text {
font-size: 13px; font-size: 13px;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
} }
.el-row { .el-row {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
.syncInfo { .syncInfo {
font-size: medium; font-size: medium;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
line-height: 25px; line-height: 25px;
} }
</style> </style>

Loading…
Cancel
Save