|
|
|
@ -468,13 +468,8 @@ namespace SlnMesnac.Business
|
|
|
|
|
private void BindingBarCode(string bigBarcode, string epcStr, MesProductPlanDto productPlanDto)
|
|
|
|
|
{
|
|
|
|
|
List<MesPrdBarcodeInfo> list = _mesPrdBarCodeService.GetUseBarCodeList();
|
|
|
|
|
if (list == null || list.Count == 0)
|
|
|
|
|
if (list != null && list.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError("托盘未找到可以绑定的小条码");
|
|
|
|
|
return;
|
|
|
|
|
// throw new InvalidOperationException("托盘未找到可以绑定的小条码");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (list.Where(x => x.PrintFlag == "1").ToList().Count < 40)
|
|
|
|
|
{
|
|
|
|
|
// 推送低级别报警
|
|
|
|
@ -488,6 +483,13 @@ namespace SlnMesnac.Business
|
|
|
|
|
item.BindStatus = 1;
|
|
|
|
|
}
|
|
|
|
|
sqlSugarClient.AsTenant().GetConnection("mes").Updateable(list).ExecuteCommand();
|
|
|
|
|
}
|
|
|
|
|
//if (list == null || list.Count == 0)
|
|
|
|
|
//{
|
|
|
|
|
// _logger.LogError("托盘未找到可以绑定的小条码");
|
|
|
|
|
// return;
|
|
|
|
|
// // throw new InvalidOperationException("托盘未找到可以绑定的小条码");
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
//托盘绑定大条码信息
|
|
|
|
|
BasePalletInfo palletInfo = sqlSugarClient.AsTenant().GetConnection("mes").Queryable<BasePalletInfo>().Where(x => x.PalletInfoCode == epcStr).First();
|
|
|
|
|