This commit is contained in:
qianjiawei
2023-12-25 17:31:50 +08:00
parent 7ede7e4f08
commit 7244fab4ac
7 changed files with 49 additions and 19 deletions

View File

@@ -292,7 +292,7 @@ namespace Tnb.WarehouseMgr
{
if (input.barCodes == null || input.barCodes.Count < 1) throw new ArgumentNullException(nameof(input.barCodes));
input.barCodes = input.barCodes.OrderBy(o => o).ToList();
base.BarCodePrint(input.barCodes, input.copies);
base.BarCodePrint(input.barCodes, input.copies,"");
}
}
}