unit SaleItemMst; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, wItem; type TSaleItemMst = class(TwItem) private { Private declarations } FOrdDate: string; FOrdCode: string; FQty: string; FGoodQty: string; FDefQty: string; FUnitt: string; FDescriptions: string; FReQty: string; FDeliveryQty: string; FStatus: string; protected { Protected declarations } public { Public declarations } published { Published declarations } property OrdDate: string read FOrdDate write FOrdDate; property OrdCode: string read FOrdCode write FOrdCode; property Qty: string read FQty write FQty; property GoodQty: string read FGoodQty write FGoodQty; property DefQty: string read FDefQty write FDefQty; property Unitt: string read FUnitt write FUnitt; property Descriptions: string read FDescriptions write FDescriptions; property ReQty: string read FReQty write FReQty; property DeliveryQty: string read FDeliveryQty write FDeliveryQty; property Status: string read FStatus write FStatus; end; implementation end.