中继服务,第三方接口,批次号校验

master
anthonyywj2 3 years ago
parent 9e75bf1971
commit d670f5d03f

@ -1,6 +1,6 @@
{ {
"UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/", "UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/",
"BASE_URL":"http://192.168.0.109:9991/", "BASE_URL":"http://139.9.178.73:8080/UDI_WMS_MC/",
"SERVER_IP": "http://192.168.0.109:9991/", "SERVER_IP": "http://139.9.178.73:8080/",
"WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/" "WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/"
} }

@ -43,3 +43,24 @@ export function updateDetailBasicThirdSys(query) {
} }
export function filterBusTypeDetail(query) {
return axios({
url: "/udiwms/basic/thirdsys/filterBusTypeDetail",
method: "get",
params: query
});
}
export function saveBusTypeDetail(query) {
return axios({
url: "/udiwms/basic/thirdsys/saveBusTypeDetail",
method: "post",
data: query
});
}

@ -22,3 +22,11 @@ export function insertBussinessType(query) {
data: query data: query
}); });
} }
export function downloadBussinessType(query) {
return axios({
url: "/udiwms/originBusType/download",
method: "post",
data: query
});
}

@ -83,8 +83,8 @@
</el-card> </el-card>
<el-card class="el-card"> <el-card class="el-card">
<el-table v-loading="loading" :data="detailList" style="width: 100%"
<el-table v-loading="loading" :data="detailList" style="width: 100%"> @current-change="handleBustypeChange">
<el-table-column label="序号" type="index" show-overflow-tooltip="true"></el-table-column> <el-table-column label="序号" type="index" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="接口名称" prop="name" show-overflow-tooltip="true"></el-table-column> <el-table-column label="接口名称" prop="name" show-overflow-tooltip="true"></el-table-column>
@ -148,9 +148,49 @@
></el-pagination> ></el-pagination>
</el-card>
<el-card class="el-card">
<el-table v-loading="busTypeLoading" :data="busTypeList" style="width: 100%">
<el-table-column label="序号" type="index" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="单据类型" prop="name" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="单据类型代码" prop="code">
</el-table-column>
<el-table-column label="接口地址" prop="url" width="400" show-overflow-tooltip>
<template slot-scope="scope">
<el-input :disabled="scope.$index !== currentCheckIndex" v-model="scope.row.url"
placeholder="请输入"></el-input>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="150" prop="price" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click="handleEdit(scope.$index, scope.row)"
>编辑
</el-button>
<el-button
type="text"
size="small"
@click="handleSave(scope.$index, scope.row)"
>保存
</el-button>
</template>
</el-table-column>
</el-table>
<div style="margin-top: 18px ; color: #F71616;"> <div style="margin-top: 18px ; color: #F71616;">
<span>重要提示本页功能仅供技术提供方修改&nbsp;</span> <span>重要提示本页功能仅供技术提供方修改&nbsp;</span>
</div> </div>
</el-card> </el-card>
</div> </div>
@ -158,7 +198,7 @@
<script> <script>
import { import {
getBasicThirdSys, getBasicThirdSys,
updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys, filterBusTypeDetail, saveBusTypeDetail
} from "../../api/basic/basicThirdSys"; } from "../../api/basic/basicThirdSys";
import modifyDialog from "./BasicThirdSysModify"; import modifyDialog from "./BasicThirdSysModify";
@ -176,9 +216,11 @@
}, },
modifyDialogVisible: false, modifyDialogVisible: false,
modifyDetailDialogVisible: false, modifyDetailDialogVisible: false,
modifyBusYypeDialogVisible: false,
list: [], list: [],
inputQuery: null, inputQuery: null,
inputDetailQuery: null, inputDetailQuery: null,
inputBusTypeQuery: null,
enableMap: { enableMap: {
true: "是", true: "是",
false: "否", false: "否",
@ -190,7 +232,11 @@
3: "接口本地缓存" 3: "接口本地缓存"
}, },
detailList: null, detailList: null,
busTypeList: [],
total: 0, total: 0,
loading: false,
busTypeLoading:false,
currentCheckIndex: -1,
}; };
}, },
@ -211,10 +257,14 @@
cancelDialog() { cancelDialog() {
this.modifyDialogVisible = false; this.modifyDialogVisible = false;
this.modifyDetailDialogVisible = false; this.modifyDetailDialogVisible = false;
this.modifyBusYypeDialogVisible = false;
}, },
handleCurrentChange(row) { handleCurrentChange(row) {
this.getDetailList(row); this.getDetailList(row);
}, },
handleBustypeChange(row) {
this.getBustyList(row);
},
getList() { getList() {
this.loading = true; this.loading = true;
getBasicThirdSys(this.filterQuery) getBasicThirdSys(this.filterQuery)
@ -253,6 +303,31 @@
}); });
}, },
getBustyList(row) {
let query = {
thirdSysFk: row.thirdSysFk,
type: 0,
};
if (row.key == "orderQueryUrl") {
query.type = 1;
} else if (row.key == "orderSubmitUrl") {
query.type = 2;
} else {
this.busTypeList = [];
return;
}
this.busTypeLoading = true;
filterBusTypeDetail(query)
.then((response) => {
this.busTypeLoading = false;
this.busTypeList = response.data.list || [];
})
.catch(() => {
this.busTypeLoading = false;
this.busTypeList = [];
});
},
onModifySubmit() { onModifySubmit() {
updateBasicThirdSys(this.inputQuery) updateBasicThirdSys(this.inputQuery)
@ -300,6 +375,20 @@
this.modifyDetailDialogVisible = true; this.modifyDetailDialogVisible = true;
this.inputDetailQuery = row; this.inputDetailQuery = row;
}, },
handleEdit(index, row) {
this.currentCheckIndex = index;
},
handleSave(index, row) {
this.currentCheckIndex = -1;
saveBusTypeDetail(row).then((res) => {
if (res.code == 20000) {
this.$message.success(res.data);
}
})
},
}, },
components: { components: {
modifyDialog, modifyDetailDialog modifyDialog, modifyDetailDialog

@ -18,10 +18,24 @@
<!-- <el-option label="未启用" value="0"></el-option>--> <!-- <el-option label="未启用" value="0"></el-option>-->
<!-- </el-select>--> <!-- </el-select>-->
<!-- </el-form-item>--> <!-- </el-form-item>-->
<el-form-item class="query-form-item">
<el-select v-model="filterQuery.thirdSys" placeholder="请选择第三方系统" @change="thirdSysChange">
<el-option
v-for="item in thirdSys"
:key="item.value"
:label="item.thirdName"
:value="item.thirdId">
<span style="float: left">{{ item.thirdName }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span>
</el-option>
</el-select>
</el-form-item>
<el-form-item> <el-form-item>
<el-button-group style="margin-left: 10px;display:flex;"> <el-button-group style="margin-left: 10px;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="updateDownload"></el-button>
<!-- <el-upload--> <!-- <el-upload-->
<!-- :action="uploadFileUrl"--> <!-- :action="uploadFileUrl"-->
<!-- multiple--> <!-- multiple-->
@ -49,7 +63,7 @@
<!-- <span>{{ enableMap[scope.row.enable] }}</span>--> <!-- <span>{{ enableMap[scope.row.enable] }}</span>-->
<!-- </template>--> <!-- </template>-->
<!-- </el-table-column>--> <!-- </el-table-column>-->
<el-table-column label="第三方系统" prop="thirdSysName" ></el-table-column> <el-table-column label="第三方系统" prop="thirdSys"></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="操作" width="100" fixed="right"> <el-table-column label="操作" width="100" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
@ -118,11 +132,12 @@
import { import {
getOriginBusType, getOriginBusType,
updateBussinessType, updateBussinessType,
insertBussinessType, insertBussinessType, downloadBussinessType
} from "../../api/basic/busOriginType"; } from "../../api/basic/busOriginType";
import modifyDialog from "./BussinessTypeThirdModify"; import modifyDialog from "./BussinessTypeThirdModify";
import axios from "axios"; import axios from "axios";
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
export default { export default {
data() { data() {
@ -148,10 +163,11 @@ export default {
true: "是", true: "是",
false: "否", false: "否",
}, },
thirdSys: [],
total: 0, total: 0,
multipleSelection: [], multipleSelection: [],
uploadFileUrl: null, uploadFileUrl: null,
loading: false,
}; };
}, },
@ -161,6 +177,7 @@ export default {
path: "", path: "",
}); });
this.filterQuery = { this.filterQuery = {
thirdSys: "thirdId",
name: null, name: null,
enable: null, enable: null,
page: 1, page: 1,
@ -187,6 +204,33 @@ export default {
this.total = 0; this.total = 0;
}); });
}, },
getBasicThirdSys() {
let query = {
enabled: true,
};
getBasicThirdSys(query)
.then((response) => {
this.thirdSys = response.data.list || [];
this.filterQuery.thirdSys = this.thirdSys[0].thirdId;
})
.catch(() => {
this.loading = false;
this.list = [];
});
},
updateDownload() {
let query = {
thirdSys: this.filterQuery.thirdSys,
}
downloadBussinessType(query)
.then((response) => {
this.loading = false;
this.getList();
})
.catch(() => {
this.loading = false;
});
},
handleCurrentChange(val) { handleCurrentChange(val) {
this.filterQuery.page = val; this.filterQuery.page = val;
this.getList(); this.getList();
@ -244,23 +288,10 @@ export default {
}); });
}, },
deleteOrders(data) { thirdSysChange() {
this.loading = true; this.getList();
let tquery = {
id: data.id + "",
};
// deleteBussinessType(tquery)
// .then((response) => {
// this.getList();
// this.$message({
// type: "success",
// message: "",
// });
// })
// .catch(() => {
// });
}, },
init() { init() {
axios.get("./config.json").then(res => { axios.get("./config.json").then(res => {
// //
@ -286,6 +317,7 @@ export default {
}, },
created() { created() {
this.init(); this.init();
this.getBasicThirdSys();
this.getList(); this.getList();
}, },

@ -158,7 +158,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="scope.row.thirdId == null || scope.row.thirdId == '' || scope.row.flbm!=null" :disabled="scope.row.originUuid != null"
@click.native.stop="intentSelectUdi(scope.row)" @click.native.stop="intentSelectUdi(scope.row)"
>关联DI >关联DI
</el-button> </el-button>
@ -697,39 +697,24 @@
</el-row> </el-row>
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="10" class="el-col"> <el-col :span="24" class="el-col">
</el-col> <div style="margin-top: 18px;margin-bottom: 18px">
<el-col :span="4" class="el-col"> <el-checkbox v-model="checked" class=""
<el-form-item prop="name">
<el-checkbox v-model="checked" class="text item itemTag"
:disabled="!isUseDyCheck" :disabled="!isUseDyCheck"
>以使用单元数量入库 >以使用单元数量入库
</el-checkbox> </el-checkbox>
</el-form-item> <el-checkbox v-model="editQuery.isDisable" class=""
</el-col>
<!-- <el-col :span="3" class="el-col">-->
<!-- <el-form-item prop="name">-->
<!-- <el-checkbox v-model="editQuery.isLock" class="text item itemTag"-->
<!-- >是否锁定-->
<!-- </el-checkbox>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="3" class="el-col">
<el-form-item prop="name">
<el-checkbox v-model="editQuery.isDisable" class="text item itemTag"
@change="diableChange" @change="diableChange"
>是否禁用 >是否禁用
</el-checkbox> </el-checkbox>
</el-form-item> <el-checkbox v-model="editQuery.isAdavence" class=""
</el-col>
<el-col :span="3" class="el-col">
<el-form-item prop="name">
<el-checkbox v-model="editQuery.isAdavence" class="text item itemTag"
>是否寄售 >是否寄售
</el-checkbox> </el-checkbox>
</el-form-item> <el-checkbox v-model="editQuery.allowNoBatch" class=""
>是否允许无批次号扫码
</el-checkbox>
</div>
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
@ -859,6 +844,7 @@ export default {
isUseDy: false, isUseDy: false,
isLock: null, isLock: null,
isAdavence: null, isAdavence: null,
allowNoBatch:null,
}, },
defaultSys: null, defaultSys: null,
isImport: false, isImport: false,

@ -576,8 +576,10 @@ export default {
} else { } else {
for (let i = 0; i < this.codeArray.length; i++) { for (let i = 0; i < this.codeArray.length; i++) {
if (this.$isBlank(this.codeArray[i].batchNo)) { if (this.$isBlank(this.codeArray[i].batchNo)) {
if (!this.codeArray[i].allowNoBatch) {
return this.$message.error('批次号不能为空'); return this.$message.error('批次号不能为空');
} }
}
if (this.$isBlank(this.codeArray[i].productDate) && this.$isBlank(this.codeArray[i].expireDate)) { if (this.$isBlank(this.codeArray[i].productDate) && this.$isBlank(this.codeArray[i].expireDate)) {
return this.$message.error('生产日期与失效日期不能全部为空'); return this.$message.error('生产日期与失效日期不能全部为空');
} }

@ -644,8 +644,10 @@ export default {
return this.$message.error('单据数量不能为0'); return this.$message.error('单据数量不能为0');
} }
if (this.$isBlank(this.codeArray[i].batchNo)) { if (this.$isBlank(this.codeArray[i].batchNo)) {
if (!this.codeArray[i].allowNoBatch) {
return this.$message.error('批次号不能为空'); return this.$message.error('批次号不能为空');
} }
}
if (this.$isBlank(this.codeArray[i].productDate) && this.$isBlank(this.codeArray[i].expireDate)) { if (this.$isBlank(this.codeArray[i].productDate) && this.$isBlank(this.codeArray[i].expireDate)) {
return this.$message.error('生产日期与失效日期不能全部为空'); return this.$message.error('生产日期与失效日期不能全部为空');
} }

@ -451,29 +451,21 @@
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col"> <el-col :span="24" class="el-col">
</el-col> <div style="margin-top: 18px;margin-bottom: 18px">
<el-col :span="4" class="el-col"> <el-checkbox v-model="checked"
<el-form-item prop="name">
<el-checkbox v-model="checked" class="text item itemTag"
:disabled="!isUseDyCheck"
>以使用单元数量入库 >以使用单元数量入库
</el-checkbox> </el-checkbox>
</el-form-item> <el-checkbox v-model="editQuery.isDisable"
</el-col>
<el-col :span="3" class="el-col">
<el-form-item prop="name">
<el-checkbox v-model="editQuery.isLock" class="text item itemTag" :disabled="true"
>是否锁定
</el-checkbox>
</el-form-item>
</el-col>
<el-col :span="3" class="el-col">
<el-form-item prop="name">
<el-checkbox v-model="editQuery.isDisable" class="text item itemTag" :disabled="true"
>是否禁用 >是否禁用
</el-checkbox> </el-checkbox>
</el-form-item> <el-checkbox v-model="editQuery.isAdavence"
>是否寄售
</el-checkbox>
<el-checkbox v-model="editQuery.allowNoBatch"
>是否允许无批次号扫码
</el-checkbox>
</div>
</el-col> </el-col>
</el-row> </el-row>

@ -911,6 +911,7 @@ export default {
event.stopPropagation(); event.stopPropagation();
}; };
var that = this; var that = this;
let sictomText = "";
var inputer = document.getElementById("inputer"); var inputer = document.getElementById("inputer");
window.sc = new A.KeyScaner(inputer);//DOM window.sc = new A.KeyScaner(inputer);//DOM
sc.onInput = function (text) { sc.onInput = function (text) {
@ -920,7 +921,8 @@ export default {
return; return;
} }
if (that.sitcomScan) { if (that.sitcomScan) {
that.formData.code = that.formData.code; sictomText = sictomText+text;
that.formData.code = sictomText;
} else { } else {
that.formData.code = text; that.formData.code = text;
} }

@ -557,6 +557,7 @@ export default {
}); });
let tquery = { let tquery = {
orderList: orderList, orderList: orderList,
type: 1,
}; };
this.$confirm( this.$confirm(

@ -566,6 +566,7 @@ export default {
}); });
let tquery = { let tquery = {
orderList: orderList, orderList: orderList,
type: 2,
}; };
this.$confirm( this.$confirm(

Loading…
Cancel
Save