|
@@ -94,7 +94,8 @@ namespace CRM.Visitors.ActionProviders
|
94
|
94
|
options1.Id = checkoutid;
|
95
|
95
|
options1.TableName = "bizgazecrm_visitorcheckout";
|
96
|
96
|
var updateValues = new Dictionary<string, object>();
|
97
|
|
- updateValues.Add("checkoutdate", DateTime.Now);
|
|
97
|
+ DateTime date = DateTime.Now;
|
|
98
|
+ updateValues.Add("checkoutdate", date);
|
98
|
99
|
updateValues.Add("createddate", DateTime.Now);
|
99
|
100
|
updateValues.Add("uniqueid", code);
|
100
|
101
|
updateValues.Add("comments", comments.ToString());
|