优化商品编辑

This commit is contained in:
gyq
2025-03-12 18:24:33 +08:00
parent 48c9f24d4c
commit cfe9f7bb36
18 changed files with 574 additions and 223 deletions

View File

@@ -102,7 +102,7 @@ export const usePrint = defineStore("print", {
// 执行打印操作
this.startLabelPrint();
} else {
console.log("没有标签打印机");
console.log("标签打印:未在本机查询到打印机");
}
},
// 开始打印标签数据
@@ -154,7 +154,7 @@ export const usePrint = defineStore("print", {
this.receiptList.push(props);
this.startReceiptPrint();
} else {
console.log("订单小票:没有小票打印机");
console.log("订单小票:未在本机查询到打印机");
}
}
},
@@ -177,10 +177,10 @@ export const usePrint = defineStore("print", {
this.deviceNoteList.length &&
this.checkLocalPrint(this.deviceNoteList[0].address)
) {
data.address = this.deviceNoteList[0].address;
data.deviceName = this.deviceNoteList[0].address;
lodopPrintWork(data);
} else {
console.log("交班小票:没有小票打印机");
console.log("交班小票:未在本机查询到打印机");
}
},
// 打印订单发票
@@ -189,10 +189,10 @@ export const usePrint = defineStore("print", {
this.deviceNoteList.length &&
this.checkLocalPrint(this.deviceNoteList[0].address)
) {
data.address = this.deviceNoteList[0].address;
data.deviceName = this.deviceNoteList[0].address;
invoicePrint(data);
} else {
console.log("订单发票:没有小票打印机");
console.log("订单发票:未在本机查询到打印机");
}
},
// 打印退单小票
@@ -201,10 +201,10 @@ export const usePrint = defineStore("print", {
this.deviceNoteList.length &&
this.checkLocalPrint(this.deviceNoteList[0].address)
) {
data.address = this.deviceNoteList[0].address;
data.deviceName = this.deviceNoteList[0].address;
refundPrint(data);
} else {
console.log("退单小票:没有小票打印机");
console.log("退单小票:未在本机查询到打印机");
}
},
},