新增单据
parent
0b9caeb230
commit
79a98e5944
@ -0,0 +1,144 @@
|
||||
function pluralize(time, label) {
|
||||
if (time === 1) {
|
||||
return time + label;
|
||||
}
|
||||
return time + label + "s";
|
||||
}
|
||||
export function timeAgo(time) {
|
||||
const between = Date.now() / 1000 - Number(time);
|
||||
if (between < 3600) {
|
||||
return pluralize(~~(between / 60), " minute");
|
||||
} else if (between < 86400) {
|
||||
return pluralize(~~(between / 3600), " hour");
|
||||
} else {
|
||||
return pluralize(~~(between / 86400), " day");
|
||||
}
|
||||
}
|
||||
|
||||
export function parseTime(time, cFormat) {
|
||||
if (arguments.length === 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if ((time + "").length === 10) {
|
||||
time = +time * 1000;
|
||||
}
|
||||
|
||||
const format = cFormat || "{y}-{m}-{d} {h}:{i}:{s}";
|
||||
let date;
|
||||
if (typeof time === "object") {
|
||||
date = time;
|
||||
} else {
|
||||
date = new Date(parseInt(time));
|
||||
}
|
||||
const formatObj = {
|
||||
y: date.getFullYear(),
|
||||
m: date.getMonth() + 1,
|
||||
d: date.getDate(),
|
||||
h: date.getHours(),
|
||||
i: date.getMinutes(),
|
||||
s: date.getSeconds(),
|
||||
a: date.getDay()
|
||||
};
|
||||
const timeStr = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
|
||||
let value = formatObj[key];
|
||||
if (key === "a")
|
||||
return ["一", "二", "三", "四", "五", "六", "日"][value - 1];
|
||||
if (result.length > 0 && value < 10) {
|
||||
value = "0" + value;
|
||||
}
|
||||
return value || 0;
|
||||
});
|
||||
return timeStr;
|
||||
}
|
||||
export function rTime(date) {
|
||||
var json_date = new Date(date).toJSON();
|
||||
return new Date(new Date(json_date) + 8 * 3600 * 1000)
|
||||
.toISOString()
|
||||
.replace(/T/g, " ")
|
||||
.replace(/\.[\d]{3}Z/, "");
|
||||
}
|
||||
export function formatTime(time, option) {
|
||||
time = +time * 1000;
|
||||
const d = new Date(time);
|
||||
const now = Date.now();
|
||||
|
||||
const diff = (now - d) / 1000;
|
||||
|
||||
if (diff < 30) {
|
||||
return "刚刚";
|
||||
} else if (diff < 3600) {
|
||||
// less 1 hour
|
||||
return Math.ceil(diff / 60) + "分钟前";
|
||||
} else if (diff < 3600 * 24) {
|
||||
return Math.ceil(diff / 3600) + "小时前";
|
||||
} else if (diff < 3600 * 24 * 2) {
|
||||
return "1天前";
|
||||
}
|
||||
if (option) {
|
||||
return parseTime(time, option);
|
||||
} else {
|
||||
return (
|
||||
d.getMonth() +
|
||||
1 +
|
||||
"月" +
|
||||
d.getDate() +
|
||||
"日" +
|
||||
d.getHours() +
|
||||
"时" +
|
||||
d.getMinutes() +
|
||||
"分"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/* 数字 格式化 */
|
||||
export function nFormatter(num, digits) {
|
||||
const si = [
|
||||
{ value: 1e18, symbol: "E" },
|
||||
{ value: 1e15, symbol: "P" },
|
||||
{ value: 1e12, symbol: "T" },
|
||||
{ value: 1e9, symbol: "G" },
|
||||
{ value: 1e6, symbol: "M" },
|
||||
{ value: 1e3, symbol: "k" }
|
||||
];
|
||||
for (let i = 0; i < si.length; i++) {
|
||||
if (num >= si[i].value) {
|
||||
return (
|
||||
(num / si[i].value + 0.1)
|
||||
.toFixed(digits)
|
||||
.replace(/\.0+$|(\.[0-9]*[1-9])0+$/, "$1") + si[i].symbol
|
||||
);
|
||||
}
|
||||
}
|
||||
return num.toString();
|
||||
}
|
||||
|
||||
export function html2Text(val) {
|
||||
const div = document.createElement("div");
|
||||
div.innerHTML = val;
|
||||
return div.textContent || div.innerText;
|
||||
}
|
||||
|
||||
export function toThousandslsFilter(num) {
|
||||
return (+num || 0)
|
||||
.toString()
|
||||
.replace(/^-?\d+/g, m => m.replace(/(?=(?!\b)(\d{3})+$)/g, ","));
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化文件大小
|
||||
* @param value
|
||||
* @returns {*}
|
||||
*/
|
||||
export function renderSize(value) {
|
||||
if (!value || value === null || value === "") {
|
||||
return "";
|
||||
}
|
||||
let unitArr = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
|
||||
let srcsize = parseFloat(value);
|
||||
let index = Math.floor(Math.log(srcsize) / Math.log(1024));
|
||||
let size = srcsize / Math.pow(1024, index);
|
||||
size = size.toFixed(0); // 保留的小数位数
|
||||
return size + unitArr[index];
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "IoCreateOrderBizDetail"
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "IoCreateOrderCodeDetail"
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
@ -0,0 +1,211 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" max-height="350" height="350"
|
||||
:row-style="rowStyle"
|
||||
border
|
||||
ref="multipleTable">
|
||||
<el-table-column
|
||||
type="selection"
|
||||
width="55">
|
||||
</el-table-column>
|
||||
<el-table-column label="序号" type="index" width="55"></el-table-column>
|
||||
<el-table-column
|
||||
label="UDI码"
|
||||
prop="code"
|
||||
width="250"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="生产日期"
|
||||
prop="produceDate"
|
||||
width="120"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="失效日期"
|
||||
prop="expireDate"
|
||||
width="120"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="批次号"
|
||||
prop="batchNo"
|
||||
width="120"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="序列号"
|
||||
prop="serialNo"
|
||||
width="120"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="供应商"
|
||||
prop="supName"
|
||||
width="180"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="扫码数量"
|
||||
prop="count"
|
||||
width="100"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="实际数量"
|
||||
prop="reCount"
|
||||
width="100"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column label="操作" width="180">
|
||||
<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
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="handleUnitClick(scope.row)"
|
||||
>选择供应商
|
||||
</el-button
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="editCode(scope.row)"
|
||||
>编辑
|
||||
</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="block">
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="query.page"
|
||||
:limit.sync="query.limit"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {deleteCodesTempById, errorCodeList} from "@/api/inout/order";
|
||||
|
||||
export default {
|
||||
name: "IoAddCodeDetail",
|
||||
props: {
|
||||
idQuery: {
|
||||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
loading: false,
|
||||
query: {
|
||||
code: "",
|
||||
corpOrderId: "",
|
||||
page: 1,
|
||||
limit: 10,
|
||||
},
|
||||
codeArray: [],
|
||||
total: 0,
|
||||
curRow: null,
|
||||
selectRlVisible: false,
|
||||
dialogTableVisible: false,
|
||||
editCodeVisible: false,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getCodeList() {
|
||||
this.loading = true;
|
||||
this.query.orderId = this.idQuery.id;
|
||||
errorCodeList(this.query) //查找该单号下的所有条码
|
||||
.then((response) => {
|
||||
this.codeArray = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
for (let i = 0; i < this.codeArray.length; i++) {
|
||||
this.codeArray[i].fromType = this.formData.fromType;
|
||||
this.codeArray[i].billType = this.formData.billType;
|
||||
}
|
||||
this.tableSelection();
|
||||
this.loading = false;
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
deleteCode(index, row) {
|
||||
this.$confirm("是否确定移除一个条码?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
}).then(() => {
|
||||
this.loading = true;
|
||||
let tQuery = {
|
||||
id: row.id
|
||||
}
|
||||
deleteCodesTempById(tQuery)
|
||||
.then((response) => {
|
||||
if (response.code === 20000) {
|
||||
this.getCodeList();
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
this.loading = false;
|
||||
});
|
||||
}).catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
bindRl(val) {
|
||||
this.curRow = val;
|
||||
this.selectRlVisible = true;
|
||||
},
|
||||
|
||||
handleUnitClick(row) {
|
||||
this.curRow = row;
|
||||
this.dialogTableVisible = true;
|
||||
},
|
||||
|
||||
editCode(row) {
|
||||
this.editTitle = "编辑条码";
|
||||
this.codeDetail = row;
|
||||
this.editCodeVisible = true;
|
||||
},
|
||||
|
||||
rowStyle({row, rowIndex}) {
|
||||
let rowBackground = {};
|
||||
if (!this.$isNotBlank(row.supId) || !this.$isNotBlank(row.relId)) {
|
||||
rowBackground.color = '#f60303';
|
||||
}
|
||||
return rowBackground;
|
||||
},
|
||||
},
|
||||
created() {
|
||||
|
||||
this.getCodeList();
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
@ -0,0 +1,737 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :model="filterQuery" class="query-form" size="mini" label-width="100px" v-show="showSearch">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="单号:">
|
||||
<el-input v-model="filterQuery.billNo" placeholder="单号:"
|
||||
style="width: 90%"
|
||||
clearable="true"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="出入库类型:">
|
||||
<el-select v-model="filterQuery.mainAction" placeholder="请选择出入库类型" style="width: 90%">
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option label="入库" value="WareHouseIn"></el-option>
|
||||
<el-option label="出库" value="WareHouseOut"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="单据类型:">
|
||||
<el-select v-model="filterQuery.action" placeholder="请选择单据类型"
|
||||
style="width: 90%">
|
||||
<el-option
|
||||
v-for="item in busTypes"
|
||||
:key="item.name"
|
||||
:label="item.name"
|
||||
:value="item.action">
|
||||
<span style="float: left">{{ item.name }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="所属仓库:">
|
||||
<el-select v-model="filterQuery.invWarehouseCode" placeholder="请选择所属仓库" clearable="true"
|
||||
style="width: 90%"
|
||||
@change="subInvChange"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in subInvList"
|
||||
:key="item.name"
|
||||
:label="item.name"
|
||||
:value="item.code">
|
||||
<span style="float: left">{{ item.name }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<div class="top-right-btn">
|
||||
<el-button-group>
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-refresh"
|
||||
@click="onReset"
|
||||
>重置
|
||||
</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
|
||||
>查询
|
||||
</el-button
|
||||
>
|
||||
<el-button type="primary" icon="el-icon-s-unfold" @click="mergesOrders">合并单据</el-button>
|
||||
<el-button type="primary" icon="el-icon-plus" @click="addOrders">新增单据</el-button>
|
||||
<el-button type="primary" icon="el-icon-error" @click="errOrders">异常单据</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
|
||||
@selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55"></el-table-column>
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="扫码单据类型" prop="billTypeName">
|
||||
</el-table-column>
|
||||
<el-table-column label="订单号" prop="id" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="来源订单号" prop="corpOrderId" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="来源" prop="fromType">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ fromTypeMap[scope.row.fromType] }}</span>
|
||||
</template>
|
||||
|
||||
</el-table-column>
|
||||
<el-table-column label="往来单位" prop="fromCorp" width="220">
|
||||
|
||||
</el-table-column>
|
||||
<el-table-column label="当前仓库" prop="invName" width="120">
|
||||
</el-table-column>
|
||||
<el-table-column label="当前分库" prop="subInvName" width="120">
|
||||
</el-table-column>
|
||||
<el-table-column label="所属科室" prop="deptName" width="120" v-if="enableDept">>
|
||||
</el-table-column>
|
||||
|
||||
|
||||
<el-table-column label="创建时间" prop="actDate" show-overflow-tooltip>
|
||||
<template slot-scope="scope">
|
||||
<i class="el-icon-time"></i>
|
||||
<span>{{ scope.row.actDate }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="校验状态" prop="status" width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="(scope.row.status ===-1 ) | statusFilterType">{{
|
||||
checkStatus[scope.row.status]
|
||||
}}
|
||||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="150" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="addOrders(scope.row)"
|
||||
>编辑
|
||||
</el-button
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="deleteDialog(scope.row.id)"
|
||||
>删除
|
||||
</el-button
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
v-if="scope.row.status !== -1"
|
||||
@click.native.stop="onUpload(scope.row.id)"
|
||||
>立即处理
|
||||
</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<el-dialog title="错误信息" :visible.sync="dialogVisible" width="30%">
|
||||
<span>{{ errorDetail }}</span>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="dialogVisible = false"
|
||||
>关 闭</el-button
|
||||
>
|
||||
</span>
|
||||
</el-dialog>
|
||||
<el-dialog
|
||||
title="选择往来单位"
|
||||
:visible.sync="dialogTableVisible"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
width="70%"
|
||||
>
|
||||
<el-form :inline="true" :model="unitquery" class="query-form" size="mini">
|
||||
<el-form-item class="query-form-item">
|
||||
<el-input v-model="unitquery.key" placeholder="搜索"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="search"
|
||||
@click.native.stop="getUnitList()"
|
||||
>查询
|
||||
</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="unitlist"
|
||||
style="width: 100%"
|
||||
@row-click="selectUnit"
|
||||
>
|
||||
<el-table-column
|
||||
label="往来单位ID"
|
||||
prop="erpId"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="往来单位名称"
|
||||
prop="name"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="往来单位简写"
|
||||
prop="spell"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="地址"
|
||||
prop="addr"
|
||||
show-overflow-tooltip
|
||||
></el-table-column>
|
||||
<el-table-column label="状态" prop="status"></el-table-column>
|
||||
<el-table-column label="类型" prop="type"></el-table-column>
|
||||
</el-table>
|
||||
</el-dialog>
|
||||
<el-dialog
|
||||
title="异常订单"
|
||||
:visible.sync="errOrderVisible"
|
||||
width="80%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
>
|
||||
<ioErrorOrder
|
||||
></ioErrorOrder>
|
||||
</el-dialog>
|
||||
<el-dialog
|
||||
title="新增单据"
|
||||
:visible.sync="addOrderVisible"
|
||||
width="75%"
|
||||
append-to-body
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="addOrderVisible"
|
||||
@close='closeDialog'
|
||||
>
|
||||
<addOrder
|
||||
:closeDialog="closeDialog"
|
||||
:idQuery="idQuery"
|
||||
></addOrder>
|
||||
</el-dialog>
|
||||
|
||||
|
||||
<el-dialog
|
||||
title="单号详情"
|
||||
:visible.sync="codeDetailVisible"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
width="80%"
|
||||
v-if="codeDetailVisible"
|
||||
>
|
||||
<codeDetail
|
||||
:idQuery="idQuery"
|
||||
v-on:closeDetailDialog="closeDetailDialog"
|
||||
></codeDetail>
|
||||
</el-dialog>
|
||||
<el-pagination
|
||||
:page-size="filterQuery.limit"
|
||||
@current-change="handleCurrentChange"
|
||||
layout="prev, pager, next"
|
||||
:total="total"
|
||||
:current-page="filterQuery.page"
|
||||
></el-pagination>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
filterOrder,
|
||||
deleteByOrderId,
|
||||
commitOrder,
|
||||
updateUnit, mergeOrder,
|
||||
} from "../../api/inout/order";
|
||||
import {getBasicUnitMaintains} from "../../api/basic/basicUnitMaintain"
|
||||
import draggable from "vuedraggable";
|
||||
// import codeDetail from "./errorCode";
|
||||
// import ioErrorOrder from "./IOErrorOrder";todo
|
||||
import addOrder from "./IoCreateOrder";
|
||||
import store from "../../store";
|
||||
import {filterAllByUser} from "@/api/system/invWarehouse";
|
||||
import {getLocalJoinByUser} from "@/api/basic/busType";
|
||||
import {filterSubByInv} from "@/api/system/invSubWarehouse";
|
||||
import {isBlank} from "@/utils/strUtil";
|
||||
import {selectSysParamByKey} from "@/api/param/systemParamConfig";
|
||||
|
||||
const formJson = {
|
||||
site_id: "",
|
||||
site_name: "",
|
||||
describe: "",
|
||||
ads: [],
|
||||
};
|
||||
|
||||
export default {
|
||||
name: "IoNewOrder",
|
||||
data() {
|
||||
return {
|
||||
|
||||
showSearch: true,
|
||||
filterQuery: {
|
||||
id: "",
|
||||
mainAction: null,
|
||||
action: null,
|
||||
page: 1,
|
||||
status: 10,
|
||||
limit: 10,
|
||||
locStorageCode: this.$store.getters.locInvCode,
|
||||
invWarehouseCode: this.$store.getters.locSubInvCode,
|
||||
},
|
||||
checkStatus: {
|
||||
'-1': "草稿",
|
||||
// 1: "等待处理",
|
||||
1: "等待处理",
|
||||
2: "等待校验",
|
||||
3: "校验异常",
|
||||
4: "校验成功",
|
||||
},
|
||||
curIndex: "",
|
||||
unitquery: {key: "", page: 1, limit: 20},
|
||||
unitlist: [],
|
||||
multipleSelection: [],
|
||||
unitUpdateQuery: {
|
||||
id: "",
|
||||
fromCorpId: "",
|
||||
fromCorp: "",
|
||||
},
|
||||
idQuery: {
|
||||
id: "",
|
||||
},
|
||||
storageList: [],
|
||||
subInvList: [],
|
||||
errOrderVisible: false,
|
||||
list: [],
|
||||
adId: [],
|
||||
adSelectList: [],
|
||||
adList: {},
|
||||
adListNoDataText: "无数据",
|
||||
queryAdIdAsyncLoading: false,
|
||||
codeDetailVisible: false,
|
||||
addOrderVisible: false,
|
||||
total: 0,
|
||||
loading: false,
|
||||
index: null,
|
||||
formName: null,
|
||||
errorDetail: "1111111111111",
|
||||
formMap: {
|
||||
add: "新增",
|
||||
edit: "编辑",
|
||||
},
|
||||
enableDept: false,
|
||||
fromTypeMap: {
|
||||
"1": "UDIMS平台",
|
||||
"2": "网页新增",
|
||||
"3": "pda即时校验",
|
||||
"4": "pda未校验",
|
||||
"5": "pc端扫码精灵",
|
||||
"6": "缺量补录单据",
|
||||
"7": "UDI供应商平台",
|
||||
"8": "平衡补录单据",
|
||||
"10": "手动补单",
|
||||
"11": "仓库盘点"
|
||||
},
|
||||
deleteData: {
|
||||
id: "",
|
||||
status: 10,
|
||||
},
|
||||
dialogTableVisible: false,
|
||||
formLoading: false,
|
||||
dialogVisible: false,
|
||||
formData: formJson,
|
||||
deleteLoading: false,
|
||||
busTypes: [],
|
||||
};
|
||||
},
|
||||
components: {
|
||||
draggable,
|
||||
// codeDetail,
|
||||
addOrder,
|
||||
// ioErrorOrder
|
||||
},
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
status: 10,
|
||||
page: 1,
|
||||
limit: 10,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
onSubmit() {
|
||||
this.loading = true;
|
||||
this.getList();
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
|
||||
handleSizeChange(val) {
|
||||
this.filterQuery.limit = val;
|
||||
this.getList();
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.filterQuery.page = val;
|
||||
this.getList();
|
||||
},
|
||||
handleUnitClick(row) {
|
||||
this.curIndex = row.id;
|
||||
this.dialogTableVisible = true;
|
||||
},
|
||||
closeDetailDialog(val) {
|
||||
this.codeDetailVisible = false;
|
||||
},
|
||||
getActionName(action) {
|
||||
for (let i = 0; i < this.busTypes.length; i++) {
|
||||
if (this.busTypes[i].action === action) {
|
||||
return this.busTypes[i].name;
|
||||
}
|
||||
}
|
||||
},
|
||||
getBusType() {
|
||||
if (this.subInvList.length > 0) {
|
||||
this.filterQuery.locStorageCode = this.subInvList.find(item => item.code == this.filterQuery.invWarehouseCode).parentId
|
||||
}
|
||||
let query = {
|
||||
code: this.filterQuery.invWarehouseCode,
|
||||
enabled: true,
|
||||
};
|
||||
getLocalJoinByUser(query)
|
||||
.then((response) => {
|
||||
this.busTypes = response.data.list || [];
|
||||
this.filterQuery.billAction = this.busTypes[0].action;
|
||||
// this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
getStorage() {
|
||||
this.storageList = [];
|
||||
filterAllByUser()
|
||||
.then((response) => {
|
||||
this.storageList = response.data || [];
|
||||
if (this.storageList.length > 0) {
|
||||
this.getSubInvList();
|
||||
this.getList();
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
getStorageName(code) {
|
||||
for (let i = 0; i < this.storageList.length; i++) {
|
||||
if (this.storageList[i].code === code) {
|
||||
return this.storageList[i].name;
|
||||
}
|
||||
}
|
||||
},
|
||||
getSubStorageName(code) {
|
||||
for (let i = 0; i < this.subInvList.length; i++) {
|
||||
if (this.subInvList[i].code === code) {
|
||||
return this.subInvList[i].name;
|
||||
}
|
||||
}
|
||||
},
|
||||
addOrders(row) {
|
||||
this.idQuery.id = '';
|
||||
this.idQuery.actDate = '';
|
||||
this.idQuery.corpOrderId = '';
|
||||
|
||||
this.idQuery.outChangeEnable = row.outChangeEnable;
|
||||
if (row.id !== null && row.id !== undefined && row.id !== '') {
|
||||
this.idQuery.id = row.id;
|
||||
this.idQuery.actDate = row.actDate;
|
||||
this.idQuery.corpOrderId = row.corpOrderId;
|
||||
this.idQuery.billType = row.action;
|
||||
this.idQuery.locStorageCode = row.locStorageCode;
|
||||
this.idQuery.invWarehouseCode = row.invWarehouseCode;
|
||||
this.idQuery.fromSubInvCode = row.fromSubInvCode;
|
||||
this.idQuery.deptCode = row.deptCode;
|
||||
|
||||
this.idQuery.preCheck = row.preCheck;
|
||||
}
|
||||
this.addOrderVisible = true;
|
||||
this.idQuery.action = row.action;
|
||||
this.idQuery.fromCorp = row.fromCorp;
|
||||
this.idQuery.fromCorpId = row.fromCorpId;
|
||||
this.idQuery.preCheck = row.preCheck;
|
||||
},
|
||||
errOrders() {
|
||||
this.errOrderVisible = true;
|
||||
},
|
||||
closeDialog() {
|
||||
this.addOrderVisible = false;
|
||||
this.addHosOrderVisible = false;
|
||||
this.getList();
|
||||
},
|
||||
getUnitList() {
|
||||
this.loading = true;
|
||||
getBasicUnitMaintains(this.unitquery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.unitlist = response.data.list || [];
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
handleSelectionChange(val) {
|
||||
this.multipleSelection = val;
|
||||
},
|
||||
selectUnit(row) {
|
||||
this.unitUpdateQuery.id = this.curIndex;
|
||||
this.unitUpdateQuery.fromCorp = row.name;
|
||||
this.unitUpdateQuery.fromCorpId = row.unitid;
|
||||
updateUnit(this.unitUpdateQuery)
|
||||
.then((response) => {
|
||||
this.dialogTableVisible = false;
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.dialogTableVisible = false;
|
||||
});
|
||||
},
|
||||
//获取订单列表
|
||||
getList() {
|
||||
this.loading = true;
|
||||
// this.filterQuery.status = -1;
|
||||
this.filterQuery.customerId = store.getters.customerId;
|
||||
// this.filterQuery.status = 1;
|
||||
// this.filterQuery.statusOrOne = -1;
|
||||
if (isBlank(this.filterQuery.locStorageCode)) {
|
||||
this.filterQuery.locStorageCode = this.$store.getters.locInvCode;
|
||||
this.filterQuery.invWarehouseCode = this.$store.getters.locSubInvCode;
|
||||
}
|
||||
|
||||
filterOrder(this.filterQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code === 20000) {
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch((error) => {
|
||||
this.$message.error(error.message)
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
mergesOrders() {
|
||||
let repeatData = this.multipleSelection;
|
||||
if (repeatData.length <= 1) {
|
||||
this.$message.warning("未选择单据!");
|
||||
return;
|
||||
}
|
||||
let orderid = repeatData[0].id;
|
||||
let unit = repeatData[0].fromCorp;
|
||||
let action = repeatData[0].action;
|
||||
let orderList = [];
|
||||
for (let index in repeatData) {
|
||||
if (action !== repeatData[index].action) {
|
||||
this.$message.warning("业务类型不一致!");
|
||||
return;
|
||||
}
|
||||
if (unit !== repeatData[index].fromCorp) {
|
||||
this.$message.warning("往来单位不一致!");
|
||||
return;
|
||||
}
|
||||
orderList.push(repeatData[index].id);
|
||||
}
|
||||
let tquery = {
|
||||
orderList: orderList,
|
||||
type: 2,
|
||||
};
|
||||
|
||||
this.$confirm(
|
||||
"所选择的订单将会合并到订单号为" + orderid + "的订单下",
|
||||
"提示",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
}
|
||||
)
|
||||
.then(() => {
|
||||
mergeOrder(tquery).then((response) => {
|
||||
if (response.code === 20000) {
|
||||
this.getList();
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "合并成功",
|
||||
});
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
deleteOrders(data) {
|
||||
this.loading = true;
|
||||
this.deleteData.id = data;
|
||||
deleteByOrderId(this.deleteData)
|
||||
.then((response) => {
|
||||
|
||||
if (response.code == 20000) {
|
||||
this.getList();
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "删除成功!",
|
||||
});
|
||||
} else if (response.code == 520) {
|
||||
this.$message.error("新增扫码单据列表已不存在该扫码单据!");
|
||||
this.getList();
|
||||
}
|
||||
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
deleteDialog(rowId) {
|
||||
this.$confirm("此操作将永久删除该订单, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
this.deleteOrders(rowId);
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
onUpload(data) {
|
||||
this.loading = true;
|
||||
var idQuery = {
|
||||
orderId: "",
|
||||
};
|
||||
idQuery.orderId = data;
|
||||
commitOrder(idQuery)
|
||||
.then((response) => {
|
||||
if (response.code == 20000) {
|
||||
this.$message.success(response.data);
|
||||
for (let i = 0; i < this.list.length; i++) {
|
||||
if (this.list[i].id === idQuery.orderId) {
|
||||
this.list.splice(i, 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
this.loading = false;
|
||||
} else {
|
||||
this.loading = false
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
handleErrorDetail(poistion) {
|
||||
var mOrder = this.list[poistion];
|
||||
var corpOrderId = mOrder.remark;
|
||||
|
||||
this.errorDetail = mOrder.remark;
|
||||
this.dialogVisible = true;
|
||||
},
|
||||
|
||||
intentDetail(row) {
|
||||
this.codeDetailVisible = true;
|
||||
this.idQuery.id = row.id;
|
||||
|
||||
},
|
||||
invChange() {
|
||||
this.subInvList = [];
|
||||
this.filterQuery.invWarehouseCode = "";
|
||||
let query = {
|
||||
pcode: this.filterQuery.locStorageCode
|
||||
};
|
||||
filterSubByInv(query)
|
||||
.then((response) => {
|
||||
this.subInvList = response.data || [];
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
getSubInvList() {
|
||||
let query = {
|
||||
// pcode: this.filterQuery.locStorageCode
|
||||
filter: 3,
|
||||
};
|
||||
filterSubByInv(query)
|
||||
.then((response) => {
|
||||
this.subInvList = response.data || [];
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
subInvChange() {
|
||||
this.getBusType();
|
||||
},
|
||||
init() {
|
||||
axios.get("./config.json").then(res => {
|
||||
// 基础地址
|
||||
let response = res.data.BASE_URL;
|
||||
this.uploadFileUrl = response + "/udiwms/orders/file/upload";
|
||||
});
|
||||
},
|
||||
},
|
||||
filters: {
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
false: "success",
|
||||
true: "warning",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
document.body.ondrop = function (event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getSubInvList();
|
||||
this.getBusType();
|
||||
let query = this.$route.query;
|
||||
this.filterQuery = Object.assign(this.filterQuery, query);
|
||||
this.filterQuery.limit = parseInt(this.filterQuery.limit);
|
||||
selectSysParamByKey({paramKey: "muti_inv_mode"}).then((res) => {
|
||||
if (res.code === 20000) {
|
||||
if (res.data.paramValue === "0") {
|
||||
this.enableDept = true;
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style type="text/scss" lang="scss">
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue