Refactor measuring UI, centralize status logic

- Reworked MeasuringIn to use tabbed interface with card view and improved form layout
- Unified status badge/text/color logic via new MeasurementService helpers
- Updated MeasuringOut to use centralized status display and improved order note handling
- Added shipping date column to GridShippingDocument
- Improved link styling in MgGridDataColumn
- Removed redundant code and applied minor UI/layout tweaks for consistency and maintainability
This commit is contained in:
Loretta 2026-03-23 17:43:06 +01:00
parent 873ffe91d2
commit 518cfa6865
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class MgGridDataColumn : DxGridDataColumn
builder.OpenElement(0, "a");
builder.AddAttribute(1, "href", url);
builder.AddAttribute(2, "target", "_blank");
builder.AddAttribute(3, "style", "text-decoration: none;");
builder.AddAttribute(3, "style", "text-decoration: underline; color: inherit;");
builder.AddContent(4, context.DisplayText);
builder.CloseElement();
};