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
f4f53769
Commit
f4f53769
authored
Dec 11, 2024
by
cam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pushing working bug fixes to be merged
parent
601d01e1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
1 deletions
+28
-1
View.OrderEntryCorrugated.pas
kgOrdersClient/View.OrderEntryCorrugated.pas
+28
-1
No files found.
kgOrdersClient/View.OrderEntryCorrugated.pas
View file @
f4f53769
...
...
@@ -457,7 +457,9 @@ begin
addColorRow
(
String
(
color
[
'#'
]),
string
(
color
[
'Color'
]),
string
(
color
[
'LPI'
]),
string
(
color
[
'Size'
]));
end
;
end
;
console
.
log
(
XDataWebDataSet1staff_fields_invoice_to
.
AsString
);
// Check boxes and dates need to be manually set
if
not
(
XDataWebDataSet1staff_fields_order_date
.
AsString
=
''
)
then
dtpOrderDate
.
Date
:=
StrToDateTime
(
XDataWebDataSet1staff_fields_order_date
.
Value
)
else
...
...
@@ -502,6 +504,9 @@ begin
cbRefArtPrintCard
.
Checked
:=
true
else
cbRefArtPrintCard
.
Checked
:=
false
;
console
.
log
(
XDataWebDataSet1supplied_by_customer_color_copy
.
AsString
);
if
XDataWebDataSet1supplied_by_customer_color_copy
.
AsString
=
'T'
then
cbColorCopy
.
Checked
:=
true
else
...
...
@@ -515,6 +520,28 @@ begin
else
cbSampleCarton
.
Checked
:=
false
;
// Mounting check boxes
if
XDataWebDataSet1mounting_loose
.
AsString
<>
''
then
cbLoose
.
Checked
:=
true
else
cbLoose
.
Checked
:=
false
;
if
XDataWebDataSet1mounting_sticky_bak
.
AsString
=
'T'
then
cbStickyBak
.
Checked
:=
true
else
cbStickyBak
.
Checked
:=
false
;
if
XDataWebDataSet1mounting_full_mount
.
AsString
=
'T'
then
cbFullMount
.
Checked
:=
true
else
cbFullMount
.
Checked
:=
false
;
if
XDataWebDataSet1mounting_strip_mount
.
AsString
<>
''
then
cbStripMount
.
Checked
:=
true
else
cbStripMount
.
Checked
:=
false
;
end
;
...
...
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