修改飞鹅打印机间距

This commit is contained in:
邹宗楠
2025-06-09 17:22:20 +08:00
parent 13950ec978
commit a26fa917b1
2 changed files with 37 additions and 3 deletions

View File

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