|
|
|
@ -43,14 +43,6 @@
|
|
|
|
|
<span>{{ scope.row.createTime }}</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">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
@ -403,7 +395,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
deleteByOrderId,
|
|
|
|
|
filterOrderTrace, updateOrderInfo
|
|
|
|
|
filterOrderTrace, updateOrderInfo, deleteInvByBillNo
|
|
|
|
|
} from "../../api/inout/order";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {getBizDetailList} from "@/api/inout/orderDetailBiz";
|
|
|
|
@ -565,22 +557,6 @@ export default {
|
|
|
|
|
this.list = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
deleteOrders(data) {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.deleteData.billNo = data.billNo;
|
|
|
|
|
deleteByOrderId(this.deleteData)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$message({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "删除成功!",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
deleteAllOrder() {
|
|
|
|
|
if (this.list.length > 0) {
|
|
|
|
|
this.$confirm("是否确认删除此单据和所有关联单据?", "提示", {
|
|
|
|
@ -588,7 +564,22 @@ export default {
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
}).then(() => {
|
|
|
|
|
//TODO 待完善删除全部单据接口
|
|
|
|
|
let billNos = [];
|
|
|
|
|
this.list.forEach(item => {
|
|
|
|
|
billNos.push(item.billNo);
|
|
|
|
|
});
|
|
|
|
|
let params = {
|
|
|
|
|
billNos: billNos
|
|
|
|
|
};
|
|
|
|
|
deleteInvByBillNo(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("删除成功");
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("删除失败");
|
|
|
|
|
})
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -631,7 +622,16 @@ export default {
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
//TODO 待完善删除单条单据接口
|
|
|
|
|
let query = {billNo: row.billNo};
|
|
|
|
|
deleteInvByBillNo(query).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("修改成功");
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|