Browse Source

称重计数总码打印增加总重

master
yibo 4 years ago
parent
commit
5e8a5f7360
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      ButcherFactory.Form/SegmentProduction_/SegmentSumCodePrint.cs

+ 2
- 1
ButcherFactory.Form/SegmentProduction_/SegmentSumCodePrint.cs View File

@ -29,7 +29,8 @@ namespace ButcherFactory.SegmentProduction_
{
var f = item.FirstOrDefault();
info += string.Format("<p class='g_name'>{0}</p>", f.Goods_Name);
info += string.Format("<p class='g_number'>件数:{0} &nbsp;&nbsp; {1}</p>", item.Count(), f.Identify);
info += string.Format("<p class='g_number'>件数:{0} &nbsp;&nbsp; {1}</p>", item.Count(), f.Identify);
info += string.Format("<p class='g_weight'>总重量:{0:#0.######} </p>", item.Sum(x=>x.Weight));
}


Loading…
Cancel
Save