I'm using cakephp 2.1 and Wamp and it's all good. I need to get a value (not the id field) from one model (project) and assign it to the record being saved (setup), something like:
SetupsConstroller.php
$this->request->data['Setup']['client_id'] = $this->Setup->$projects['Project']['client_id'];
model setup.php
var $belongsTo = array('Client', 'User',
'Project' => array(
'className' => 'Project',
'foreignKey' => 'pr_number'
)
);
In my SetupsController I get the projects:
$projects = $this->Setup->Project->find('list', array(
'order' => 'name',
'foreignKey' => 'pr_number',
'fields' => array('Project.pr_number', 'Project.name'),
'conditions' => array('pr_status' => 2)
));
So when adding the setup, I get pr_number from $projects, all good:
add.ctp
echo $this->Form->input('pr_number', array('label' => 'ASC Project:', 'options' => $projects));
Now, what I need is another value (client_id) from the projects record, and assign it to a column on my setups model being saved. Something like I did to assign the current user_id just before saving:
SetupsController.php (add function)
$this->request->data['Setup']['user_id'] = $this->Auth->user('id'); // this works fine
// Next line needs fixing, returns NULL, Don't know how to access client_id from projects model!
$this->request->data['Setup']['client_id'] = $this->Setup->$projects['Project']['client_id'];
if ($this->Setup->save($this->request->data)) { // then save
Tried loadModule and other suggestions but no luck.
I don’t think this is that uncommon?
Can anyone help?
Thank you so much.
Carlos from Tijuana, México