Browse Source

门板和柱护板打印 调整1220

branch_ccpg_220107
44673626 3 years ago
parent
commit
6793705559
  1. 10
      vue/src/router/index.js
  2. 15
      vue/src/views/pg-fis/basedate/m100Online/detailMB.vue
  3. 27
      vue/src/views/pg-fis/basedate/m100Online/detailZHB.vue
  4. 1
      vue/src/views/pg-fis/basedate/m100Online/index.vue

10
vue/src/router/index.js

@ -168,13 +168,13 @@ export const asyncRoutes = [
/** when your routing map is too long, you can split it into small modules **/ /** when your routing map is too long, you can split it into small modules **/
managerRouter,//系统首页 managerRouter,//系统首页
personRouter,//系统管理 personRouter,//系统管理
//basedataRouter,//基础数据维护 basedataRouter,//基础数据维护
//vwFisDataRouter,//结算与开票数据导入 vwFisDataRouter,//结算与开票数据导入
//billdataRouter,//销售结算与开票报表 billdataRouter,//销售结算与开票报表
//businessdataRouter, //businessdataRouter,
//wheeldataRouter,//大众看板和备件 wheeldataRouter,//大众看板和备件
pgfis,//派格fis pgfis,//派格fis
//JobTimeDataRouter,//后台作业监控 JobTimeDataRouter,//后台作业监控
// 404 page must be placed at the end !!! // 404 page must be placed at the end !!!
{ path: '*', redirect: '/404', hidden: true } { path: '*', redirect: '/404', hidden: true }

15
vue/src/views/pg-fis/basedate/m100Online/detailMB.vue

@ -378,7 +378,7 @@ export default {
watch: { watch: {
customerInfosMB: { customerInfosMB: {
handler(newVal) { handler(newVal) {
console.log("门板-接收的父组件的值:"+JSON.stringify(newVal)) console.log("门板-接收的父组件的值:" + JSON.stringify(newVal));
if (newVal == "" || newVal == "undefined") { if (newVal == "" || newVal == "undefined") {
//TODO //TODO
} else { } else {
@ -386,9 +386,7 @@ export default {
this.customerInfo.printType = element.PrintType; this.customerInfo.printType = element.PrintType;
this.customerInfo.productLine = element.ProductLine; this.customerInfo.productLine = element.ProductLine;
}); });
if ( if (this.customerInfo.productLine != "") {
this.customerInfo.productLine != ""
) {
this.getList(); this.getList();
} }
} }
@ -586,12 +584,15 @@ export default {
}); });
return; return;
} else { } else {
let dataname = JSON.stringify(response.item); this.fileQuery.dataname = JSON.stringify(response.item);
console.log("门板-调用Handlers/Handler1.ashx?report=menban传的值:"+dataname) console.log(
"门板-调用Handlers/Handler1.ashx?report=menban传的值:" +
JSON.stringify(this.fileQuery.dataname)
);
this.$axios this.$axios
.posts( .posts(
"/Handlers/Handler1.ashx?report=menban", "/Handlers/Handler1.ashx?report=menban",
qs.stringify(dataname) qs.stringify(this.fileQuery)
) )
.then((response) => { .then((response) => {
this.printpdf(response); // this.printpdf(response); //

27
vue/src/views/pg-fis/basedate/m100Online/detailZHB.vue

@ -274,7 +274,7 @@ export default {
totalCount: 0, totalCount: 0,
listLoading: true, listLoading: true,
customerInfo: { customerInfo: {
printType: "", printType: "1",
productLine: "", productLine: "",
}, },
// //
@ -358,18 +358,16 @@ export default {
watch: { watch: {
customerInfosZHB: { customerInfosZHB: {
handler(newVal) { handler(newVal) {
console.log("柱护板-接收的父组件的值:"+JSON.stringify(newVal)) console.log("柱护板-接收的父组件的值:" + JSON.stringify(newVal));
if (newVal == "" || newVal == "undefined") { if (newVal == "" || newVal == "undefined") {
//TODO //TODO
} else { } else {
newVal.forEach((element) => { newVal.forEach((element) => {
this.customerInfo.printType = element.PrintType; this.customerInfo.printType = "1";
this.customerInfo.productLine = element.ProductLine; this.customerInfo.productLine = element.ProductLine;
}); });
console.log("柱护板监控传值:"+JSON.stringify(this.customerInfo)) console.log("柱护板监控传值:" + JSON.stringify(this.customerInfo));
if ( if (this.customerInfo.productLine != "") {
this.customerInfo.productLine != ""
) {
this.getList(); this.getList();
} }
} }
@ -516,7 +514,7 @@ export default {
this.listQuery.ProductLine = this.customerInfo.productLine; this.listQuery.ProductLine = this.customerInfo.productLine;
} }
console.log("柱护板-列表查询条件:"+JSON.stringify(this.listQuery)); console.log("柱护板-列表查询条件:" + JSON.stringify(this.listQuery));
this.$axios this.$axios
.posts( .posts(
"/api/newjit/ZhuHuBanPackingList/ZhuHuBanPackingList-List", "/api/newjit/ZhuHuBanPackingList/ZhuHuBanPackingList-List",
@ -549,7 +547,7 @@ export default {
let beginVin1 = this.multipleSelection[0].beginVin1; let beginVin1 = this.multipleSelection[0].beginVin1;
let endVin1 = this.multipleSelection[0].endVin1; let endVin1 = this.multipleSelection[0].endVin1;
var params = { var params = {
printType: this.customerInfo.printType, printType: "1",
productLine: this.customerInfo.productLine, productLine: this.customerInfo.productLine,
beginVin: beginVin1, beginVin: beginVin1,
endVin: endVin1, endVin: endVin1,
@ -558,7 +556,7 @@ export default {
this.$axios this.$axios
.posts("/api/newjit/bill-m100/print-zhuhuban-packing-list", params) .posts("/api/newjit/bill-m100/print-zhuhuban-packing-list", params)
.then((response) => { .then((response) => {
console.log("柱护版-打印返回的状态:"+response.status); console.log("柱护版-打印返回的状态:" + response.status);
const index = this.list.indexOf(row); const index = this.list.indexOf(row);
if (response.status === false) { if (response.status === false) {
this.$message({ this.$message({
@ -567,12 +565,15 @@ export default {
}); });
return; return;
} else { } else {
let dataname = JSON.stringify(response.item); this.fileQuery.dataname = JSON.stringify(response.item);
console.log("柱板-调用Handlers/Handler1.ashx?report=menban传的值:"+dataname) console.log(
"柱板-调用Handlers/Handler1.ashx?report=menban传的值:" +
JSON.stringify(this.fileQuery.dataname)
);
this.$axios this.$axios
.posts( .posts(
"/Handlers/Handler1.ashx?report=menban", "/Handlers/Handler1.ashx?report=menban",
qs.stringify(dataname) qs.stringify(this.fileQuery)
) )
.then((response) => { .then((response) => {
this.printpdf(response); // this.printpdf(response); //

1
vue/src/views/pg-fis/basedate/m100Online/index.vue

@ -1575,7 +1575,6 @@ export default {
document.body.appendChild(ifr); document.body.appendChild(ifr);
this.doPrint("printPdf" + date); this.doPrint("printPdf" + date);
window.URL.revokeObjectURL(ifr.src); // URL window.URL.revokeObjectURL(ifr.src); // URL
alert()
this.dialogFormVisible = false; this.dialogFormVisible = false;
}, },
httpPost(URL, PARAMS) { httpPost(URL, PARAMS) {

Loading…
Cancel
Save