Hi there.

I'm having problems saving a model and it's related data.
a $this->Paper->saveAll($this->data); call returns false.

and later I figured out that a simple $this->Paper->Document-
>save($this->data) is failing too.

the data is set correctly and there are no validationErrors.

any suggestion?
Thanks!
Lucca

the associations follow:

Paper hasMany Chart
Paper hasMany Table
Paper hasMany Document

PaperAttachment belongsTo Paper

and the code:

class Paper extends AppModel {
        var $hasOne = array(
            'Chart' => array(
                'className'=>'PaperAttachment'
            ),
            'Table' => array(
                'className'=>'PaperAttachment'
            ),
            'Document' => array(
                'className'=>'PaperAttachment'
            ),
        );
}

class PaperAttachment extends AppModel {
    var $belongsTo = array(
        'Paper' => array(
        )
    );
}

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to