* Fix type error.

This commit is contained in:
dingguodong
2023-09-01 16:15:00 +08:00
parent c1a570c53e
commit eaa292bbb1
+1 -1
View File
@@ -1248,7 +1248,7 @@ class programplanModel extends model
if(isset($newParent) && $newParent)
{
$this->dao->update(TABLE_EXECUTION)->data($newParent)->where('id')->eq($id)->exec();
$this->loadModel('action')->create('execution', $id, $parentAction, '', $parentAction);
$this->loadModel('action')->create('execution', (int)$id, $parentAction, '', $parentAction);
}
unset($newParent, $parentAction);
}