Commit 1285e060 by cam

Forgot two files in the previous commit

parent 8c0bceeb
...@@ -1011,6 +1011,7 @@ var ...@@ -1011,6 +1011,7 @@ var
UserID: string; UserID: string;
SQL: string; SQL: string;
begin begin
logger.Log(1, 'Set Status Hit');
params := TStringList.Create; params := TStringList.Create;
// parse the statusOptions // parse the statusOptions
params.Delimiter := '&'; params.Delimiter := '&';
...@@ -1023,7 +1024,8 @@ begin ...@@ -1023,7 +1024,8 @@ begin
SQL := 'select * from orders_status where ORDER_ID = ' + OrderID + ' AND ' + SQL := 'select * from orders_status where ORDER_ID = ' + OrderID + ' AND ' +
'ORDER_STATUS = ' + quotedStr(Status); 'ORDER_STATUS = ' + quotedStr(Status);
try
logger.Log(1, 'Trying to Set Status');
doQuery(ordersDB.UniQuery1, SQL); doQuery(ordersDB.UniQuery1, SQL);
if ordersDB.UniQuery1.IsEmpty then if ordersDB.UniQuery1.IsEmpty then
...@@ -1047,7 +1049,14 @@ begin ...@@ -1047,7 +1049,14 @@ begin
end; end;
ordersDB.UniQuery1.Post; ordersDB.UniQuery1.Post;
logger.Log(1, 'Status Successfully set');
result := 'success'; 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; end;
function TLookupService.AddUser(userInfo:string): string; function TLookupService.AddUser(userInfo:string): string;
......
[Settings] [Settings]
MemoLogLevel=4 MemoLogLevel=4
FileLogLevel=5 FileLogLevel=5
LogFileNum=110 LogFileNum=111
webClientVersion=1.0.0 webClientVersion=1.0.0
[Database] [Database]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment