|
@@ -90,6 +90,7 @@ type
|
|
|
FCLegal_2: string;
|
|
|
FSName_2: string;
|
|
|
FSDate_2: string;
|
|
|
+ FShowOverRange: Boolean;
|
|
|
|
|
|
function GetDisplayFormat(ADigit: Integer): string;
|
|
|
|
|
@@ -134,6 +135,7 @@ type
|
|
|
procedure SetReportShowState(const Value: Boolean);
|
|
|
procedure SetReportShowStateText(const Value: string);
|
|
|
procedure SetReportShowStateWithoutReply(const Value: Boolean);
|
|
|
+ procedure SetShowOverRange(const Value: Boolean);
|
|
|
public
|
|
|
constructor Create(AProjectData: TObject);
|
|
|
destructor Destroy; override;
|
|
@@ -259,6 +261,7 @@ type
|
|
|
property ShowBGLCode: Boolean read FShowBGLCode write SetShowBGLCode;
|
|
|
property ShowDesignQuantity: Boolean read FShowDesignQuantity write SetShowDesignQuantity;
|
|
|
property ShowAlias: Boolean read FShowAlias write SetShowAlias;
|
|
|
+ property ShowOverRange: Boolean read FShowOverRange write SetShowOverRange;
|
|
|
|
|
|
property ShowReportShading: Boolean read FShowReportShading write SetShowReportShading;
|
|
|
property ReportShading: string read FReportShading write SetReportShading;
|
|
@@ -553,6 +556,7 @@ begin
|
|
|
FShowBGLCode := GetBoolPropertyDef('ShowBGLCode', True);
|
|
|
FShowDesignQuantity := GetBoolPropertyDef('ShowDesignQuantity', False);
|
|
|
FShowAlias := GetBoolPropertyDef('ShowAlias', False);
|
|
|
+ FShowOverRange := GetBoolPropertyDef('ShowOverRange', False);
|
|
|
|
|
|
FShowReportShading := GetBoolPropertyDef('ShowReportShading', False);
|
|
|
FReportShading := GetStrPropertyDef('ReportShading', '');
|
|
@@ -762,6 +766,12 @@ begin
|
|
|
FPropertyInqurity.Value['ShowDesignQuantity'] := Value;
|
|
|
end;
|
|
|
|
|
|
+procedure TProjProperties.SetShowOverRange(const Value: Boolean);
|
|
|
+begin
|
|
|
+ FShowOverRange := Value;
|
|
|
+ FPropertyInqurity.Value['ShowOverRange'] := Value;
|
|
|
+end;
|
|
|
+
|
|
|
procedure TProjProperties.SetShowPriceChange(const Value: Boolean);
|
|
|
begin
|
|
|
FShowPriceChange := Value;
|