diff --git a/Areas/Inventory/Views/ItemMovement/ItemMovementUser.cshtml b/Areas/Inventory/Views/ItemMovement/ItemMovementUser.cshtml index 59c3380..4357a51 100644 --- a/Areas/Inventory/Views/ItemMovement/ItemMovementUser.cshtml +++ b/Areas/Inventory/Views/ItemMovement/ItemMovementUser.cshtml @@ -15,6 +15,56 @@ .table td img { display: block !important; } + + + .text-true { + color: green; + } + + .text-false { + color: red; + } + + .text-primary { + color: blue; /* Warna asal untuk 'Receive' */ + } + + .text-warning { + color: orange; /* Warna oren untuk 'Return' */ + } + + .fixed-label { + margin-left:100px; + font-weight: bold; + min-width: 120px; /* Ensure labels have same width */ + } + + .fixed-labelStatus { + margin-left: 25px; + font-weight: bold; + min-width: 20px; /* Ensure labels have same width */ + } + .fixed-value { + min-width: 150px; + margin-right:-20px; + display: inline-block; + } + + .gap-4 { + gap: 30px; /* Increase spacing between Send Date and Receive Date */ + } + + .gap-2 { + gap: 1rem !important; /* Ensure Status is closer to its value */ + } + + .me-5 { + margin-right: 2rem !important; /* Move Receive/Return further from Send Date */ + } + + .ms-auto { + margin-left: auto !important; /* Push Complete/Incomplete to right */ + } @await Html.PartialAsync("~/Areas/Inventory/Views/_InventoryPartialUser.cshtml"); @@ -49,40 +99,67 @@
Information: {{ movement.toOther }}
-User: {{ movement.toUser }}
-Station: {{ movement.toStationName }}
-Store: {{ movement.toStoreName }}
+Information: {{ movement.toOther }}
+User: {{ movement.toUserName }}
+Station: {{ movement.toStationName }}
+Store: {{ movement.toStoreName }}
{{ movement.latestStatus || movement.toOther }}
Information: {{ movement.toOther }}
-User: {{ movement.lastUser }}
-Station: {{ movement.lastStationName }}
-Store: {{ movement.lastStoreName }}
+Information: {{ movement.latestStatus }}
+User: {{ movement.lastUserName }}
+Station: {{ movement.lastStationName }}
+Store: {{ movement.lastStoreName }}