修改飞鹅打印机

This commit is contained in:
邹宗楠
2025-06-09 17:53:44 +08:00
parent ec9469e0f7
commit 7fd163485c

View File

@@ -81,7 +81,7 @@ func (c *PrinterHandler) getOrderContent(order *model.GoodsOrder, storeTel strin
商品明细: <BR>
`
priceQuote := `品名 数量<BR>
--------------------------------<BR>` // 报价
--------------------------------<BR>` // 报价
pricePoints := `品名 数量 单价 小计<BR>
--------------------------------<BR>` // 扣点
// <BOLD>实际支付:</BOLD>%s<BR>
@@ -206,7 +206,7 @@ func (c *PrinterHandler) getOrderContentBig(order *model.GoodsOrder, storeTel st
orderFmt += `<B>%s %s %s</B><BR>`
orderParams = append(orderParams, sku.SkuName, "x"+utils.Int2Str(sku.Count), jxutils.IntPrice2StandardCurrencyString(sku.VendorPrice), jxutils.IntPrice2StandardCurrencyString(sku.VendorPrice*int64(sku.Count)))
case model.EarningTypeQuote: // 报价
orderFmt += `<B>%25s</B><BR>`
orderFmt += `<CB>%s</CB><BR>`
orderParams = append(orderParams, sku.SkuName, "x"+utils.Int2Str(sku.Count))
}