bug修复,代码备份

master
anthonyywj2 3 years ago
parent d670f5d03f
commit a59805a550

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

@ -92,6 +92,15 @@ export function repeatCheck(query) {
});
}
export function repeatPrintCheck(query) {
return axios({
url: "/warehouse/repeatPrintCheck",
method: "post",
data: query
});
}
export function dlErpStock(query) {
return axios({
url: "/warehouse/dlErpStock",

File diff suppressed because it is too large Load Diff

@ -10,7 +10,7 @@
>
<el-row style="width: 100%">
<el-form-item class="query-form-item">
<el-input v-model="query.billNo" placeholder="单据号"></el-input>
<el-input v-model="query.billNo" placeholder="单据号" clearable></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-select v-model="query.billType" placeholder="请选择业务类型" clearable="true" size="mini">

@ -131,7 +131,7 @@
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="单位"
label="规格型号"
prop="spec"
:show-overflow-tooltip="true"
></el-table-column>

@ -585,7 +585,6 @@ export default {
getList() {
this.loading = true;
this.filterQuery.nameCode = this.curRow.nameCode;
console.log(this.curAction.corpType);
if (this.curAction != null && this.curAction.corpType == 0) {
this.filterQuery.unitFk = this.curRow.fromCorpId;
}

@ -414,7 +414,8 @@ export default {
dialogTableVisible: false,
sitcomScan: false,
selectRlTitle: "绑定产品",
selectUnitTitle: "绑定供应商"
selectUnitTitle: "绑定供应商",
sictomText: "",
};
},
components: {
@ -487,8 +488,10 @@ export default {
}
},
addCode(event) {
this.formData.corpOrderId = this.formData.corpOrderId.trim();
this.actionEnable = true;
this.sictomText = "";
if (event == null) {
} else event.target.select();
this.$refs.inputRef.select();
@ -911,24 +914,29 @@ export default {
event.stopPropagation();
};
var that = this;
let sictomText = "";
var inputer = document.getElementById("inputer");
window.sc = new A.KeyScaner(inputer);//DOM
sc.onInput = function (text) {
console.log("监听掃碼:" + text);
//onInput500ms
if (text.includes("delete")) {
that.formData.code = "";
that.sictomText = "";
return;
}
if (that.sitcomScan) {
sictomText = sictomText+text;
that.formData.code = sictomText;
let tempTxt = text;
let str= tempTxt.replace(/[\r]/g, "");
that.sictomText = that.sictomText + str;
that.formData.code = that.sictomText;
} else {
that.formData.code = text;
}
};
inputer.focus();//divtabindexdocumentBody
},
created() {
this.formData.code = '';

@ -12,18 +12,6 @@
<el-input v-model="filterQuery.id" placeholder="单号"></el-input>
</el-form-item>
<!-- <el-form-item class="query-form-item">-->
<!-- <el-select-->
<!-- v-model="filterQuery.status"-->
<!-- placeholder="校验状态"-->
<!-- >-->
<!-- <el-option label="全部" value=""></el-option>-->
<!-- <el-option label="校验成功" :value="4"></el-option>-->
<!-- <el-option label="校验异常" :value="3"></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item class="query-form-item">
<el-select
v-model="filterQuery.mainAction"
@ -78,7 +66,6 @@
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="onSubmit"></el-button>
<!-- <el-button type="primary" icon="search" @click="mergesOrders"></el-button>-->
</el-button-group>
</el-form-item>
</el-row>
@ -103,11 +90,6 @@
prop="id"
show-overflow-tooltip="true"
></el-table-column>
<!-- <el-table-column
label="来源订单号"
prop="corpOrderId"
:show-overflow-tooltip="true"
></el-table-column> -->
<el-table-column label="来源" prop="fromType">
<template slot-scope="scope">
<span>{{ fromTypeMap[scope.row.fromType] }}</span>
@ -150,27 +132,6 @@
</el-tag>
</template>
</el-table-column>
<!--<el-table-column label="操作" width="150">-->
<!--<template slot-scope="scope">-->
<!--<el-button-->
<!--type="text"-->
<!--size="small"-->
<!--:disabled="scope.row.contrastStatus === null"-->
<!--@click.native.stop="repeatCheckClick(scope.row)"-->
<!--&gt;重新校验-->
<!--</el-button-->
<!--&gt;-->
<!--<el-button-->
<!--type="text"-->
<!--size="small"-->
<!--:disabled="scope.row.contrastStatus !== 0"-->
<!--@click.native.stop="handleErrorDetail(scope.$index)"-->
<!--&gt;校验信息-->
<!--</el-button-->
<!--&gt;-->
<!--</template>-->
<!--</el-table-column>-->
<!-- <el-table-column label="上传状态" prop="exportStatus"></el-table-column> -->
<el-table-column label="操作" width="250">
<template slot-scope="scope">
<el-button
@ -456,21 +417,13 @@ import {
import {updateBindSup} from "../../api/inout/order"
import {
orderDetailPDFFromTemplateCode,
orderDetailPDFFromTemplateFile,
inspectionOrderDetailPDFFromTemplateCode,
inspectionOrderDetailPDFFromTemplateFile
} from "../../api/itextpdf/itextpdf";
import {repeatCheck, repeatPrintCheck} from "../../api/inout/erpOrder";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import draggable from "vuedraggable";
import {saveAs} from "file-saver";
import codeDetail from "./IOFinishCode";
import store from "../../store";
import selectErpOrder from "./DialogSelectErpOrder";
import selectRlDialog from "./DialogSelectRl";
import {getBussinessType} from "../../api/basic/bussinessType";
import {filterAllByUser} from "@/api/basic/invWarehouse";
import {getLocalJoinByUser} from "@/api/basic/busLocalType";

@ -261,7 +261,7 @@ import {
import draggable from "vuedraggable";
import {saveAs} from "file-saver";
import codeDetail from "./IONewCode";
import codeDetail from "./errorCode";
import dialogSelectInvStorage from "./DialogSelectInvStorage";
import addOrder from "./IOAddOrder";
import store from "../../store";

@ -40,9 +40,6 @@
<span>{{ scope.row.actDate }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="操作员" prop="actor" fixed>
<el-button type="text" size="small" @click.native.stop="onDelete(scope.$index)">删除</el-button>
</el-table-column>-->
</el-table>
<el-pagination

@ -0,0 +1,334 @@
<template>
<div>
<el-form :inline="true" :model="query" class="query-form" size="mini">
<el-form-item class="query-form-item">
<el-input v-model="query.code" placeholder="搜索"></el-input>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="search" @click="onSubmit"
>查询
</el-button
>
<el-button type="primary" icon="search" @click="deleteDialog"
>删除
</el-button
>
</el-button-group>
</el-form-item>
</el-form>
<el-table
v-loading="loading"
:data="codeArry"
style="width: 100%"
ref="multipleTable"
:row-style="rowStyle"
tooltip-effect="dark"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index" fixed></el-table-column>
<!-- <el-table-column label="ID" prop="id" fixed></el-table-column> -->
<el-table-column label="条码" prop="code" fixed></el-table-column>
<el-table-column
label="供应商"
prop="supId"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="扫码数量"
prop="count"
width="220"
show-overflow-tooltip
></el-table-column>
<!-- <el-table-column label="创建时间" prop="actDate">-->
<!-- <template slot-scope="scope">-->
<!-- <i class="el-icon-time"></i>-->
<!-- <span>{{ scope.row.actDate }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="操作" fixed="right" width="250">
<template slot-scope="scope">
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- @click.native.stop="deleteCode(scope.$index, scope.row)"-->
<!-- >删除-->
<!-- </el-button-->
<!-- >-->
<el-button
type="text"
size="small"
@click.native.stop="bindRl(scope.row)"
>选择产品
</el-button
>
<!-- :disabled="scope.row.relId != null "-->
<el-button
type="text"
size="small"
@click.native.stop="handleUnitClick(scope.row)"
>选择供应商
</el-button
>
<!-- :disabled=" scope.row.supId !=null"-->
</template>
</el-table-column>
</el-table>
<el-pagination
:page-size="query.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
></el-pagination>
<el-dialog
title="选择供应商"
:visible.sync="dialogTableVisible"
v-if="dialogTableVisible"
width="70%"
append-to-body
>
<DialogSelectUnit
:codeId="curRow"
v-on:selectSupUnit="selectSupUnit"
v-on:closeBindDialog="closeBindDialog"
></DialogSelectUnit>
</el-dialog>
<el-dialog
title="绑定产品ID"
:visible.sync="selectRlVisible"
width="80%"
v-if="selectRlVisible"
append-to-body
>
<selectRlDialog
:curRow="curRow"
v-on:selectBindRl="selectBindRl"
v-on:closeBindDialog="closeBindDialog"
></selectRlDialog>
</el-dialog>
</div>
</template>
<script>
import {
orderList,
errorCodeList,
deleteCodes, updateCodeBindSup,
} from "../../api/inout/order";
import draggable from "vuedraggable";
import DialogSelectUnit from "./DialogSelectUnit";
import selectRlDialog from "./DialogSelectRl";
export default {
name: "idQuery",
props: {
idQuery: {
type: Object,
required: true,
},
},
data() {
return {
query: {
code: "",
corpOrderId: "",
page: 1,
limit: 20,
},
codeArry: [],
total: 0,
loading: true,
index: null,
formLoading: false,
formVisible: false,
deleteLoading: false,
orderNo: null,
curRow: null,
multipleSelection: [],
selectRlVisible: false,
dialogTableVisible: false,
};
},
components: {
draggable, DialogSelectUnit, selectRlDialog
},
methods: {
handleSelectionChange(val) {
console.log(val);
this.multipleSelection = val;
},
onReset() {
this.$router.push({
path: "",
});
this.query = {
code: "",
corpOrderId: "",
page: 1,
limit: 20,
};
this.getCodeList();
},
onSubmit() {
this.$router.push({
path: "",
query: this.query,
});
this.getCodeList();
},
handleSizeChange(val) {
this.query.limit = val;
this.getCodeList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
},
deleteDialog() {
this.$confirm("是否删除所选条码?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.onDelete();
})
.catch(() => {
});
},
onDelete() {
var selectData = this.multipleSelection;
var codeList = [];
selectData.forEach((obj, index) => {
codeList.push(obj.id);
});
var tquery = {
codes: codeList,
};
deleteCodes(tquery).then((response) => {
this.getCodeList();
this.$message({
type: "success",
message: "删除成功!",
});
});
},
getCodeList() {
this.loading = true;
this.query.orderId = this.idQuery.id;
console.log(this.idQuery.id)
errorCodeList(this.query) //
.then((response) => {
this.loading = false;
this.codeArry = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
intentBack() {
// this.$router.push({path:'../readme/detail',query:{id:row.corpOrderId}});
this.$router.go(-1);
},
//
bindRl(val) {
this.curRow = val;
this.selectRlVisible = true;
},
handleUnitClick(row) {
this.curRow = row;
this.dialogTableVisible = true;
},
selectSupUnit(row) {
let query = {
id: this.curRow.id,
supId: row.erpId,
};
console.log("row.erpId = " + row.erpId);
updateCodeBindSup(query).then((response) => {
if (response.code == 20000) {
this.$message.success("绑定成功");
this.idQuery.id = this.curRow.orderId;
this.getCodeList();
} else {
this.$message.error(response.message);
}
}).catch(() => {
});
},
selectBindRl(row) {
let query = {
id: this.curRow.id,
relId: row.id,
};
console.log("row.relId = " + row.id);
updateCodeBindSup(query).then((response) => {
if (response.code == 20000) {
this.$message.success("绑定成功");
this.idQuery.id = this.curRow.orderId;
this.getCodeList();
} else {
this.$message.error(response.message);
}
}).catch(() => {
});
},
closeBindDialog(val) {
console.log("closeBindDialog" + val);
this.selectRlVisible = false;
this.dialogTableVisible = false;
},
rowStyle({row}) {
let rowBackground = {};
console.log(row);
if (row.supId == null || row.relId == null) {
rowBackground.color = '#f60303';
}
return rowBackground;
},
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
//
let query = this.$route.query;
this.orderNo = query.id;
this.query = Object.assign(this.query, query);
this.query.limit = parseInt(this.query.limit);
this.query.corpOrderId = query.id;
//
this.getCodeList();
},
};
</script>
<style type="text/scss" lang="scss">
</style>
Loading…
Cancel
Save