Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
KGOrders
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cam Hayes
KGOrders
Commits
e92fbc25
Commit
e92fbc25
authored
Dec 18, 2024
by
Elias Sarraf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge
parent
a7e54751
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1352 additions
and
1077 deletions
+1352
-1077
View.Orders.pas
kgOrdersClient/View.Orders.pas
+1
-6
Data.pas
kgOrdersServer/Source/Data.pas
+1
-1
Lookup.ServiceImpl.pas
kgOrdersServer/Source/Lookup.ServiceImpl.pas
+11
-22
rOrders.dfm
kgOrdersServer/Source/rOrders.dfm
+1095
-964
rOrders.pas
kgOrdersServer/Source/rOrders.pas
+42
-41
rptOrders.fr3
kgOrdersServer/Source/rptOrders.fr3
+202
-43
No files found.
kgOrdersClient/View.Orders.pas
View file @
e92fbc25
...
...
@@ -82,6 +82,7 @@ type
[
async
]
procedure
Search
(
searchOptions
:
string
);
[
async
]
procedure
GetOrders
(
searchOptions
:
string
);
[
async
]
procedure
getUser
();
procedure
GeneratePDF
(
OrderID
:
string
);
[
async
]
procedure
GenerateReportPDF
;
var
PageNumber
:
integer
;
...
...
@@ -124,10 +125,7 @@ begin
ShowMessage
(
'PDF Report Generated Successfully'
);
end
;
<<<<<<<
HEAD
=======
>>>>>>>
f1a2333
(
clean
up
code
)
procedure
TFViewOrders
.
WebFormCreate
(
Sender
:
TObject
);
// Initializes important values:
// PageNumber: What page number the user is on IE 1: 1-10, 2: 11-20 etc
...
...
@@ -591,8 +589,6 @@ begin
end
;
<<<<<<<
HEAD
=======
procedure
TFViewOrders
.
GeneratePDF
(
OrderID
:
string
);
var
XDCResponse
:
TXDataClientResponse
;
...
...
@@ -612,5 +608,4 @@ begin
end
;
>>>>>>>
f1a2333
(
clean
up
code
)
end
.
kgOrdersServer/Source/Data.pas
View file @
e92fbc25
...
...
@@ -99,7 +99,7 @@ begin
OrderIDList
.
Add
(
'18993'
);
// Add more OrderIDs as needed
// Generate the PDF Report with the list of OrderIDs
//
rptOrders.GenerateSimpleReport(350);
rptOrders
.
GenerateSimpleReport
(
350
);
finally
OrderIDList
.
Free
;
// Free the TStringList
end
;
...
...
kgOrdersServer/Source/Lookup.ServiceImpl.pas
View file @
e92fbc25
...
...
@@ -36,6 +36,7 @@ type
function
EditUser
(
const
editOptions
:
string
):
string
;
function
Search
(
phoneNum
:
string
):
TOrderList
;
procedure
GenerateReportPDF
(
searchOptions
:
string
);
function
BuildOrderQuery
(
searchOptions
:
string
):
string
;
function
AddUser
(
userInfo
:
string
):
string
;
function
AddItem
(
itemInfo
:
string
):
string
;
function
DelUser
(
username
:
string
):
string
;
...
...
@@ -46,7 +47,6 @@ type
function
EditStatusSchedule
(
StatusType
:
string
;
order
:
TJSONObject
;
ORDER_ID
:
string
):
string
;
procedure
AfterConstruction
;
override
;
procedure
BeforeDestruction
;
override
;
function
BuildOrderQuery
(
searchOptions
:
string
):
string
;
end
;
implementation
...
...
@@ -167,25 +167,24 @@ end;
procedure
TLookupService
.
GenerateReportPDF
(
searchOptions
:
string
);
var
SQL
:
string
;
rptOrders
:
TrptOrders
;
rptOrders
:
TrptOrders
;
// Local instance of rptOrders
begin
// Create instance of rptOrders
rptOrders
:=
TrptOrders
.
Create
(
nil
);
try
// Generate
dynamic SQL based on searchOptions
// Generate
SQL dynamically using the existing GetOrders logic
SQL
:=
BuildOrderQuery
(
searchOptions
);
// Log the SQL for debugging
Logger
.
log
(
5
,
'Generated SQL: '
+
SQL
);
// Prepare the report dataset
rptOrders
.
PrepareReport
(
SQL
);
// Generate
and save the PDF
// Generate
the PDF report
rptOrders
.
GeneratePDF
;
Logger
.
log
(
5
,
'PDF generated successfully.'
);
// Optionally, log success
Logger
.
log
(
5
,
'PDF Report successfully generated for searchOptions: '
+
searchOptions
);
finally
rptOrders
.
Free
;
rptOrders
.
Free
;
// Ensure proper cleanup
end
;
end
;
...
...
@@ -231,7 +230,7 @@ begin
end
;
// Build the SELECT query with dynamically generated subqueries
SQL
:=
'SELECT o.ORDER_ID,
o.LOCATION,
c.NAME AS COMPANY_NAME, o.JOB_NAME, o.ORDER_DATE, o.ORDER_TYPE, '
;
SQL
:=
'SELECT o.ORDER_ID, c.NAME AS COMPANY_NAME, o.JOB_NAME, o.ORDER_DATE, o.ORDER_TYPE, '
;
// Add dynamically generated subqueries
SQL
:=
SQL
+
generateSubQuery
(
filterType
,
statusType
,
'PROOF'
);
...
...
@@ -241,15 +240,7 @@ begin
SQL
:=
SQL
+
generateSubQuery
(
filterType
,
statusType
,
'SHIP'
);
// Include additional static fields
SQL
:=
SQL
+
'o.PRICE, qb.QB_REF_NUM, '
;
// Dynamically determine colors field based on ORDER_TYPE
SQL
:=
SQL
+
'(CASE '
+
'WHEN o.ORDER_TYPE = ''web_plate'' THEN '
+
'(SELECT quantity_and_colors_qty_colors FROM web_plate_orders WHERE order_id = o.ORDER_ID) '
+
'ELSE (SELECT colors_colors FROM corrugated_plate_orders WHERE order_id = o.ORDER_ID) '
+
'END) AS COLORS '
;
SQL
:=
SQL
+
'o.PRICE, qb.QB_REF_NUM '
;
// FROM clause
SQL
:=
SQL
+
'FROM orders o '
+
...
...
@@ -272,15 +263,13 @@ begin
' OFFSET '
+
IntToStr
((
PageNum
-
1
)
*
PageSize
);
Result
:=
SQL
;
Logger
.
log
(
5
,
'Generated SQL in Build
Order
Query: '
+
SQL
);
Logger
.
log
(
5
,
'Generated SQL in Build
order
Query: '
+
SQL
);
finally
params
.
Free
;
end
;
end
;
function
TLookupService
.
generateSelectSQL
(
filterType
,
startDate
,
endDate
:
string
):
string
;
begin
...
...
kgOrdersServer/Source/rOrders.dfm
View file @
e92fbc25
...
...
@@ -10,8 +10,8 @@ object rptOrders: TrptOrders
PreviewOptions.Zoom = 1.000000000000000000
PrintOptions.Printer = 'Default'
PrintOptions.PrintOnSheet = 0
ReportOptions.CreateDate = 45642.449265416
70
0000000
ReportOptions.LastChange = 4564
3.01179023148
0000000
ReportOptions.CreateDate = 45642.449265416
67
0000000
ReportOptions.LastChange = 4564
2.79825918982
0000000
ScriptLanguage = 'PascalScript'
ScriptText.Strings = (
'begin'
...
...
@@ -63,766 +63,1117 @@ object rptOrders: TrptOrders
Memo.UTF8W = (
'Order Schedule')
end
object TfrxMemoView
AllowVectorExport = True
Top = -18.897650000000000000
Frame.Typ = []
end
object TfrxMemoView
AllowVectorExport = True
Top = -18.897650000000000000
Frame.Typ = []
end
object TfrxMemoView
AllowVectorExport = True
Top = -18.897650000000000000
Frame.Typ = []
end
end
object MasterData1: TfrxMasterData
FillType = ftBrush
FillGap.Top = 0
FillGap.Left = 0
FillGap.Bottom = 0
FillGap.Right = 0
Frame.Typ = []
Frame.Width = 3.000000000000000000
Height = 166.299320000000000000
Top = 173.858380000000000000
Width = 980.410082000000000000
Columns = 18
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
RowCount = 0
object frxDBOrdersORDER_ID: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Top = 3.779530000000000000
Width = 45.354360730000000000
Height = 86.929190000000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'ORDER_ID'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."ORDER_ID"]')
ParentFont = False
end
object frxDBOrdersLOCATION: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 49.133890000000000000
Top = 3.779530000000000000
Width = 26.456710730000000000
Height = 86.929190000000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'LOCATION'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."LOCATION"]')
ParentFont = False
end
object frxDBOrdersCOMPANY_NAME: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 79.370130000000000000
Top = 3.779530000000000000
Width = 105.826840000000000000
Height = 86.929190000000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'COMPANY_NAME'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."COMPANY_NAME"]')
ParentFont = False
end
object frxDBOrdersJOB_NAME: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 188.976500000000000000
Top = 3.779530000000000000
Width = 105.826840000000000000
Height = 86.929190000000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'JOB_NAME'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."JOB_NAME"]')
ParentFont = False
end
object frxDBOrdersORDER_DATE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 298.582870000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'ORDER_DATE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."ORDER_DATE"]')
ParentFont = False
end
object frxDBOrdersPROOF_DUE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 336.756123000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'PROOF_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."PROOF_DUE"]')
ParentFont = False
end
object frxDBOrdersPROOF_DONE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 374.929376000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'PROOF_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."PROOF_DONE"]')
ParentFont = False
end
object frxDBOrdersART_DUE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 413.102629000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'ART_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."ART_DUE"]')
ParentFont = False
end
object frxDBOrdersART_DONE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 451.275882000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'ART_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."ART_DONE"]')
ParentFont = False
end
object frxDBOrdersPLATE_DUE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 489.449135000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'PLATE_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."PLATE_DUE"]')
ParentFont = False
end
object frxDBOrdersPLATE_DONE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 527.622388000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'PLATE_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."PLATE_DONE"]')
ParentFont = False
end
object frxDBOrdersMOUNT_DUE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 565.795641000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'MOUNT_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."MOUNT_DUE"]')
ParentFont = False
end
object frxDBOrdersMOUNT_DONE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 603.968894000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'MOUNT_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."MOUNT_DONE"]')
ParentFont = False
end
object frxDBOrdersSHIP_DUE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 642.142147000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'SHIP_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."SHIP_DUE"]')
ParentFont = False
end
object frxDBOrdersSHIP_DONE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 680.315400000000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 86.929191670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'SHIP_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."SHIP_DONE"]')
ParentFont = False
end
object frxDBOrdersPRICE: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 718.110700000000000000
Top = 3.779530000000000000
Width = 49.133890730000000000
Height = 86.929190000000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'PRICE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."PRICE"]')
ParentFont = False
end
object frxDBOrdersQB_REF_NUM: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 771.024120000000000000
Top = 3.779530000000000000
Width = 71.811070730000000000
Height = 86.929190000000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'QB_REF_NUM'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."QB_REF_NUM"]')
ParentFont = False
end
object frxDBOrdersCOLORS: TfrxMemoView
object frxDBDataset1COMPANY_NAME: TfrxMemoView
IndexTag = 1
AllowVectorExport = True
Left = 846.614720000000000000
Top = 3.779530000000000000
Width = 132.283550730000000000
Height = 86.929190000000000000
Left = 313.700990000000000000
Width = 343.937230000000000000
Height = 18.897650000000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'COLORS'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'[frxDBOrders."COLORS"]')
ParentFont = False
'Company Name - [frxDBDataset1."COMPANY_NAME"]')
end
end
object
Header1: TfrxHeader
object
MasterData1: TfrxMasterData
FillType = ftBrush
FillGap.Top = 0
FillGap.Left = 0
FillGap.Bottom = 0
FillGap.Right = 0
Frame.Typ = []
Height =
49.13389
0000000000000
Height =
612.28386
0000000000000
Top = 102.047310000000000000
Width = 980.410082000000000000
object Memo2: TfrxMemoView
AllowVectorExport = True
Left = 0.755905630000000000
Top = 3.779529170000000000
Width = 45.354360730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Order ID')
ParentFont = False
end
object Memo3: TfrxMemoView
AllowVectorExport = True
Left = 49.511842810000000000
Top = 3.779530000000000000
Width = 26.456710730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Loc')
ParentFont = False
end
object Memo4: TfrxMemoView
AllowVectorExport = True
Left = 79.370130000000000000
Top = 3.779530000000000000
Width = 105.826840730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Company Name')
ParentFont = False
end
object Memo5: TfrxMemoView
AllowVectorExport = True
Left = 188.976500000000000000
Top = 3.779530000000000000
Width = 105.826840730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Job Name')
ParentFont = False
end
object Memo17: TfrxMemoView
AllowVectorExport = True
Left = 717.354794370000000000
Top = 3.779530830000000000
Width = 49.133890730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Price')
ParentFont = False
end
object Memo18: TfrxMemoView
AllowVectorExport = True
Left = 769.890261550000000000
Top = 3.779531660000000000
Width = 71.811070730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'QB Ref Num')
ParentFont = False
end
object Memo19: TfrxMemoView
AllowVectorExport = True
Left = 845.102908740000000000
Top = 3.779531660000000000
Width = 132.283550730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Colors')
ParentFont = False
end
object Memo6: TfrxMemoView
AllowVectorExport = True
Left = 298.204917180000000000
Top = 3.779530830000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Order Date')
ParentFont = False
end
object Memo7: TfrxMemoView
AllowVectorExport = True
Left = 336.340374899000000000
Top = 3.779530830000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Proof Due')
ParentFont = False
end
object Memo8: TfrxMemoView
AllowVectorExport = True
Left = 374.475832618000000000
Top = 3.779530000000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Proof Done')
ParentFont = False
end
object Memo11: TfrxMemoView
AllowVectorExport = True
Left = 488.882205775000000000
Top = 3.779530830000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Plate Due')
ParentFont = False
end
object Memo12: TfrxMemoView
AllowVectorExport = True
Left = 527.017663494000000000
Top = 3.779531660000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Plate Done')
ParentFont = False
end
object Memo13: TfrxMemoView
AllowVectorExport = True
Left = 565.153121210000000000
Top = 3.779531660000000000
Width = 37.795300730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Mount Due')
ParentFont = False
end
object Memo14: TfrxMemoView
AllowVectorExport = True
Left = 603.288578930000000000
Top = 3.779530000000000000
Width = 37.795300730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Mount Done')
ParentFont = False
end
object Memo15: TfrxMemoView
AllowVectorExport = True
Left = 641.424036651000000000
Top = 3.779530830000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Ship Due')
ParentFont = False
end
object Memo16: TfrxMemoView
AllowVectorExport = True
Left = 679.559494370000000000
Top = 3.779530830000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Ship Done')
ParentFont = False
end
object Memo9: TfrxMemoView
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
RowCount = 0
object TableObject1: TfrxTableObject
AllowVectorExport = True
Left = 412.611290337000000000
Top = 3.779530830000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Art Due')
ParentFont = False
end
object Memo10: TfrxMemoView
AllowVectorExport = True
Left = 450.746748056000000000
Top = 3.779530830000000000
Width = 34.015770730000000000
Height = 34.015771670000000000
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
Frame.Typ = []
Memo.UTF8W = (
'Art Done')
ParentFont = False
Top = -0.000002780000000001
object TableColumn1: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn2: TfrxTableColumn
Width = 30.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn3: TfrxTableColumn
Width = 62.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn4: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn5: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn6: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn7: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn8: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn9: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn10: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn11: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn12: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn13: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn14: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn15: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn16: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn17: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableColumn18: TfrxTableColumn
Width = 54.383237222222220000
MaxWidth = 75.590600000000000000
end
object TableRow1: TfrxTableRow
Height = 125.732364666666700000
object TableCell1: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Order ID')
end
object TableCell2: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Loc')
end
object TableCell3: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Company Name')
end
object TableCell4: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Job Name')
end
object TableCell5: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Order Date')
end
object TableCell26: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Proof Due')
end
object TableCell31: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Proof Done')
end
object TableCell36: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Art Due')
end
object TableCell41: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Art Done')
end
object TableCell46: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Plate Due')
end
object TableCell51: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Plate Done')
end
object TableCell56: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Mount Due')
end
object TableCell61: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Mount Done')
end
object TableCell66: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Ship Due')
end
object TableCell71: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Ship Done')
end
object TableCell76: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Price')
end
object TableCell81: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'QB Ref Num')
end
object TableCell86: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'Colors')
end
end
object TableRow2: TfrxTableRow
AutoSize = True
Height = 125.732364666666700000
object TableCell6: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'ORDER_ID'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."ORDER_ID"]')
end
object TableCell7: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'LOCATION'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."LOCATION"]')
end
object TableCell8: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'COMPANY_NAME'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."COMPANY_NAME"]')
end
object TableCell9: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'JOB_NAME'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."JOB_NAME"]')
end
object TableCell10: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'ORDER_DATE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."ORDER_DATE"]')
end
object TableCell27: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'PROOF_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."PROOF_DUE"]')
end
object TableCell32: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'PROOF_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."PROOF_DONE"]')
end
object TableCell37: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'ART_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."ART_DUE"]')
end
object TableCell42: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'ART_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."ART_DONE"]')
end
object TableCell47: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'PLATE_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."PLATE_DUE"]')
end
object TableCell52: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'PLATE_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."PLATE_DONE"]')
end
object TableCell57: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
ContentScaleOptions.Constraints.MaxIterationValue = 0
ContentScaleOptions.Constraints.MinIterationValue = 0
DataField = 'MOUNT_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."MOUNT_DUE"]')
end
object TableCell62: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'MOUNT_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."MOUNT_DONE"]')
end
object TableCell67: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'SHIP_DUE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."SHIP_DUE"]')
end
object TableCell72: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'SHIP_DONE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."SHIP_DONE"]')
end
object TableCell77: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'PRICE'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."PRICE"]')
end
object TableCell82: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'QB_REF_NUM'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."QB_REF_NUM"]')
end
object TableCell87: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
DataField = 'COLORS'
DataSet = frxDBOrders
DataSetName = 'frxDBOrders'
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
Memo.UTF8W = (
'[frxDBOrders."COLORS"]')
end
end
object TableRow3: TfrxTableRow
Height = 51.653576666666670000
object TableCell38: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell39: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell40: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell43: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell44: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell45: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell48: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell49: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell50: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell53: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell54: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell55: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell58: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell59: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell60: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell63: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell64: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell65: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
end
object TableRow4: TfrxTableRow
Height = 51.653576666666670000
object TableCell68: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell69: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell70: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell73: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell74: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell75: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell78: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell79: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell80: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell83: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell84: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell85: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell88: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell89: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell90: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell91: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell92: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell93: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
end
object TableRow5: TfrxTableRow
Height = 51.653576666666670000
object TableCell94: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell95: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell96: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell97: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell98: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell99: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell100: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell101: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell102: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell103: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell104: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell105: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell106: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell107: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell108: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell109: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell110: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell111: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
end
object TableRow6: TfrxTableRow
Height = 51.653576666666670000
object TableCell112: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell113: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell114: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell115: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell116: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell117: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell118: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell119: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell120: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell121: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell122: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell123: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell124: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell125: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell126: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell127: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell128: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell129: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
end
object TableRow7: TfrxTableRow
Height = 51.653576666666670000
object TableCell130: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell131: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell132: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell133: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell134: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell135: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell136: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell137: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell138: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell139: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell140: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell141: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell142: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell143: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell144: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell145: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell146: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell147: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
end
object TableRow8: TfrxTableRow
Height = 51.653576666666670000
object TableCell148: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell149: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell150: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell151: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell152: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell153: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell154: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell155: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell156: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell157: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell158: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell159: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell160: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell161: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell162: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell163: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell164: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell165: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
end
object TableRow9: TfrxTableRow
Height = 51.653576666666670000
object TableCell166: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell167: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell168: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell169: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell170: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell171: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell172: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell173: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell174: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell175: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell176: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell177: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell178: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell179: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell180: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell181: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell182: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
object TableCell183: TfrxTableCell
AllowVectorExport = True
Restrictions = [rfDontDelete]
Frame.Typ = [ftLeft, ftRight, ftTop, ftBottom]
end
end
end
end
end
...
...
@@ -866,8 +1217,6 @@ object rptOrders: TrptOrders
Top = 99
EncryptedPassword = '9AFF92FF8CFF86FF8CFFCFFFCEFF'
end
<<<<<<< HEAD
=======
object uqOrders: TUniQuery
Connection = ucKG
SQL.Strings = (
...
...
@@ -899,231 +1248,13 @@ object rptOrders: TrptOrders
Left = 300
Top = 312
end
>>>>>>> f1a2333 (clean up code)
object frxDBOrders: TfrxDBDataset
UserName = 'frxDBOrders'
CloseDataSource = False
DataSet = uqOrders
BCDToCurrency = False
DataSetOptions = []
Left = 424
<<<<<<< HEAD
Top = 238
FieldDefs = <
item
FieldName = 'ORDER_ID'
FieldType = fftString
Size = 11
end
item
FieldName = 'LOCATION'
FieldType = fftString
Size = 16
end
item
FieldName = 'COMPANY_NAME'
FieldType = fftString
Size = 90
end
item
FieldName = 'JOB_NAME'
FieldType = fftString
Size = 128
end
item
FieldName = 'ORDER_DATE'
FieldType = fftString
end
item
FieldName = 'PROOF_DUE'
FieldType = fftString
end
item
FieldName = 'PROOF_DONE'
FieldType = fftString
Size = 24
end
item
FieldName = 'ART_DUE'
FieldType = fftString
end
item
FieldName = 'ART_DONE'
FieldType = fftString
Size = 24
end
item
FieldName = 'PLATE_DUE'
FieldType = fftString
end
item
FieldName = 'PLATE_DONE'
FieldType = fftString
Size = 24
end
item
FieldName = 'MOUNT_DUE'
FieldType = fftString
end
item
FieldName = 'MOUNT_DONE'
FieldType = fftString
Size = 24
end
item
FieldName = 'SHIP_DUE'
FieldType = fftString
end
item
FieldName = 'SHIP_DONE'
FieldType = fftString
Size = 24
end
item
FieldName = 'PRICE'
FieldType = fftString
Size = 22
end
item
FieldName = 'QB_REF_NUM'
FieldType = fftString
Size = 24
end
item
FieldName = 'COLORS'
FieldType = fftString
Size = 4096
end>
=======
Top = 224
>>>>>>> f1a2333 (clean up code)
end
object uqOrders: TUniQuery
Connection = ucKG
SQL.Strings = (
'SELECT '
' 0 AS ORDER_ID, -- Integer'
' '#39#39' AS LOCATION, -- String'
' '#39#39' AS COMPANY_NAME, -- String'
' '#39#39' AS JOB_NAME, -- String'
' CURRENT_DATE AS ORDER_DATE, -- DateTime'
' '#39#39' AS ORDER_TYPE, -- String'
' CURRENT_DATE AS PROOF_DUE, -- DateTime'
' CURRENT_TIMESTAMP AS PROOF_DONE, -- DateTime'
' CURRENT_DATE AS ART_DUE, -- DateTime'
' CURRENT_TIMESTAMP AS ART_DONE, -- DateTime'
' CURRENT_DATE AS PLATE_DUE, -- DateTime'
' CURRENT_TIMESTAMP AS PLATE_DONE, -- DateTime'
' CURRENT_DATE AS MOUNT_DUE, -- DateTime'
' CURRENT_TIMESTAMP AS MOUNT_DONE, -- DateTime'
' CURRENT_DATE AS SHIP_DUE, -- DateTime'
' CURRENT_TIMESTAMP AS SHIP_DONE, -- DateTime'
' 0.0 AS PRICE, -- Float'
' '#39#39' AS QB_REF_NUM, -- String'
' '#39#39' AS COLORS -- String'
'FROM dual'
'WHERE 1=0;')
Left = 430
Top = 170
object uqOrdersORDER_ID: TIntegerField
FieldName = 'ORDER_ID'
ReadOnly = True
Required = True
end
object uqOrdersLOCATION: TStringField
FieldName = 'LOCATION'
ReadOnly = True
Required = True
Size = 65530
end
object uqOrdersCOMPANY_NAME: TStringField
FieldName = 'COMPANY_NAME'
ReadOnly = True
Required = True
Size = 65530
end
object uqOrdersJOB_NAME: TStringField
FieldName = 'JOB_NAME'
ReadOnly = True
Required = True
Size = 65530
end
object uqOrdersORDER_DATE: TDateField
FieldName = 'ORDER_DATE'
ReadOnly = True
Required = True
end
object uqOrdersORDER_TYPE: TStringField
FieldName = 'ORDER_TYPE'
ReadOnly = True
Required = True
Size = 65530
end
object uqOrdersPROOF_DUE: TDateField
FieldName = 'PROOF_DUE'
ReadOnly = True
Required = True
end
object uqOrdersPROOF_DONE: TDateTimeField
FieldName = 'PROOF_DONE'
ReadOnly = True
Required = True
end
object uqOrdersART_DUE: TDateField
FieldName = 'ART_DUE'
ReadOnly = True
Required = True
end
object uqOrdersART_DONE: TDateTimeField
FieldName = 'ART_DONE'
ReadOnly = True
Required = True
end
object uqOrdersPLATE_DUE: TDateField
FieldName = 'PLATE_DUE'
ReadOnly = True
Required = True
end
object uqOrdersPLATE_DONE: TDateTimeField
FieldName = 'PLATE_DONE'
ReadOnly = True
Required = True
end
object uqOrdersMOUNT_DUE: TDateField
FieldName = 'MOUNT_DUE'
ReadOnly = True
Required = True
end
object uqOrdersMOUNT_DONE: TDateTimeField
FieldName = 'MOUNT_DONE'
ReadOnly = True
Required = True
end
object uqOrdersSHIP_DUE: TDateField
FieldName = 'SHIP_DUE'
ReadOnly = True
Required = True
end
object uqOrdersSHIP_DONE: TDateTimeField
FieldName = 'SHIP_DONE'
ReadOnly = True
Required = True
end
object uqOrdersPRICE: TFloatField
FieldName = 'PRICE'
ReadOnly = True
Required = True
end
object uqOrdersQB_REF_NUM: TStringField
FieldName = 'QB_REF_NUM'
ReadOnly = True
Required = True
Size = 65530
end
object uqOrdersCOLORS: TStringField
FieldName = 'COLORS'
ReadOnly = True
Required = True
Size = 65530
end
end
end
kgOrdersServer/Source/rOrders.pas
View file @
e92fbc25
...
...
@@ -5,42 +5,22 @@ interface
uses
System
.
SysUtils
,
System
.
Classes
,
frxClass
,
frxExportBaseDialog
,
frxExportPDF
,
Data
.
DB
,
DBAccess
,
Uni
,
UniProvider
,
MySQLUniProvider
,
System
.
IniFiles
,
Vcl
.
Forms
,
MemDS
,
frxDBSet
,
System
.
IOUtils
,
Common
.
Logging
,
frxTableObject
,
frCoreClasse
s
;
MemDS
,
frxDBSet
,
frxTableObject
,
frCoreClasses
,
Common
.
Logging
,
System
.
IOUtil
s
;
type
TrptOrders
=
class
(
TDataModule
)
frxOrders
:
TfrxReport
;
frxPDFExport1
:
TfrxPDFExport
;
ucKG
:
TUniConnection
;
frxDBOrders
:
TfrxDBDataset
;
uqOrders
:
TUniQuery
;
uqOrdersORDER_ID
:
TIntegerField
;
uqOrdersLOCATION
:
TStringField
;
uqOrdersCOMPANY_NAME
:
TStringField
;
uqOrdersJOB_NAME
:
TStringField
;
uqOrdersORDER_DATE
:
TDateField
;
uqOrdersORDER_TYPE
:
TStringField
;
uqOrdersPROOF_DUE
:
TDateField
;
uqOrdersPROOF_DONE
:
TDateTimeField
;
uqOrdersART_DUE
:
TDateField
;
uqOrdersART_DONE
:
TDateTimeField
;
uqOrdersPLATE_DUE
:
TDateField
;
uqOrdersPLATE_DONE
:
TDateTimeField
;
uqOrdersMOUNT_DUE
:
TDateField
;
uqOrdersMOUNT_DONE
:
TDateTimeField
;
uqOrdersSHIP_DUE
:
TDateField
;
uqOrdersSHIP_DONE
:
TDateTimeField
;
uqOrdersPRICE
:
TFloatField
;
uqOrdersQB_REF_NUM
:
TStringField
;
uqOrdersCOLORS
:
TStringField
;
frxReportTableObject1
:
TfrxReportTableObject
;
frxDBOrders
:
TfrxDBDataset
;
procedure
DataModuleCreate
(
Sender
:
TObject
);
<<<<<<<
HEAD
=======
private
>>>>>>>
f1a2333
(
clean
up
code
)
public
procedure
GenerateSimpleReport
(
OrderID
:
Integer
);
procedure
PrepareReport
(
const
SQL
:
string
);
procedure
GeneratePDF
;
end
;
...
...
@@ -59,12 +39,8 @@ uses
procedure
TrptOrders
.
DataModuleCreate
(
Sender
:
TObject
);
begin
<<<<<<<
HEAD
iniFile
:=
TIniFile
.
Create
(
ExtractFilePath
(
Application
.
ExeName
)
+
'kgOrdersServer.ini'
);
=======
Logger
.
Log
(
3
,
'TAuthDatabase.DataModuleCreate'
);
LoadDatabaseSettings
(
ucKG
,
'kgOrdersServer.ini'
);
>>>>>>>
f1a2333
(
clean
up
code
)
try
ucKG
.
Connect
;
except
...
...
@@ -75,9 +51,38 @@ begin
end
;
end
;
procedure
TrptOrders
.
GenerateSimpleReport
(
OrderID
:
Integer
);
begin
try
Logger
.
Log
(
5
,
'Generating Report for Order ID: '
+
OrderID
.
ToString
);
uqOrders
.
Close
;
uqOrders
.
SQL
.
Text
:=
'SELECT ORDER_ID FROM corrugated_plate_orders WHERE ORDER_ID = :OrderID'
;
uqOrders
.
ParamByName
(
'OrderID'
).
AsInteger
:=
OrderID
;
try
uqOrders
.
Open
;
except
on
E
:
Exception
do
begin
Logger
.
Log
(
1
,
'Error executing query: '
+
E
.
Message
);
Exit
;
end
;
end
;
frxOrders
.
PrepareReport
;
frxOrders
.
ShowReport
;
finally
uqOrders
.
Close
;
frxOrders
.
Clear
;
Logger
.
Log
(
5
,
'Report generation complete for Order ID: '
+
OrderID
.
ToString
);
end
;
end
;
procedure
TrptOrders
.
PrepareReport
(
const
SQL
:
string
);
begin
// Prepare and
open
the query
// Prepare and
load data into
the query
uqOrders
.
Close
;
uqOrders
.
SQL
.
Text
:=
SQL
;
uqOrders
.
Open
;
...
...
@@ -85,26 +90,22 @@ end;
procedure
TrptOrders
.
GeneratePDF
;
var
ReportFileName
:
string
;
Report
Dir
,
Report
FileName
:
string
;
begin
ReportFileName
:=
TPath
.
Combine
(
'C:\Projects\KGOrders\Reports'
,
'OrderReport_'
+
FormatDateTime
(
'yyyymmdd_hhnnss'
,
Now
)
+
'.pdf'
);
ReportDir
:=
'C:\Projects\KGOrders\Reports'
;
// Define output file
ReportFileName
:=
TPath
.
Combine
(
ReportDir
,
'OrderReport_'
+
FormatDateTime
(
'yyyymmdd_hhnnss'
,
Now
)
+
'.pdf'
);
if
not
DirectoryExists
(
ExtractFilePath
(
ReportFileName
))
then
ForceDirectories
(
ExtractFilePath
(
ReportFileName
));
// Generate the report
// Prepare and export the report
frxOrders
.
PrepareReport
;
frxPDFExport1
.
FileName
:=
ReportFileName
;
frxPDFExport1
.
ShowDialog
:=
False
;
frxOrders
.
Export
(
frxPDFExport1
);
Logger
.
log
(
5
,
'PDF saved to: '
+
ReportFileName
);
frxOrders
.
ShowPreparedReport
;
Logger
.
Log
(
5
,
'PDF saved to: '
+
ReportFileName
);
end
;
<<<<<<<
HEAD
=======
>>>>>>>
f1a2333
(
clean
up
code
)
end
.
end
.
kgOrdersServer/Source/rptOrders.fr3
View file @
e92fbc25
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<TfrxReport
Version=
"2024.2.1"
DotMatrixReport=
"False"
IniFile=
"\Software\Fast Reports"
PreviewOptions.Buttons=
"167935"
PreviewOptions.Zoom=
"1"
PrintOptions.Printer=
"Default"
PrintOptions.PrintOnSheet=
"0"
ReportOptions.CreateDate=
"45642.4492654167"
ReportOptions.Description.Text=
""
ReportOptions.LastChange=
"4564
3.0117902315
"
ScriptLanguage=
"PascalScript"
ScriptText.Text=
"begin end."
>
<TfrxReport
Version=
"2024.2.1"
DotMatrixReport=
"False"
IniFile=
"\Software\Fast Reports"
PreviewOptions.Buttons=
"167935"
PreviewOptions.Zoom=
"1"
PrintOptions.Printer=
"Default"
PrintOptions.PrintOnSheet=
"0"
ReportOptions.CreateDate=
"45642.4492654167"
ReportOptions.Description.Text=
""
ReportOptions.LastChange=
"4564
2.8021125694
"
ScriptLanguage=
"PascalScript"
ScriptText.Text=
"begin end."
>
<Datasets>
<item
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
/>
</Datasets>
...
...
@@ -7,49 +7,208 @@
<TfrxReportPage
Name=
"Page1"
HGuides.Text=
""
VGuides.Text=
""
Orientation=
"poLandscape"
PaperWidth=
"279.4"
PaperHeight=
"215.9"
PaperSize=
"1"
LeftMargin=
"10"
RightMargin=
"10"
TopMargin=
"10"
BottomMargin=
"10"
ColumnWidth=
"0"
ColumnPositions.Text=
""
Frame.Typ=
"0"
MirrorMode=
"0"
>
<TfrxReportTitle
Name=
"ttlMain"
FillType=
"ftBrush"
FillGap.Top=
"0"
FillGap.Left=
"0"
FillGap.Bottom=
"0"
FillGap.Right=
"0"
Frame.Typ=
"0"
Height=
"22.67718"
Left=
"0"
Top=
"18.89765"
Width=
"980.410082"
>
<TfrxMemoView
Name=
"Memo1"
AllowVectorExport=
"True"
Left=
"7.55905967"
Top=
"-2.3E-7"
Width=
"102.04731359"
Height=
"18.89764977"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"0"
Text=
"Order Schedule"
/>
<TfrxMemoView
Name=
""
AllowVectorExport=
"True"
Left=
"0"
Top=
"-18.89765"
Width=
"0"
Height=
"0"
Frame.Typ=
"0"
Text=
""
/>
<TfrxMemoView
Name=
""
AllowVectorExport=
"True"
Left=
"0"
Top=
"-18.89765"
Width=
"0"
Height=
"0"
Frame.Typ=
"0"
Text=
""
/>
<TfrxMemoView
Name=
""
AllowVectorExport=
"True"
Left=
"0"
Top=
"-18.89765"
Width=
"0"
Height=
"0"
Frame.Typ=
"0"
Text=
""
/>
</TfrxReportTitle>
<TfrxMasterData
Name=
"MasterData1"
FillType=
"ftBrush"
FillGap.Top=
"0"
FillGap.Left=
"0"
FillGap.Bottom=
"0"
FillGap.Right=
"0"
Frame.Typ=
"0"
Frame.Width=
"3"
Height=
"166.29932"
Left=
"0"
Top=
"173.85838"
Width=
"980.410082"
Columns=
"18"
ColumnWidth=
"0"
ColumnGap=
"0"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
RowCount=
"0"
>
<TfrxMemoView
Name=
"frxDBOrdersORDER_ID"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"0"
Top=
"3.77953"
Width=
"45.35436073"
Height=
"86.92919"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"ORDER_ID"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."ORDER_ID"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersLOCATION"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"49.13389"
Top=
"3.77953"
Width=
"26.45671073"
Height=
"86.92919"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"LOCATION"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."LOCATION"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersCOMPANY_NAME"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"79.37013"
Top=
"3.77953"
Width=
"105.82684"
Height=
"86.92919"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"COMPANY_NAME"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."COMPANY_NAME"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersJOB_NAME"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"188.9765"
Top=
"3.77953"
Width=
"105.82684"
Height=
"86.92919"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"JOB_NAME"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."JOB_NAME"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersORDER_DATE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"298.58287"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"ORDER_DATE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."ORDER_DATE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersPROOF_DUE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"336.756123"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"PROOF_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."PROOF_DUE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersPROOF_DONE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"374.929376"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"PROOF_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."PROOF_DONE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersART_DUE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"413.102629"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"ART_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."ART_DUE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersART_DONE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"451.275882"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"ART_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."ART_DONE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersPLATE_DUE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"489.449135"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"PLATE_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."PLATE_DUE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersPLATE_DONE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"527.622388"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"PLATE_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."PLATE_DONE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersMOUNT_DUE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"565.795641"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"MOUNT_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."MOUNT_DUE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersMOUNT_DONE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"603.968894"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"MOUNT_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."MOUNT_DONE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersSHIP_DUE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"642.142147"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"SHIP_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."SHIP_DUE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersSHIP_DONE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"680.3154"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"86.92919167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"SHIP_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."SHIP_DONE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersPRICE"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"718.1107"
Top=
"3.77953"
Width=
"49.13389073"
Height=
"86.92919"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"PRICE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."PRICE"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersQB_REF_NUM"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"771.02412"
Top=
"3.77953"
Width=
"71.81107073"
Height=
"86.92919"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"QB_REF_NUM"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."QB_REF_NUM"]"
/>
<TfrxMemoView
Name=
"frxDBOrdersCOLORS"
IndexTag=
"1"
AllowVectorExport=
"True"
Left=
"846.61472"
Top=
"3.77953"
Width=
"132.28355073"
Height=
"86.92919"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"COLORS"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"[frxDBOrders."COLORS"]"
/>
<TfrxMasterData
Name=
"MasterData1"
FillType=
"ftBrush"
FillGap.Top=
"0"
FillGap.Left=
"0"
FillGap.Bottom=
"0"
FillGap.Right=
"0"
Frame.Typ=
"0"
Height=
"612.28386"
Left=
"0"
Top=
"102.04731"
Width=
"980.410082"
ColumnWidth=
"0"
ColumnGap=
"0"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
RowCount=
"0"
>
<TfrxTableObject
Name=
"TableObject1"
AllowVectorExport=
"True"
Left=
"0"
Top=
"-2.78000000000084E-6"
>
<TfrxTableColumn
Name=
"TableColumn1"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn2"
Width=
"30.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn3"
Width=
"62.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn4"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn5"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn6"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn7"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn8"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn9"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn10"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn11"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn12"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn13"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn14"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn15"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn16"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn17"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableColumn
Name=
"TableColumn18"
Width=
"54.3832372222222"
MinWidth=
"0"
MaxWidth=
"75.5906"
/>
<TfrxTableRow
Name=
"TableRow1"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"125.732364666667"
>
<TfrxTableCell
Name=
"TableCell1"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Order ID"
/>
<TfrxTableCell
Name=
"TableCell2"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Loc"
/>
<TfrxTableCell
Name=
"TableCell3"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Company Name"
/>
<TfrxTableCell
Name=
"TableCell4"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Job Name"
/>
<TfrxTableCell
Name=
"TableCell5"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Order Date"
/>
<TfrxTableCell
Name=
"TableCell26"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Proof Due"
/>
<TfrxTableCell
Name=
"TableCell31"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Proof Done"
/>
<TfrxTableCell
Name=
"TableCell36"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Art Due"
/>
<TfrxTableCell
Name=
"TableCell41"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Art Done"
/>
<TfrxTableCell
Name=
"TableCell46"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Plate Due"
/>
<TfrxTableCell
Name=
"TableCell51"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Plate Done"
/>
<TfrxTableCell
Name=
"TableCell56"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Mount Due"
/>
<TfrxTableCell
Name=
"TableCell61"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Mount Done"
/>
<TfrxTableCell
Name=
"TableCell66"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Ship Due"
/>
<TfrxTableCell
Name=
"TableCell71"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Ship Done"
/>
<TfrxTableCell
Name=
"TableCell76"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Price"
/>
<TfrxTableCell
Name=
"TableCell81"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"QB Ref Num"
/>
<TfrxTableCell
Name=
"TableCell86"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Frame.Typ=
"15"
Text=
"Colors"
/>
</TfrxTableRow>
<TfrxTableRow
Name=
"TableRow2"
AutoSize=
"True"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"125.732364666667"
>
<TfrxTableCell
Name=
"TableCell6"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"ORDER_ID"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."ORDER_ID"]"
/>
<TfrxTableCell
Name=
"TableCell7"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"LOCATION"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."LOCATION"]"
/>
<TfrxTableCell
Name=
"TableCell8"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"COMPANY_NAME"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."COMPANY_NAME"]"
/>
<TfrxTableCell
Name=
"TableCell9"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"JOB_NAME"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."JOB_NAME"]"
/>
<TfrxTableCell
Name=
"TableCell10"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"ORDER_DATE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."ORDER_DATE"]"
/>
<TfrxTableCell
Name=
"TableCell27"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"PROOF_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."PROOF_DUE"]"
/>
<TfrxTableCell
Name=
"TableCell32"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"PROOF_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."PROOF_DONE"]"
/>
<TfrxTableCell
Name=
"TableCell37"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"ART_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."ART_DUE"]"
/>
<TfrxTableCell
Name=
"TableCell42"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"ART_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."ART_DONE"]"
/>
<TfrxTableCell
Name=
"TableCell47"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"PLATE_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."PLATE_DUE"]"
/>
<TfrxTableCell
Name=
"TableCell52"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"PLATE_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."PLATE_DONE"]"
/>
<TfrxTableCell
Name=
"TableCell57"
AllowVectorExport=
"True"
Restrictions=
"8"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
DataField=
"MOUNT_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."MOUNT_DUE"]"
/>
<TfrxTableCell
Name=
"TableCell62"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"MOUNT_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."MOUNT_DONE"]"
/>
<TfrxTableCell
Name=
"TableCell67"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"SHIP_DUE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."SHIP_DUE"]"
/>
<TfrxTableCell
Name=
"TableCell72"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"SHIP_DONE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."SHIP_DONE"]"
/>
<TfrxTableCell
Name=
"TableCell77"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"PRICE"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."PRICE"]"
/>
<TfrxTableCell
Name=
"TableCell82"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"QB_REF_NUM"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."QB_REF_NUM"]"
/>
<TfrxTableCell
Name=
"TableCell87"
AllowVectorExport=
"True"
Restrictions=
"8"
DataField=
"COLORS"
DataSet=
"frxDBOrders"
DataSetName=
"frxDBOrders"
Frame.Typ=
"15"
Text=
"[frxDBOrders."COLORS"]"
/>
</TfrxTableRow>
<TfrxTableRow
Name=
"TableRow3"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"51.6535766666667"
>
<TfrxTableCell
Name=
"TableCell38"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell39"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell40"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell43"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell44"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell45"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell48"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell49"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell50"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell53"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell54"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell55"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell58"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell59"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell60"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell63"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell64"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell65"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
</TfrxTableRow>
<TfrxTableRow
Name=
"TableRow4"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"51.6535766666667"
>
<TfrxTableCell
Name=
"TableCell68"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell69"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell70"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell73"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell74"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell75"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell78"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell79"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell80"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell83"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell84"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell85"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell88"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell89"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell90"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell91"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell92"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell93"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
</TfrxTableRow>
<TfrxTableRow
Name=
"TableRow5"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"51.6535766666667"
>
<TfrxTableCell
Name=
"TableCell94"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell95"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell96"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell97"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell98"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell99"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell100"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell101"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell102"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell103"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell104"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell105"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell106"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell107"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell108"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell109"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell110"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell111"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
</TfrxTableRow>
<TfrxTableRow
Name=
"TableRow6"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"51.6535766666667"
>
<TfrxTableCell
Name=
"TableCell112"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell113"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell114"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell115"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell116"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell117"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell118"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell119"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell120"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell121"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell122"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell123"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell124"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell125"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell126"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell127"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell128"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell129"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
</TfrxTableRow>
<TfrxTableRow
Name=
"TableRow7"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"51.6535766666667"
>
<TfrxTableCell
Name=
"TableCell130"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell131"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell132"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell133"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell134"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell135"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell136"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell137"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell138"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell139"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell140"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell141"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell142"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell143"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell144"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell145"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell146"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell147"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
</TfrxTableRow>
<TfrxTableRow
Name=
"TableRow8"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"51.6535766666667"
>
<TfrxTableCell
Name=
"TableCell148"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell149"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell150"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell151"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell152"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell153"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell154"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell155"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell156"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell157"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell158"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell159"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell160"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell161"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell162"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell163"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell164"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell165"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
</TfrxTableRow>
<TfrxTableRow
Name=
"TableRow9"
MinHeight=
"0"
MaxHeight=
"0"
Height=
"51.6535766666667"
>
<TfrxTableCell
Name=
"TableCell166"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell167"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell168"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell169"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell170"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell171"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell172"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell173"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell174"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell175"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell176"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell177"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell178"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell179"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell180"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell181"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell182"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
<TfrxTableCell
Name=
"TableCell183"
AllowVectorExport=
"True"
Restrictions=
"8"
Frame.Typ=
"15"
Text=
""
/>
</TfrxTableRow>
</TfrxTableObject>
</TfrxMasterData>
<TfrxHeader
Name=
"Header1"
FillType=
"ftBrush"
FillGap.Top=
"0"
FillGap.Left=
"0"
FillGap.Bottom=
"0"
FillGap.Right=
"0"
Frame.Typ=
"0"
Height=
"49.13389"
Left=
"0"
Top=
"102.04731"
Width=
"980.410082"
>
<TfrxMemoView
Name=
"Memo2"
AllowVectorExport=
"True"
Left=
"0.75590563"
Top=
"3.77952917"
Width=
"45.35436073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Order ID"
/>
<TfrxMemoView
Name=
"Memo3"
AllowVectorExport=
"True"
Left=
"49.51184281"
Top=
"3.77953"
Width=
"26.45671073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Loc"
/>
<TfrxMemoView
Name=
"Memo4"
AllowVectorExport=
"True"
Left=
"79.37013"
Top=
"3.77953"
Width=
"105.82684073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Company Name"
/>
<TfrxMemoView
Name=
"Memo5"
AllowVectorExport=
"True"
Left=
"188.9765"
Top=
"3.77953"
Width=
"105.82684073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Job Name"
/>
<TfrxMemoView
Name=
"Memo17"
AllowVectorExport=
"True"
Left=
"717.35479437"
Top=
"3.77953083"
Width=
"49.13389073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Price"
/>
<TfrxMemoView
Name=
"Memo18"
AllowVectorExport=
"True"
Left=
"769.89026155"
Top=
"3.77953166"
Width=
"71.81107073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"QB Ref Num"
/>
<TfrxMemoView
Name=
"Memo19"
AllowVectorExport=
"True"
Left=
"845.10290874"
Top=
"3.77953166"
Width=
"132.28355073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Colors"
/>
<TfrxMemoView
Name=
"Memo6"
AllowVectorExport=
"True"
Left=
"298.20491718"
Top=
"3.77953083"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Order Date"
/>
<TfrxMemoView
Name=
"Memo7"
AllowVectorExport=
"True"
Left=
"336.340374899"
Top=
"3.77953083"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Proof Due"
/>
<TfrxMemoView
Name=
"Memo8"
AllowVectorExport=
"True"
Left=
"374.475832618"
Top=
"3.77953"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Proof Done"
/>
<TfrxMemoView
Name=
"Memo11"
AllowVectorExport=
"True"
Left=
"488.882205775"
Top=
"3.77953083"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Plate Due"
/>
<TfrxMemoView
Name=
"Memo12"
AllowVectorExport=
"True"
Left=
"527.017663494"
Top=
"3.77953166"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Plate Done"
/>
<TfrxMemoView
Name=
"Memo13"
AllowVectorExport=
"True"
Left=
"565.15312121"
Top=
"3.77953166"
Width=
"37.79530073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Mount Due"
/>
<TfrxMemoView
Name=
"Memo14"
AllowVectorExport=
"True"
Left=
"603.28857893"
Top=
"3.77953"
Width=
"37.79530073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Mount Done"
/>
<TfrxMemoView
Name=
"Memo15"
AllowVectorExport=
"True"
Left=
"641.424036651"
Top=
"3.77953083"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Ship Due"
/>
<TfrxMemoView
Name=
"Memo16"
AllowVectorExport=
"True"
Left=
"679.55949437"
Top=
"3.77953083"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Ship Done"
/>
<TfrxMemoView
Name=
"Memo9"
AllowVectorExport=
"True"
Left=
"412.611290337"
Top=
"3.77953083"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Art Due"
/>
<TfrxMemoView
Name=
"Memo10"
AllowVectorExport=
"True"
Left=
"450.746748056"
Top=
"3.77953083"
Width=
"34.01577073"
Height=
"34.01577167"
ContentScaleOptions.Constraints.MaxIterationValue=
"0"
ContentScaleOptions.Constraints.MinIterationValue=
"0"
Font.Charset=
"1"
Font.Color=
"0"
Font.Height=
"-12"
Font.Name=
"Arial"
Font.Style=
"0"
Frame.Typ=
"0"
ParentFont=
"False"
Text=
"Art Done"
/>
</TfrxHeader>
</TfrxReportPage>
</TfrxReport>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment