Add TaskTypeID to fixOrder task insert
This commit is contained in:
parent
ce334cf95c
commit
b96277e902
1 changed files with 2 additions and 2 deletions
|
|
@ -87,9 +87,9 @@ if (qTask.recordCount == 0) {
|
|||
|
||||
queryExecute("
|
||||
INSERT INTO Tasks (
|
||||
BusinessID, OrderID, Title, CreatedOn, ClaimedByUserID
|
||||
BusinessID, OrderID, Title, CreatedOn, ClaimedByUserID, TaskTypeID
|
||||
) VALUES (
|
||||
:businessId, :orderId, :title, NOW(), 0
|
||||
:businessId, :orderId, :title, NOW(), 0, 1
|
||||
)
|
||||
", {
|
||||
businessId: { value: businessId, cfsqltype: "cf_sql_integer" },
|
||||
|
|
|
|||
Reference in a new issue