|
|
@ -284,7 +284,7 @@ export default { |
|
|
|
return this.stepsActive == 1; |
|
|
|
}, |
|
|
|
getMoudleDisable() { |
|
|
|
if (this.crmType == "prebatch") { |
|
|
|
if (this.crmType == "priceList") { |
|
|
|
//只状态可用 |
|
|
|
this.isEditYearMont = true; |
|
|
|
this.isEditFactory = true; |
|
|
@ -298,6 +298,7 @@ export default { |
|
|
|
return ( |
|
|
|
{ |
|
|
|
invoice: "大众发票汇总", |
|
|
|
priceList: "标准价格单", |
|
|
|
vWKanBan: "大众看板结算明细", |
|
|
|
scrapClaims: "CP7报废和索赔", |
|
|
|
sparePart: "大众备件结算明细", |
|
|
@ -338,6 +339,7 @@ export default { |
|
|
|
return ( |
|
|
|
{ |
|
|
|
invoice: "/api/settleaccount/Invoices/ExcelImport", //大众发票导入 |
|
|
|
priceList: "/api/settleaccount/PriceList/ExcelImport-Map", //标准价格单 |
|
|
|
vWKanBan: "/api/settleaccount/VWKanBan/ExcelImport", //大众看板结算明细导入 |
|
|
|
scrapClaims: "/api/settleaccount/ScrapClaims/ExcelImport", //CP7报废和索赔导入 |
|
|
|
sparePart: "/api/settleaccount/SparePart/ExcelImport", //大众备件结算明细导入 |
|
|
@ -563,7 +565,11 @@ export default { |
|
|
|
fd.append("period", "03"); |
|
|
|
fd.append("customerCode", "03"); |
|
|
|
fd.append("factory", this.YearMonthValue); |
|
|
|
fd.append("version", this.versionValue); |
|
|
|
if (this.crmType == "priceList") { |
|
|
|
fd.append("version", "202110"); |
|
|
|
} else { |
|
|
|
fd.append("version", this.versionValue); |
|
|
|
} |
|
|
|
const webapi = this.getWebApi; |
|
|
|
this.$axios |
|
|
|
.posts(webapi, fd) |
|
|
|