|
|
@ -190,6 +190,7 @@ import permission from "@/directive/permission/index.js"; |
|
|
|
import CRMTableHead from "../../components/CRMTableHead"; |
|
|
|
import { downloadFile } from "@/utils/crmindex.js"; |
|
|
|
import JobSelectVerson from "@/components/CreateCom/Job-Select.vue"; |
|
|
|
import moment from "moment"; |
|
|
|
|
|
|
|
export default { |
|
|
|
name: "sendUnsettledDiffReport", |
|
|
@ -345,7 +346,7 @@ export default { |
|
|
|
tempsTabs.push({ label: "零件描述", prop: "materialDesc", width: 250 }); |
|
|
|
tempsTabs.push({ label: "寄售库存", prop: "stockQty", width: 100 }); |
|
|
|
tempsTabs.push({ label: "结算数量", prop: "qty", width: 100 }); |
|
|
|
tempsTabs.push({ |
|
|
|
tempsTabs.push({ |
|
|
|
label: "实际出库数量", |
|
|
|
prop: "realityNumber", |
|
|
|
width: 160, |
|
|
@ -411,7 +412,7 @@ export default { |
|
|
|
logic: 0, |
|
|
|
column: column, |
|
|
|
action: 0, |
|
|
|
value: params.value,realityNumber |
|
|
|
value: params.value, |
|
|
|
}; |
|
|
|
this.selectJobVersionValue = params.value; |
|
|
|
this.listQuery.Filters.push(filter); |
|
|
@ -495,34 +496,68 @@ export default { |
|
|
|
return; |
|
|
|
//this.getList(); |
|
|
|
} else { |
|
|
|
if (this.accountDatelist != "") { |
|
|
|
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; |
|
|
|
} |
|
|
|
//this.listOutPutQuery.accountDate = this.accountDatelist; |
|
|
|
let myalert = ""; |
|
|
|
var getAccountMonth = moment(this.accountDatelist.accountDate).format( |
|
|
|
"YYYY-MM" |
|
|
|
); |
|
|
|
let date = new Date(); |
|
|
|
let currentMonth = moment(date).format("YYYY-MM"); |
|
|
|
console.log( |
|
|
|
"全部确认出库条件:" + JSON.stringify(this.listOutPutQuery) |
|
|
|
"过账日期:" + |
|
|
|
JSON.stringify(getAccountMonth) + |
|
|
|
"当前日期:" + |
|
|
|
JSON.stringify(currentMonth) |
|
|
|
); |
|
|
|
if (getAccountMonth <= currentMonth) { |
|
|
|
myalert = "过账日期小于或等于当前月份"; |
|
|
|
} else { |
|
|
|
this.$message({ |
|
|
|
type: "warning", |
|
|
|
message: "选择的过账日期不能大于当前月份!", |
|
|
|
}); |
|
|
|
this.formLoading = false; |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
this.$axios |
|
|
|
.posts( |
|
|
|
"/api/settleaccount/wmsSharePartoutput/WmsSharePartOutPut-Pass", |
|
|
|
this.listOutPutQuery |
|
|
|
) |
|
|
|
.then((response) => { |
|
|
|
const index = this.list.indexOf(row); |
|
|
|
this.$notify({ |
|
|
|
title: "成功", |
|
|
|
message: "生成成功", |
|
|
|
type: "success", |
|
|
|
duration: 2000, |
|
|
|
}); |
|
|
|
this.accountDatelist.accountDate = ""; |
|
|
|
this.dialogFormVisible = false; |
|
|
|
this.getList(); |
|
|
|
this.formLoading = false; |
|
|
|
this.$confirm("是否确认" + myalert + "?", "提示", { |
|
|
|
confirmButtonText: "确定", |
|
|
|
cancelButtonText: "取消", |
|
|
|
type: "warning", |
|
|
|
}) |
|
|
|
.then(() => { |
|
|
|
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate; |
|
|
|
console.log( |
|
|
|
"全部确认出库条件:" + JSON.stringify(this.listOutPutQuery) |
|
|
|
); |
|
|
|
|
|
|
|
this.$axios |
|
|
|
.posts( |
|
|
|
"/api/settleaccount/wmsSharePartoutput/WmsSharePartOutPut-Pass", |
|
|
|
this.listOutPutQuery |
|
|
|
) |
|
|
|
.then((response) => { |
|
|
|
const index = this.list.indexOf(row); |
|
|
|
this.$notify({ |
|
|
|
title: "成功", |
|
|
|
message: "生成成功", |
|
|
|
type: "success", |
|
|
|
duration: 2000, |
|
|
|
}); |
|
|
|
this.accountDatelist.accountDate = ""; |
|
|
|
this.dialogFormVisible = false; |
|
|
|
this.getList(); |
|
|
|
this.formLoading = false; |
|
|
|
}) |
|
|
|
.catch(() => { |
|
|
|
this.formLoading = false; |
|
|
|
}); |
|
|
|
}) |
|
|
|
.catch(() => { |
|
|
|
this.formLoading = false; |
|
|
|
this.$message({ |
|
|
|
type: "info", |
|
|
|
message: "已取消操作", |
|
|
|
}); |
|
|
|
this.formLoading = false; |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|