发票打印问题

dev_ksck2.0
anthonywj 12 months ago
parent 1af061d244
commit fff23823d7

@ -485,7 +485,7 @@ export default {
components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer}, components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer},
methods: { methods: {
onSubmit() { onSubmit() {
if (!this.check) { if (this.invoiceRow == null || this.invoiceRow.length == 0) {
this.$message.error("请选择要登记的物资! "); this.$message.error("请选择要登记的物资! ");
return false; return false;
} }
@ -676,7 +676,7 @@ export default {
this.getBizDetailList(row); this.getBizDetailList(row);
}, },
handleSelectionUdiChange(val) { handleSelectionUdiChange(val) {
this.check=!this.check // this.check=!this.check
this.invoiceRow = val; this.invoiceRow = val;
// this.$emit("upData",this.invoiceRow); // this.$emit("upData",this.invoiceRow);
}, },

@ -1189,7 +1189,7 @@ export default {
this.Upinvoice = false; this.Upinvoice = false;
this.getBizDetailListInv(); this.getBizDetailListInv();
}, },
printOrder(D,row) { printOrder(_this,row) {
_this.currentManufacturer = row; _this.currentManufacturer = row;
_this.Upinvoice = true; _this.Upinvoice = true;
}, },

Loading…
Cancel
Save