CakePHP SaveAll () fonksiyon sorunları

1 Cevap php

Im bir accociated rekor aswell bir tabloda bir kaydı kaydetmeye çalışıyor. Ana tablo tırnak denilen ve tablo quote_items bir hasMany bağlantı vardır. quote_items belongsTo alıntı

When i try and save it saves the record in quote but does not save the record in quote_items .

Aşağıda benim alıntı eklenti fonksiyonu

    function add() {
    if (!empty($this->data)) {
        $this->Quote->create();
        if ($this->Quote->saveAll($this->data)) {
            $this->Session->setFlash(__('The Quote has been saved', true));
            //$this->redirect(array('action'=>'index'));
        } else {
            $this->Session->setFlash(__('The Quote could not be saved. Please, try again.', true));
        }
    }
    $this->Quote->recursive = 2;
    $statuses = $this->Quote->Status->find('list');
    $contacts = $this->Quote->Contact->find('list');
    $this->set(compact('statuses', 'contacts'));
}

Alıntı view / form kurulum

    <?php echo $form->create('Quote', array('action' => 'add'));?>
    <fieldset>
        <legend><?php __('Add Quote');?></legend>
    <?php
        echo $form->input('Quote.name');
        echo $form->input('Quote.revision');
        echo $form->input('Quote.status_id');
        echo $form->input('Quote.contact_id');
        echo $form->input('quote_item.product_id');
        echo $form->input('quote_item.name');
        echo $form->input('quote_item.price');
        echo $form->input('quote_item.description');
        echo $form->input('Quote.totalcost');
    ?>
    </fieldset>
<?php echo $form->end('Submit');?>

Form gönderildiğinde döndürülen dizi

    Array ( 
    [quote] => Array ( 
                [name] => Test 
                [revision] => 1 
                [status_id] => 1 
                [contact_id] => 1 
                [totalcost] => 123 
              ) 

    [quote_item] => Array ( 
                [product_id] => 1
                [name] => test 
                [price] => 123 
                [description] => tes 1234 
              ) 
) 

Onun değil çalışma neden bu CakePHP'de belgelerinde listelenen tam olarak ne takip görünüyor bu yüzden işe olamaz - http://book.cakephp.org/view/84/Saving-Related-Model-Data-hasOne-hasMany-belongsTo

Şimdiden teşekkürler

1 Cevap

Formunu oluşturmak için doğru bir yol olacaktır:

echo $form->input('Quote.name');
...
echo $form->input('QuoteItem.0.product_id');
echo $form->input('QuoteItem.0.name');
...
echo $form->input('QuoteItem.1.product_id');
echo $form->input('QuoteItem.1.name');

Edilen dizisi bu gibi görünmelidir:

array(
    'Quote' => array(
        'name' => 'Test'
        ....
    ),
    'QuoteItem' => array(
        0 => array(
            'product_id' => 1
            'name' => 'test'
            ...
        )
        1 => array(
            'product_id' => 2
            'name' => 'test'
            ...
        )
    )
)

Adlandırma göre, model isimleri (ModelAdı, MODEL_ADI değil) kamelize vardır. Ayrıca, alıntı beri hasMany QuoteItems, QuoteItem dizi çok QuoteItem diziler oluşur gerekiyor. Mantıklı umuyoruz. :)