I have a form that creates an invoice, the Sender and Receiver form inputs are taken from an available list in the database.
accounts(id,...., company_name, abn) ---> id is primary
users(id, username, title, firstname, surname,...) ---> id is primary
accounts_users(id, account_id, user_id) --->account_id from accounts, user_id from users
Each user can only belong to one account, but one account can have many users. The form inputs are the account_id, according to who the logged in user is.
In the Invoices Controller:
$accounts3=$this->User->AccountsUser->find('list', array(
'fields'=>array('account_id','account_id'),'conditions' => array(
'user_id' => $this->Auth->user('id'))));
$accounts=$this->User->Relationship->find('list', array('fields'=>array('receiver_id'),'conditions' => array('sender_id' => $accounts2)));
In the addInvoice View:
<?php
echo $this->Form->create('Invoice', array('action'=>'addinvoice'));
echo $this->Form->input('sender_id',array('label'=>'Sender: ', 'options' => array('$accounts3' => 'COMPANY NAME')));
echo $this->Form->input('receiver_id',array('label'=>'Receiver: ', 'type' => 'select', 'options' => $accounts));
echo $this->Form->input('active', array('label' => 'Schedule?', 'options' => array('1'=>'Send','0'=>'Schedule'), 'default'=>'1'));
echo $this->Form->hidden('templates_id', array('default'=>'0'));
echo $this->Form->end('Submit');
The label of 'COMPANY NAME' in this case is hard coded and needs to be replaced by a dynamic label which would be company_name from the accounts table.
A bit more complicated, the receiver label needs to be company_name from accounts, or if company_name is NULL, (so they're a personal, not a business account) it would be username from users.
Solutions attempted:
***creating $sendername variable in InvoicesController
$sendername=$this->User->Account->find('list', array('fields'=>array('company_name'),'conditions' => array('account_id' => $accounts3)));
OR
$sendername=$this->User->AccountsUser->find('list', array('fields'=>array('id','company_name'),'conditions' => array('user_id' => $this->Auth->user('id'))));
Those don't seem to work, wondering if it's even possible in CakePHP?