Browse Source

bug.

master
yibo 7 years ago
parent
commit
1c39c59d2b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ButcherFactory.Form/CarcassTakeOut_/CarcassTakeOutForm.cs

+ 1
- 1
ButcherFactory.Form/CarcassTakeOut_/CarcassTakeOutForm.cs View File

@ -175,7 +175,7 @@ namespace ButcherFactory.CarcassTakeOut_
private void submitBtn_Click(object sender, EventArgs e) private void submitBtn_Click(object sender, EventArgs e)
{ {
var arrs = needSubmitedList.Where(x => x.Weight.HasValue);
var arrs = needSubmitedList.Where(x => x.Weight.HasValue).ToList();
CarcassTakeOutBL.Submit(arrs.Select(x => x.ID)); CarcassTakeOutBL.Submit(arrs.Select(x => x.ID));
foreach (var item in arrs) foreach (var item in arrs)
{ {


Loading…
Cancel
Save