c41e5063b7
Removed entire kbx-foundation-v36 directory as it's been replaced by the new KBX Foundation v4 patterns implemented in this session: - Registry-driven screen definitions - Density-aware UI adapter components - Feature module templates (ShadowRun, Models) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
28 lines
595 B
C#
28 lines
595 B
C#
namespace Modules.WMS.Picking.Shared;
|
|
|
|
public sealed record PickingLineDto(
|
|
Guid LineId,
|
|
int LineNo,
|
|
string LocationCode,
|
|
Guid ItemId,
|
|
string ItemCode,
|
|
string ItemName,
|
|
string? ItemOption,
|
|
string Barcode,
|
|
decimal RequiredQty,
|
|
decimal PickedQty,
|
|
decimal RemainingQty);
|
|
|
|
public sealed record PickingTaskDto(
|
|
Guid TaskId,
|
|
string TaskNo,
|
|
string Stage,
|
|
string Status,
|
|
int CompletedLines,
|
|
int TotalLines,
|
|
decimal CompletedQty,
|
|
decimal TotalQty,
|
|
long Version,
|
|
PickingLineDto? CurrentLine,
|
|
string? Message = null);
|