Answer the question
In order to leave comments, you need to log in
How to save item data in an order in Yii 1.16?
Good afternoon!
I am working on a shopping cart in Yii. There is an order entity in which information about the order is stored and a catalog in which goods are stored. There is a third table in the database:
CREATE TABLE yii_order_items (
order_id int(11) NOT NULL COMMENT 'id заказа',
good_id int(11) NOT NULL COMMENT 'Id товара',
count varchar(255) DEFAULT NULL COMMENT 'количество товара',
price varchar(255) DEFAULT NULL COMMENT 'цена',
PRIMARY KEY (order_id, good_id)
)
public function relations()
{
return array(
.....
'orders'=>array(self::MANY_MANY, 'Orders', 'yii_order_items(good_id, order_id)'),
);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question