33 lines
586 B
ObjectPascal
33 lines
586 B
ObjectPascal
unit ProductMstMatMstR;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
wRelation;
|
|
|
|
type
|
|
TProductMstMatMstR = class(TwRelation)
|
|
private
|
|
{ Private declarations }
|
|
FOrdNum: string;
|
|
FQty: string;
|
|
FUnitt: string;
|
|
protected
|
|
{ Protected declarations }
|
|
public
|
|
{ Public declarations }
|
|
published
|
|
{ Published declarations }
|
|
property OrdNum: string read FOrdNum write FOrdNum;
|
|
property Qty: string read FQty write FQty;
|
|
property Unitt: string read FUnitt write FUnitt;
|
|
end;
|
|
|
|
implementation
|
|
|
|
|
|
|
|
end.
|
|
|