feat(clgl): 新增入库材料条形码打印

生成入库单时同步生成入库材料条形码明细,并在入库单管理中支持整单和单条条形码打印。
This commit is contained in:
2026-05-18 21:28:56 +08:00
parent 2c25bb3484
commit 44cd0fcf8c
13 changed files with 563 additions and 43 deletions
+2 -1
View File
@@ -117,6 +117,7 @@ namespace BLL
Model.Tw_InputDetail table = Funs.DB.Tw_InputDetail.FirstOrDefault(x => x.Id == Id);
if (table != null)
{
TwInputdetailBarCodeService.DeleteByInputDetailId(Id);
Funs.DB.Tw_InputDetail.DeleteOnSubmit(table);
Funs.DB.SubmitChanges();
}
@@ -143,4 +144,4 @@ namespace BLL
return q;
}
}
}
}