diff --git a/ButcherFactory.Form/SegmentProduction_/SegmentProductionPrint.cs b/ButcherFactory.Form/SegmentProduction_/SegmentProductionPrint.cs index 6a41c42..c23e50f 100644 --- a/ButcherFactory.Form/SegmentProduction_/SegmentProductionPrint.cs +++ b/ButcherFactory.Form/SegmentProduction_/SegmentProductionPrint.cs @@ -22,11 +22,10 @@ namespace ButcherFactory.SegmentProduction_ var dic = new Dictionary(); dic.Add("$Goods_Name", entity.Goods_Name); dic.Add("$Goods_Spec", entity.Goods_Spec); - dic.Add("$Weight", entity.Weight.ToString("#0.######")); dic.Add("$Date", dt.Value.ToString("yyyy/MM/dd")); var imgUrl = string.Format(IMGFILE, id); var url = string.Format(AppContext.ConnectInfo.TraceBackUrl + "?code={0}", entity.BarCode); - BwpClientPrint.BwpClientWebPrint.Create2DPic(url, imgUrl, 120); + BwpClientPrint.BwpClientWebPrint.Create2DPic(url, imgUrl, 100); dic.Add("$ImageUrl", imgUrl); BwpClientPrint.BwpClientWebPrint.Print(PRINTFILE, dic); AfterPrint();