This commit is contained in:
邹宗楠
2025-10-21 09:28:02 +08:00
parent d47b95353c
commit b21995c8b9
2 changed files with 2 additions and 16 deletions

View File

@@ -35,7 +35,7 @@ func (c *PrinterHandler) GetVendorID() int {
func (c *PrinterHandler) PrintMsg(ctx *jxcontext.Context, printSn, orderSeq, msgTitle, msgContent string) (printerStatus *partner.PrinterStatus, err error) {
if printSn != "" {
printSn = strings.Split(printSn, "_")[0]
if _, err := api.JxPrintAPI.DoPrint(printSn, msgContent, utils.Str2Int(orderSeq)); err == nil {
if _, err = api.JxPrintAPI.DoPrint(printSn, msgContent, utils.Str2Int(orderSeq)); err == nil {
return c.GetPrinterStatus(ctx, printSn, "")
}
}
@@ -238,9 +238,6 @@ func (c *PrinterHandler) getOrderContentByTemplate(order *model.GoodsOrder, stor
}
func (c *PrinterHandler) PrintOrder(ctx *jxcontext.Context, store *model.Store, storeDetail *dao.StoreDetail, order *model.GoodsOrder, printType string, afs *model.AfsOrder) (printerStatus *partner.PrinterStatus, err error) {
if store.ID == 805216 {
globals.SugarLogger.Debugf("8052161 :%d", len(order.Skus))
}
if len(order.Skus) == 0 {
return
}
@@ -268,16 +265,8 @@ func (c *PrinterHandler) PrintOrder(ctx *jxcontext.Context, store *model.Store,
if err != nil {
return nil, err
}
if store.ID == 805216 {
globals.SugarLogger.Debugf("8052162 :%s", string(orderPrint))
}
orderSeq := utils.Int2Str(order.VendorID) + utils.Int2Str(order.OrderSeq)
result, err := c.PrintMsg(ctx, store.PrinterSN, orderSeq, "", string(orderPrint))
if store.ID == 805216 {
globals.SugarLogger.Debugf("8052163 :%v", err)
globals.SugarLogger.Debugf("8052164 :%s", utils.Format4Output(result, false))
}
return result, err
return c.PrintMsg(ctx, store.PrinterSN, orderSeq, "", string(orderPrint))
}
func (c *PrinterHandler) PrintCancelOrRefundOrder(ctx *jxcontext.Context, printType int, store *model.Store, storeDetail *dao.StoreDetail, order *model.GoodsOrder) (printerStatus *partner.PrinterStatus, err error) {