* Further improvements of scanning data

This commit is contained in:
2025-06-29 09:50:13 +02:00
parent 2bf87c0091
commit d3e6c815ac
2 changed files with 149 additions and 75 deletions

View File

@@ -210,7 +210,7 @@
private void OnRowDataBound(RowDataBoundEventArgs<ScheduleOrderDetailDetailDto> args)
{
if (args.Data.QtyType == "83" || args.Data.QtyType == "84")
if (new[] { "54", "83", "84" }.Any(x => x == args.Data.QtyType))
{
args.Row.AddClass(["highlight-red"]);
}