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

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>
@@ -200,14 +200,13 @@ func (c *PrinterHandler) getOrderContentBig(order *model.GoodsOrder, storeTel st
)
for _, sku := range order.Skus {
orderFmt += `<B>%s<BR></B>`
orderFmt += `<B>%s</B><BR>`
switch order.EarningType {
case model.EarningTypePoints: // 扣点
orderFmt += `<B>%s %s %s<BR></B>`
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<BR></B>`
orderFmt += `<B>%25s</B><BR>`
orderParams = append(orderParams, sku.SkuName, "x"+utils.Int2Str(sku.Count))
}