From e5089fe313b5a22b1c4add26a485020ab8ed29ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Thu, 25 Aug 2022 15:02:09 +0800 Subject: [PATCH] 1 --- business/partner/printer/jxprint/jxprint_const.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/partner/printer/jxprint/jxprint_const.go b/business/partner/printer/jxprint/jxprint_const.go index 3c8e3a1fc..8fbc1cfb5 100644 --- a/business/partner/printer/jxprint/jxprint_const.go +++ b/business/partner/printer/jxprint/jxprint_const.go @@ -97,7 +97,7 @@ func ManagerOrderPrint(order *model.GoodsOrder, storeTel string, storeDetail *da skuList = append(skuList, &SkuListPrintOrder{ SkuName: sku.SkuName, SkuCount: "X" + utils.Int2Str(sku.Count), - SalePrice: utils.Int64ToStr(sku.SalePrice), + SalePrice: jxutils.IntPrice2StandardCurrencyString(sku.SalePrice), TotalCountPrice: jxutils.IntPrice2StandardCurrencyString(sku.SalePrice * int64(sku.Count)), Upc: sku.Upc, })