Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a User controller with HABTM relationship with Company and Address Model. I create a function in the UserController

public function company_profile(){
    //$logo= $this->Upload->upload('/img/company_logo', $this->data['logo']['a'],null,array('image/jpeg', 'image/jpg', 'image/png'));
    $log = $this->Auth->User('id');
    // retrieve the data of the currently logged in user
    $user = $this->User->find('first',array(
            'conditions'=>array('User.id'=>$log),
            'recursive'=>1
    ));

    //pr($user);exit();

    if($this->request->is('post') || $this->request->is('put')){
        if(isset($user['Company']) && !empty($user['Company'])){
            // a user profile already exists    
            $newcompany = array();
            $this->User->Company->id = $user['Company'][0]['user_id'];
            $newcompany['Company'] = $this->data['Company'][0];
            $newcompany['Company']['user_id'] = $user['Company'][0]['user_id'];
            $this->User->Company->save($newcompany);


        } else {
            $this->User->Company->create();
            $newcompany = array();
            $newcompany['Company'] = $this->data['Company'][0];
            $newcompany['Company']['user_id'] = $log;
            $this->User->Company->save($newcompany);
            $newcompanyid = $this->User->Company->getInsertId();





        }
        //pr($this->data);exit();
        if(isset($user['Address']) && !empty($user['Address'])){
            $newAddress=array();
            $this->User->Address->id = $user['Address'][0]['id'];

            $newAddress['Address']['id'] = $user['Address'][0]['id'];
            $newAddress['Address'] = $this->data['Address'][0];
            $this->User->Address->save($newAddress);
        } else{
            $this->User->Address->create();
            $newAddress = array();
            $newAddress['Address'] = $this->data['Address'][0];
            //pr($newAddress);exit();
            $this->User->Address->save($newAddress);
        }
                        //pr($newcompany);exit();


    }else{
    $this->request->data = $this->User->read(null, $log);
    }
$this->loadModel('Category');
$categories = $this->Category->find('list');
$this->set(compact('user','categories'));

}

And in my View i had this

<?php echo $this->Form->create('Company',array('type' => 'file'));?>
<fieldset>
    <legend><?php echo __('Add  Profile'); ?></legend>
    <?php Configure::load('types');
    $provinces = Configure::read('address.province');
    $countries=Configure::read('address.countries');
    $nationalities=Configure::read('address.nationalities');
    ?>
<?php
    echo $this->Form->input('Company.0.category_id');
    echo $this->Form->input('Company.0.name');
    echo $this->Form->input('Company.0.description');
    if(!empty($this->data['Company.0.logo'])){
?>
    <div class="input">
    <label>Current Photo:</label>
    <img src="<?php echo $this->data['Company.logo']; ?>" alt="Company logo" width="200" />
    </div>

<?php
    echo $this->Form->input('img.a.0',array('type'=>'file','label'=>'Company Logo'));
    }else{
    echo $this->Form->input('img.a.0',array('type'=>'file','label'=>'Company Logo'));
    }
?>
    <legend><?php echo __('Add Company Address'); ?></legend>
    <?php Configure::load('types');
    $provinces = Configure::read('address.province');
    $countries=Configure::read('address.countries');
    $nationalities=Configure::read('address.nationalities');
    ?>
<?php

    echo $this->Form->input('Address.0.street_address');
    echo $this->Form->input('Address.0.city');
    echo $this->Form->input('Address.0.province',array('options'=>$provinces));
    echo $this->Form->input('Address.0.postal_code');
    echo $this->Form->input('Address.0.country',array('options'=>$countries));

?>

</fieldset>
<?php echo $this->Form->end(__('Save Profile'));?>

How am i able to save the data in companies_users and companies_addresses joint table i really don't know what is happening why is it not saving in the joint table

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.