You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (isset($_POST['Order'])) {
$model->attributes = $_POST['Order'];
if (isset($_POST['Customer']))
$model->customer->setAttributes($_POST['Customer']);
if ($model->withRelated->save(true, array('customer')))
$this->redirect(array('admin'));
}
After save customer_id property of Order is NULL.
The text was updated successfully, but these errors were encountered:
I have a problem with saving related model.
Order model :
Customer model:
Controller:
After save customer_id property of Order is NULL.
The text was updated successfully, but these errors were encountered: