Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to set up a commercial proposal system using CakePHP 2.3.

It has 5 tables which are associated (see details below). This system will have 1 page on which are 5 forms for each table. (see details below).

Form 1: table proposals
Form 2: table clients FK proposal_id
Form 3: table products FK client_id
Form 4: table specifications FK product_id (of the product)
Form 5: table appendices FK product_id (of the product)

WHERE:

proposals hasOne clients.
----------v----------
clients beongsTo proposals AND hasMany products.
----------v----------
products belongsTo clients AND hasMany specifications & appendices.
----------v----------
specifications belongsTo products.
appendices belongsTo products.

The form 4 can have multiple row so it's inside a foreach loop to generate more input. Same for the form 5. Because 1 product can have multiple specifications and appendices.

I admit, it's pretty tricky :)

This is the solution I finally chose, but maybe there is better. For exemple, I could make a multi-step form but it seems quite difficult to put in place. Anyway, i'm open to suggestion.

Meanwhile, I'm sure we can make this work so here are the details. For each table, I have created a model and made the appropriated connections. In each model I have enable the containable behaviour: public $actsAs = array('Containable');.

Now here is the ProposalsController.php:

function admin_edit($id=null){
        $this->loadModel('Proposal','Client','Product', 'Specification', 'Appendice');
        $this->Proposal->contain('Proposal','Client','Product', 'Specification', 'Appendice');

        if ($this->request->is('put') || $this->request->is('Post')) {
            $data = $this->request->data;
            if (!empty($data)) {
                // Use the following to avoid validation errors:
                // unset($this->Proposal->Client->validate['proposal_id']);
                // $this->Proposal->saveAssociated($data);
                // $this->Session->setFlash("Le contenu a bien été édité");
                // $this->redirect(array('action' => 'index', $data['Product']['id']));
                debug($data);
            }
        }
        elseif($id){
            $this->Proposal->id = $id;
            $this->request->data = $this->Proposal->read(null,$id);
        }
    }

This edit action has many errors because I don't know how to set it up correctly in that case. So forgive me but I give you a raw code :). I would like this admin_function to add or edit, but again, in this case I don't know how to handle it.

And the view admin_edit.ctp :

<hr/>
<h1>Proposition</h1>
<hr/>

<?php echo $this->Form->create('Product'); ?>

<?php echo $this->Form->input('Proposal.name', array('label' => "Nom de la proposition")); ?>
<?php echo $this->Form->input('Proposal.created', array('label' => "Date de création")); ?>
<?php echo $this->Form->input('Proposal.due', array('label' => "Date d'échéance")); ?>
<?php echo $this->Form->input('Proposal.content', array('label' => "Termes & conditions")); ?>

<hr/>
<h1>Client</h1>
<hr/>

<?php echo $this->Form->input('Client.name', array('label' => "Nom du client")); ?>
<?php echo $this->Form->input('Client.project', array('label' => "Nom du projet")); ?>
<?php echo $this->Form->input('Client.address', array('label' => "Adresse")); ?>
<?php echo $this->Form->input('Client.phone', array('label' => "Téléphone")); ?>
<?php echo $this->Form->input('Client.email', array('label' => "Email")); ?>
<?php echo $this->Form->hidden('Client.proposal_id'); ?>

<hr/>
<h1>Produit</h1>
<hr/>

<?php echo $this->Form->input('Product.0.name', array('label' => "Nom du produit")); ?>
<?php echo $this->Form->input('Product.0.reference', array('label' => "Référence")); ?>
<?php echo $this->Form->input('Product.0.image', array('label' => "Image")); ?>
<?php echo $this->Form->input('Product.0.pu', array('label' => "Prix Unitaire")); ?>
<?php echo $this->Form->input('Product.0.quantity', array('label' => "Quantité")); ?>
<?php echo $this->Form->input('Product.0.ce', array('label' => "CE")); ?>
<?php echo $this->Form->input('Product.0.nf', array('label' => "NF")); ?>
<?php echo $this->Form->input('Product.0.rohs', array('label' => "RoHS")); ?>
<?php echo $this->Form->hidden('Product.0.client_id'); ?>

<hr/>
<h1>Spécifications :</h1>
<hr/>

<?php
foreach (range(0,1) as $i):
    $a=$i+1;
    echo '<p>Spécification '.$a.'</p>';
    echo $this->Form->input('Specification.'.$i.'.name', array('label' => "Nom de la spécification"));
    echo $this->Form->input('Specification.'.$i.'.value', array('label' => "Valeur de la spécification"));
    echo $this->Form->hidden('Specification.'.$i.'.product_id');
endforeach;
?>

<hr/>
<h1>Annexes :</h1>
<hr/>

<?php
foreach (range(0,1) as $j):
    $b=$j+1;
    echo '<p>Annexe '.$b.'</p>';
    echo $this->Form->input('Appendice.'.$j.'.name', array('label' => "Image"));
    echo $this->Form->input('Appendice.'.$j.'.content', array('label' => "Description de l'annexe"));
    echo $this->Form->hidden('Appendice.'.$j.'.product_id');
endforeach;
?>

<?php echo $this->Form->end('valider'); ?>

And finally, here is the array result of the debug($data):

array(
    'Proposal' => array(
        'name' => 'Proposition 3',
        'created' => array(
            'month' => '02',
            'day' => '19',
            'year' => '2013',
            'hour' => '08',
            'min' => '27',
            'meridian' => 'am'
        ),
        'due' => array(
            'month' => '02',
            'day' => '19',
            'year' => '2013',
            'hour' => '08',
            'min' => '27',
            'meridian' => 'am'
        ),
        'content' => 'Termes & conditions'
    ),
    'Client' => array(
        'name' => 'Client 3',
        'project' => 'Projet Client 3',
        'address' => 'Adresse Client 3',
        'phone' => 'Téléphone Client 3',
        'email' => 'Email@test.com',
        'proposal_id' => ''
    ),
    'Product' => array(
        (int) 0 => array(
            'name' => 'Produit 3',
            'reference' => 'Référence Produit 3',
            'image' => 'Image Produit 3',
            'pu' => '100.77',
            'quantity' => '1000',
            'ce' => '1',
            'nf' => '0',
            'rohs' => '0',
            'client_id' => ''
        )
    ),
    'Specification' => array(
        (int) 0 => array(
            'name' => 'Specification 1',
            'value' => 'Valeur 1',
            'product_id' => ''
        ),
        (int) 1 => array(
            'name' => 'Specification 2',
            'value' => 'Valeur 2',
            'product_id' => ''
        )
    ),
    'Appendice' => array(
        (int) 0 => array(
            'name' => 'Image annexe 1',
            'content' => 'Description de l'annexe',
            'product_id' => ''
        ),
        (int) 1 => array(
            'name' => 'Image annexe 2',
            'content' => 'Description de l'annexe',
            'product_id' => ''
        )
    )
)

So in this array, everything is there. I just need to take these data and save them all in the corresponding tables. The first problem is to manage with the table's associations. Then the 2 foreach loops that generate multiple row.

I would like to save it all at once but is it even possible?

After trying many ways to get it work, I've gone completely crazy and I just lost myself. I'm really desperate on that one, i mix up everything between the saving method and the request->data that contains everything but cannot get it saved. Anyway, i'm desperately in need for help!

Thank you very much in advance for all the help you can give me, I really appreciate!


[EDIT]

I add my model to the present post for more detail.

Proposal.php:

<?php
class Proposal extends AppModel {

    public $actsAs = array('Containable');

    public $validate = array(
        'name' => array(
            'rule'       => 'notEmpty',
            'message'    => "Veuillez préciser un titre"
        )
    ) ;

    public $hasOne = array(
        'Client' => array(
            'className'    => 'Client',
            'foreignKey'   => 'proposal_id',
            'dependent'    => true
            )
        );
}

Client.php:

<?php
class Client extends AppModel {

    public $actsAs = array('Containable');

    public $belongsTo = array(
        'Proposal' => array(
            'className'    => 'Proposal',
            'foreignKey'   => 'proposal_id'
            )
        );

    public $hasMany = array(
        'Product' => array(
            'className'     => 'Product',
            'foreignKey'    => 'client_id',
            'conditions'    => '',
            'order'         => '',
            'limit'         => '',
            'dependent'     => true
            )
        );
}

Product.php:

<?php
class Product extends AppModel {

    public $actsAs = array('Containable');

    public $belongsTo = array(
        'Client' => array(
            'className'    => 'Client',
            'foreignKey'   => 'client_id'
            )
        );

    public $hasMany = array(
        'Specification' => array(
            'className'     => 'Specification',
            'foreignKey'    => 'product_id',
            'conditions'    => '',
            'order'         => '',
            'limit'         => '',
            'dependent'     => true
            ),
        'Appendice' => array(
            'className'     => 'Appendice',
            'foreignKey'    => 'product_id',
            'conditions'    => '',
            'order'         => '',
            'limit'         => '',
            'dependent'     => true
            )
        );
}

Specification.php:

<?php
class Specification extends AppModel {

    public $actsAs = array('Containable');

    public $belongsTo = array(
        'Product' => array(
            'className'    => 'Product',
            'foreignKey'   => 'product_id'
            )
        );
}

Appendice.php:

<?php
class Appendice extends AppModel {

    public $actsAs = array('Containable');

    public $belongsTo = array(
        'ProductAppend' => array(
            'className'    => 'Product',
            'foreignKey'   => 'product_id'
            )
        );
}
share|improve this question
Read carefully Saving related model data hasOne - hasMany - belongsTo in the CakePHP docs. It describes exactly what you are looking for ;-) – Cris Sawfish Feb 19 at 22:37
@Cris Sawfish: thanks Cris Sawfish to have come and check, i appreciate it! you're right, i found what i need but when i thought i've put it all right that's when i got lost because it didn't work. So i went back to the book spending hours trying to understand but there's obviously something i'm missing. Did you find what doesn't look right in my code? – Julian Livin' in China Feb 20 at 13:19

2 Answers

What's the output when you save the data?

 if (!empty($this->data)) {
               $this->Proposal->save($this->data);
}

You should also check the sql-output

echo $this->element('sql_dump');

edit:

Well after your edit, on the first look it seems that your relations are wrong. Check out the examples in the book: http://book.cakephp.org/2.0/en/models/associations-linking-models-together.html

For example hasOne: the other model contains the foreign key.

As I said earlier, you should try to start with just one relation, getting it to work. Afterwords, it'll be much easier to get the other working. So try to comment-out everything except your Proposal and Client model. Then try saving just those two.

share|improve this answer
Thanks for your interest, I tried your first suggestion: if (!empty($this->data)) { $this->Proposal->save($this->data); } This save only in my proposals table and ignore all the others. For echo $this->element('sql_dump');, I have the following error: Call to undefined method ProposalsController::element() – Julian Livin' in China Feb 19 at 12:58
Is the Habtm defined correctly in your models? I believe you might have some error there.. To find your error, I suggest you try saving ONLY the Proposal form (delete or uncomment the rest). When the saving works fine, add the Client form and try saving. When that works, add another model. – user1121239 Feb 19 at 13:17
I don't have HABTM associations, i have 1 hasOne and 3 hasMany. I tried to delete all the forms and try saving them 1 after 1. So only proposal form is working fine as well if i have proposal and client forms, they are saving too. But once i add the third form product, proposal and client are saved but not product. Yet in my debug($this->request->data) all the data are present: array proposal, array client and array product, it just won't save for the product. that's odd – Julian Livin' in China Feb 19 at 13:48
What does you Proposal Model look like? – user1121239 Feb 19 at 14:01
I edited my first post to add the models so you can check them out. Thanks – Julian Livin' in China Feb 19 at 15:34

I did many trials today but i'm still stuck. I've spend a lot of time on the cakephp book trying to figure how to save data for my case but still nothing worked. I have no clue of what i'm doing wrong.

I've changed a bit my system to make it "easier". I've made my save system in 2 steps. First I save the proposal and its linked client and step 2 I add 1 product with its related specifications and appendices. For these last 2 i didn't try it yet because it involves that i make 2 foreach loops and i'm not there for now. So here is what i've been doing.

The models are still the same, i checked on cakephp book and I'm pretty sure they're fine (see the edit of my first post).

PorposalsController.php:

function admin_add_step1(){
        if (!empty($this->request->data)) {
            $proposal = $this->Proposal->save($this->request->data);
            if (!empty($proposal)) {
                $this->request->data['Client']['proposal_id'] = $this->Proposal->id;
                $this->Proposal->Client->save($this->request->data);
                $id = $this->Proposal->Client->getLastInsertId();
                $this->redirect(array('action' => 'add_step2', $id));
                // debug($this->request->data);
            }
        }
    }

    function admin_add_step2($id){
        // debug($this->params['pass']);
        $this->loadModel('Product');
        $this->loadModel('Client');

        if ($this->request->is('post')) {

            if (!empty($this->request->data)) {
                $data = $this->request->data['Product'][0];
                $success = array(
                    'Product.0.name'      => $data['name'],
                    'Product.0.reference' => $data['reference'],
                    'Product.0.image'     => $data['image'],
                    'Product.0.pu'        => $data['pu'],
                    'Product.0.quantity'  => $data['quantity'],
                    'Product.0.ce'        => $data['ce'],
                    'Product.0.nf'        => $data['nf'],
                    'Product.0.rohs'      => $data['rohs'],
                    'Product.0.client_id' => $id
                    );
            }

            if($this->Client->Product->save($success)){
                $this->redirect(array('action' => 'admin_index'));
                debug($this->request->data);
                debug($id);
            }
            else{
                echo 'The save failed';
                debug($success);
                debug($this->request->data);
            }

        }

    }

View admin_add_step1.ctp:

<?php
echo $this->Form->create('proposal');
?>

<hr/>
<h1>Proposition</h1>
<hr/>

<?php
echo $this->Form->input('Proposal.name', array('label' => "Nom de la proposition"));
echo $this->Form->input('Proposal.created', array('label' => "Date de création"));
echo $this->Form->input('Proposal.due', array('label' => "Date d'échéance"));
echo $this->Form->input('Proposal.content', array('label' => "Termes & conditions"));
?>

<hr/>
<h1>Client</h1>
<hr/>

<?php
echo $this->Form->input('Client.name', array('label' => "Nom du client"));
echo $this->Form->input('Client.project', array('label' => "Nom du projet"));
echo $this->Form->input('Client.address', array('label' => "Adresse"));
echo $this->Form->input('Client.phone', array('label' => "Téléphone"));
echo $this->Form->input('Client.email', array('label' => "Email"));
?>

<?php echo $this->Form->end('suivant'); ?>

View admin_add_step2.ctp:

<?php
echo $this->Form->create('product');
?>

<hr/>
<h1>Produits</h1>
<hr/>

<?php
echo $this->Form->input('Product.0.name', array('label' => "Nom du produit"));
echo $this->Form->input('Product.0.reference', array('label' => "Référence"));
echo $this->Form->input('Product.0.image', array('label' => "Image"));
echo $this->Form->input('Product.0.pu', array('label' => "Prix Unitaire"));
echo $this->Form->input('Product.0.quantity', array('label' => "Quantité"));
echo $this->Form->input('Product.0.ce', array('label' => "CE"));
echo $this->Form->input('Product.0.rohs', array('label' => "RoHS"));
echo $this->Form->input('Product.0.nf', array('label' => "NF"));
echo $this->Form->hidden('Product.0.client_id');
?>

<hr/>
<h1>Spécifications :</h1>
<hr/>

<?php
// foreach (range(0,1) as $i):
//  $a=$i+1;
// echo '<p>Spécification '.$a.'</p>';
// echo $this->Form->input('Specification.'.$i.'.name', array('label' => "Nom de la spécification"));
// echo $this->Form->input('Specification.'.$i.'.value', array('label' => "Valeur de la spécification"));
// endforeach;
?>

<hr/>
<h1>Annexes :</h1>
<hr/>

<?php
// foreach (range(0,1) as $j):
//  $b=$j+1;
// echo '<p>Annexe '.$b.'</p>';
// echo $this->Form->input('Appendice.'.$j.'.name', array('label' => "Image"));
// echo $this->Form->input('Appendice.'.$j.'.content', array('label' => "Description de l'annexe"));
// endforeach;
?>

<?php echo $this->Form->end('valider'); ?>

What happens

The function admin_add_step1(){} is working fine. It saves both data into the proposals table that hasOne table clients which belongsTo proposals. So my model, controller and view for this step 1 is ok.

On the other hand, the function admin_add_step2(){} isn't working. When I launch it i can see with a debug that it doesn't go to the if($this->Client->Product->save($success)){} so it just won't save and I'm having a hard time figure out why. If I could just make this particular part working i could move forward to the next form which is looped. What astonish me is that I have all the data in my debug array debug($this->request->data) and debug($success)!

Does anyone has an idea why i can't save this product form?

Thank you very much in advance.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.