Browse Source

修改出库单子页面时间bug

branch_ccpg_220107
xunyu.guo 3 years ago
parent
commit
1cd15c45e8
  1. 15
      vue/src/views/ux/billManage/kanbanOutOrder/detail.vue
  2. 15
      vue/src/views/ux/billManage/kanbanWithOutOrder/detail.vue
  3. 15
      vue/src/views/ux/billManage/sparepartOutOrder/detail.vue
  4. 14
      vue/src/views/ux/billManage/vwOutOrder/detail.vue
  5. 17
      vue/src/views/ux/vw/dataInput/hq_f_outorder/detail.vue
  6. 20
      vue/src/views/ux/vw/dataInput/hq_f_outorder_chickout/detail.vue
  7. 169
      vue/src/views/ux/vw/dataInput/hq_h_checkout/detail.vue
  8. 19
      vue/src/views/ux/vw/dataInput/hq_h_outorder/detail.vue
  9. 19
      vue/src/views/ux/vw/dataInput/hq_m_checkout/detail.vue
  10. 19
      vue/src/views/ux/vw/dataInput/hq_m_outorder/detail.vue
  11. 18
      vue/src/views/ux/vw/dataInput/hq_y_outorder/detail.vue

15
vue/src/views/ux/billManage/kanbanOutOrder/detail.vue

@ -127,7 +127,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -384,6 +384,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -405,13 +414,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleDelete(row){ handleDelete(row){

15
vue/src/views/ux/billManage/kanbanWithOutOrder/detail.vue

@ -127,7 +127,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -381,6 +381,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -402,13 +411,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
// handleDelete(row){ // handleDelete(row){

15
vue/src/views/ux/billManage/sparepartOutOrder/detail.vue

@ -127,7 +127,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -384,6 +384,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -405,13 +414,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleDelete(row){ handleDelete(row){

14
vue/src/views/ux/billManage/vwOutOrder/detail.vue

@ -127,7 +127,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -385,6 +385,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -404,12 +413,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleCreateBills_old(row) { handleCreateBills_old(row) {

17
vue/src/views/ux/vw/dataInput/hq_f_outorder/detail.vue

@ -127,7 +127,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -392,6 +392,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -402,7 +411,7 @@ export default {
this.$axios this.$axios
.posts( .posts(
"/api/settleaccount/wmsHQFSharePartoutput/WmsSharePartOutPut-Pass", "/api/settleaccount/WMSHQFKanbanoutput/WmsHQFKanbanOutPut-Pass",
this.listOutPutQuery this.listOutPutQuery
) )
.then((response) => { .then((response) => {
@ -413,13 +422,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleDelete(row){ handleDelete(row){

20
vue/src/views/ux/vw/dataInput/hq_f_outorder_chickout/detail.vue

@ -144,7 +144,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -401,6 +401,10 @@ export default {
}, },
print() { print() {
this.dialogFormVisible = true; this.dialogFormVisible = true;
},
handleCreateBillsEnd(row) {
this.dialogFormVisible = false;
this.getList();
}, },
// //
handleCreateBills(row) { handleCreateBills(row) {
@ -409,6 +413,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -419,7 +432,7 @@ export default {
this.$axios this.$axios
.posts( .posts(
"/api/settleaccount/WMSHQFKanbanoutput/WmsHQFKanbanOutPut-Pass", "/api/settleaccount/wmsHQFSharePartoutput/WmsSharePartOutPut-Pass",
this.listOutPutQuery this.listOutPutQuery
) )
.then((response) => { .then((response) => {
@ -430,12 +443,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleDelete(row) { handleDelete(row) {

169
vue/src/views/ux/vw/dataInput/hq_h_checkout/detail.vue

@ -101,19 +101,21 @@
{{ scope.column.label }} {{ scope.column.label }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column prop="OutPutQty" label="出库数量" width="100">
prop="OutPutQty" <template slot-scope="scope">
label="出库数量" <el-input
width="100"> size="small"
<template slot-scope="scope"> v-model="scope.row.deliverytype"
<el-input size="small" v-model="scope.row.deliverytype" @change="handleEdit(scope.$index, scope.row)"></el-input> @change="handleEdit(scope.$index, scope.row)"
</template> ></el-input>
</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="state" prop="state"
:formatter="fieldFormatter" :formatter="fieldFormatter"
label="状态" label="状态"
width="100"> width="100"
>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="table-footer"> <div class="table-footer">
@ -133,7 +135,7 @@
:title="formTitle" :title="formTitle"
width="700px" width="700px"
> >
<el-form <el-form
ref="accountDatelist" ref="accountDatelist"
:inline="true" :inline="true"
:model="accountDatelist" :model="accountDatelist"
@ -141,7 +143,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -246,7 +248,7 @@ export default {
billNum: "", billNum: "",
accountDate: "", accountDate: "",
}, },
listDeleteQuery: { listDeleteQuery: {
billNum: "", billNum: "",
}, },
page: 1, page: 1,
@ -397,6 +399,11 @@ export default {
}, },
print() { print() {
this.dialogFormVisible = true; this.dialogFormVisible = true;
//this.getList();
},
handleCreateBillsEnd(row) {
this.dialogFormVisible = false;
this.getList();
}, },
// //
handleCreateBills(row) { handleCreateBills(row) {
@ -405,77 +412,93 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist != "") { //debugger
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; if (this.accountDatelist.accountDate == "") {
} this.$message({
//this.listOutPutQuery.accountDate = this.accountDatelist; message: "请选择日期!",
console.log( type: "warning",
"未选择时全部确认出库条件:" + JSON.stringify(this.listOutPutQuery) });
); this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
}
//this.listOutPutQuery.accountDate = this.accountDatelist;
console.log(
"未选择时全部确认出库条件:" + JSON.stringify(this.listOutPutQuery)
);
this.$axios this.$axios
.posts( .posts(
"/api/settleaccount/wmsjitoutput/WmsJitOutPut-Pass", "/api/settleaccount/WmsHQHSharePartoutput/WmsSharePartOutPut-Pass",
this.listOutPutQuery this.listOutPutQuery
) )
.then((response) => { .then((response) => {
const index = this.list.indexOf(row); const index = this.list.indexOf(row);
this.$notify({ this.$notify({
title: "成功", title: "成功",
message: "生成成功", message: "生成成功",
type: "success", type: "success",
duration: 2000, duration: 2000,
});
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList();
this.listLoading = false;
})
.catch(() => {
this.listLoading = false;
}); });
this.getList(); }
this.listLoading = false;
})
.catch(() => {
this.listLoading = false;
});
}, },
// //
handleDelete(row){ handleDelete(row) {
var params = []; var params = [];
let myalert = ""; //使 let myalert = ""; //使
if (row) { if (row) {
// //
params.push(row.id); params.push(row.id);
myalert = row.name; myalert = row.name;
} else { } else {
// //
this.multipleSelection.forEach((element) => { this.multipleSelection.forEach((element) => {
let id = element.id; let id = element.id;
params.push(id); params.push(id);
}); });
myalert = "选中项"; myalert = "选中项";
} }
this.listDeleteQuery.billNum = this.listQuery.billNum ; this.listDeleteQuery.billNum = this.listQuery.billNum;
console.log("单据号:" + JSON.stringify(this.listDeleteQuery)); console.log("单据号:" + JSON.stringify(this.listDeleteQuery));
this.$confirm("是否删除" + myalert + "?", "提示", { this.$confirm("是否删除" + myalert + "?", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
}) })
.then(() => { .then(() => {
this.$axios this.$axios
.posts("/api/settleaccount/WmsHQHSharePartoutput/WmsOutPutDelete", this.listDeleteQuery) .posts(
.then((response) => { "/api/settleaccount/WmsHQHSharePartoutput/WmsOutPutDelete",
const index = this.list.indexOf(row); this.listDeleteQuery
this.$notify({ )
title: "成功", .then((response) => {
message: "删除成功", const index = this.list.indexOf(row);
type: "success", this.$notify({
duration: 2000, title: "成功",
}); message: "删除成功",
this.getList(); type: "success",
duration: 2000,
}); });
}) this.getList();
.catch(() => {
this.$message({
type: "info",
message: "已取消操作",
}); });
})
.catch(() => {
this.$message({
type: "info",
message: "已取消操作",
}); });
});
}, },
/** 刷新列表 */ /** 刷新列表 */
handleHandle(data) { handleHandle(data) {

19
vue/src/views/ux/vw/dataInput/hq_h_outorder/detail.vue

@ -127,7 +127,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -388,6 +388,11 @@ export default {
print() { print() {
this.dialogFormVisible = true; this.dialogFormVisible = true;
}, },
handleCreateBillsEnd(row)
{
this.dialogFormVisible = false;
this.getList();
},
// //
handleCreateBills(row) { handleCreateBills(row) {
this.dialogFormVisible = true; this.dialogFormVisible = true;
@ -395,6 +400,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
}else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -416,12 +430,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleDelete(row){ handleDelete(row){

19
vue/src/views/ux/vw/dataInput/hq_m_checkout/detail.vue

@ -141,7 +141,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -399,6 +399,10 @@ export default {
}, },
print() { print() {
this.dialogFormVisible = true; this.dialogFormVisible = true;
},
handleCreateBillsEnd(row) {
this.dialogFormVisible = false;
this.getList();
}, },
// //
handleCreateBills(row) { handleCreateBills(row) {
@ -407,6 +411,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
}else{
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -428,13 +441,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleDelete(row){ handleDelete(row){

19
vue/src/views/ux/vw/dataInput/hq_m_outorder/detail.vue

@ -127,7 +127,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -385,6 +385,10 @@ export default {
print() { print() {
this.dialogFormVisible = true; this.dialogFormVisible = true;
}, },
handleCreateBillsEnd(row) {
this.dialogFormVisible = false;
this.getList();
},
// //
handleCreateBills(row) { handleCreateBills(row) {
this.dialogFormVisible = true; this.dialogFormVisible = true;
@ -392,6 +396,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -413,13 +426,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleDelete(row){ handleDelete(row){

18
vue/src/views/ux/vw/dataInput/hq_y_outorder/detail.vue

@ -141,7 +141,7 @@
size="small" size="small"
label-width="120px" label-width="120px"
> >
<el-form-item label="日期" prop="accountDate" required> <el-form-item label="日期" prop="accountDate">
<el-date-picker <el-date-picker
v-model="accountDatelist.accountDate" v-model="accountDatelist.accountDate"
type="date" type="date"
@ -400,6 +400,10 @@ export default {
}, },
print() { print() {
this.dialogFormVisible = true; this.dialogFormVisible = true;
},
handleCreateBillsEnd(row) {
this.dialogFormVisible = false;
this.getList();
}, },
// //
handleCreateBills(row) { handleCreateBills(row) {
@ -408,6 +412,15 @@ export default {
this.listOutPutQuery.guids = []; this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version; this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId; this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist.accountDate == "") {
this.$message({
message: "请选择日期!",
type: "warning",
});
this.getList();
return;
//this.getList();
} else {
if (this.accountDatelist != "") { if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
} }
@ -429,12 +442,15 @@ export default {
type: "success", type: "success",
duration: 2000, duration: 2000,
}); });
this.accountDatelist.accountDate = "";
this.dialogFormVisible = false;
this.getList(); this.getList();
this.listLoading = false; this.listLoading = false;
}) })
.catch(() => { .catch(() => {
this.listLoading = false; this.listLoading = false;
}); });
}
}, },
// //
handleDelete(row){ handleDelete(row){

Loading…
Cancel
Save