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
1285e060
Commit
1285e060
authored
Jan 16, 2025
by
cam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot two files in the previous commit
parent
8c0bceeb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
Lookup.ServiceImpl.pas
kgOrdersServer/Source/Lookup.ServiceImpl.pas
+10
-1
kgOrdersServer.ini
kgOrdersServer/kgOrdersServer.ini
+1
-1
No files found.
kgOrdersServer/Source/Lookup.ServiceImpl.pas
View file @
1285e060
...
...
@@ -1011,6 +1011,7 @@ var
UserID
:
string
;
SQL
:
string
;
begin
logger
.
Log
(
1
,
'Set Status Hit'
);
params
:=
TStringList
.
Create
;
// parse the statusOptions
params
.
Delimiter
:=
'&'
;
...
...
@@ -1023,7 +1024,8 @@ begin
SQL
:=
'select * from orders_status where ORDER_ID = '
+
OrderID
+
' AND '
+
'ORDER_STATUS = '
+
quotedStr
(
Status
);
try
logger
.
Log
(
1
,
'Trying to Set Status'
);
doQuery
(
ordersDB
.
UniQuery1
,
SQL
);
if
ordersDB
.
UniQuery1
.
IsEmpty
then
...
...
@@ -1047,7 +1049,14 @@ begin
end
;
ordersDB
.
UniQuery1
.
Post
;
logger
.
Log
(
1
,
'Status Successfully set'
);
result
:=
'success'
;
except
on
E
:
Exception
do
// This block will catch any exception derived from the Exception class
logger
.
Log
(
5
,
'An error occurred when setting status: '
+
E
.
Message
);
end
;
end
;
function
TLookupService
.
AddUser
(
userInfo
:
string
):
string
;
...
...
kgOrdersServer/kgOrdersServer.ini
View file @
1285e060
[Settings]
MemoLogLevel
=
4
FileLogLevel
=
5
LogFileNum
=
11
0
LogFileNum
=
11
1
webClientVersion
=
1.0.0
[Database]
...
...
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