3

您好,我的模型 save() 函数不起作用。Magento 缓存已关闭。我的代码如下:

$newInventory = Mage::getModel('reservation/newinventory');
Mage::log( get_class( $newInventory ) ); //print Apptha_Reservation_Model_Newinventory

$newInventory->setEntityId( $productId ); 
$newInventory->setRoomTypeId( $roomTypeId );
$newInventory->setRoomsCount( $roomsCount );
$newInventory->setDateFrom( $checkInStamp );
$newInventory->setDateTo( $checkOutStamp );
$newInventory->setOrderId( $orderId );

$query = $newInventory->save();

Mage::log( "save query below: " ); //I get this string
Mage::log( $query->toString() ); //return 2012-10-15T06:00:58+00:00 DEBUG (7): 17, 7, 8,
                                //1349913600, 1349913600, 300000040, 12

这是我的代码\local\Apptha\Reservation\etc\config.xml

 <models>
        <reservation>
            <class>Apptha_Reservation_Model</class>
            <resourceModel>reservation_mysql4</resourceModel>
        </reservation>
        <reservation_mysql4>
            <class>Apptha_Reservation_Model_Mysql4</class>
            <entities>
               <newinventory>
        <table>apptha_booking_hotel_newinventory</table>
       </newinventory>
            </entities>
        </reservation_mysql4> 
</models> 
    <resources>
        <reservation_setup>
            <setup>
                <module>Apptha_Reservation</module>
                <class>Mage_Catalog_Model_Resource_Eav_Mysql4_Setup</class>
            </setup>
            <connection>
                <use>core_setup</use>
            </connection>
        </reservation_setup>
        <reservation_write>
            <connection>
                <use>core_write</use>
            </connection>
        </reservation_write>
        <reservation_read>
            <connection>
                <use>core_read</use>
            </connection>
        </reservation_read>
    </resources>

我做错了什么?为什么新行没有出现在数据库中?

更新 1

在我的 index.php 中,我有

error_reporting(E_ALL ^ E_NOTICE);

//if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
Mage::setIsDeveloperMode(true);
ini_set("display_errors", 1);
//}

更新 2

我的代码\local\Apptha\Reservation\Model\newinventory.php 下面

class Apptha_Reservation_Model_Newinventory extends Mage_Core_Model_Abstract{

protected function _construct(){
    $this->_init('reservation/newinventory');
}
}

我的代码\local\Apptha\Reservation\Model\Mysql4\newinventory.php 下面

 class Apptha_Reservation_Model_Mysql4_Newinventory extends Mage_Core_Model_Mysql4_Abstract{

protected function _construct(){
    $this->_init('reservation/newinventory', 'id');
}

}

所以我没有从 Magento 得到任何错误。看起来 Magento 找到了所有路径(模型、资源等)但无论如何都无法保存()我的数据。

更新 3 我插入代码以将 Mysql.php 中的查询记录到公共函数查询($sql, $bind = array())

    $code = 'SQL: ' . $sql . "\r\n";
if ($bind) {
    $code .= 'BIND: ' . print_r($bind, true) . "\r\n";
}
Mage::Log("[".date('Y-m-d H:i:s')."] ".$code);

然后我进入日志文件:

2012-10-15T09:54:31+00:00 DEBUG (7): [2012-10-15 09:54:31] SQL: INSERT INTO 
`apptha_booking_hotel_newinventory` (`entity_id`, `room_type_id`, `rooms_count`, `date_from`,
`date_to`, `order_id`) VALUES (?, ?, ?, ?, ?, ?)
BIND: Array
(
[0] => 17
[1] => 7
[2] => 8
[3] => 1349913600
[4] => 1349913600
[5] => 300000040
)

我尝试在 phpmyadmin 中手动执行此查询,它工作正常。但是 Magento 做不到。

更新 4

好的。在调试此问题时,我在控制器中编写了额外的 testModel 操作,试图测试 save() 函数。我看到了,它在那里工作。

然后我返回到原来的函数并发现当我在 if-block 之外进行 save() 然后 save() 工作正常。如果我在 if-block 中进行 save(),那么它就不起作用。

我在 if-block 中记录了一些字符串,并确保在 if-block 中执行。所以实际上质疑为什么 save() 在下面的 if-block 中不起作用:

    if ( $state == "complete" ){
    Mage::log('here');
        $newInventory = Mage::getModel('reservation/newinventory');
        $newInventory->setEntityId(12);
        $newInventory->setRoomTypeId(7);
        $newInventory->setRoomsCount(8);
        $newInventory->setDateFrom(1349913600);
        $newInventory->setDateTo(1349913600);
        $newInventory->setOrderId(300000040);

        $query = $newInventory->save();
    die;
   } 

但如果条件是

if ( $state === "processing" )

然后它工作正常。此代码在订单状态更改时处于观察者功能中。当管理员为产品制作“发票”时,生产者状态从“处理中”变为“完成”。因此 Magento 两次进入该函数。第一次“处理”保存()工作正常,但“完成”它不起作用。

4

3 回答 3

2

所以问题出在一些内部 Magento 处理中。我花了1天时间来理解它。

但是现在停止并通过使用另一个观察者事件 sales_order_save_commit_after 来解决它,我检查订单状态是否已完成并使用 save() 函数。当然在这里它工作正常。

于 2012-10-15T14:24:10.363 回答
1

我非常怀疑$newInventory 是否包含您的模型。您在 config.xml 中声明实体hotel_newinventory,但尝试加载实体newinventory。你可以这样检查:

Mage::log(get_class($newInventory));

如果我是对的并且结果不是您的模型类,请尝试更改以下行

return Mage::getModel('reservation/newinventory');

return Mage::getModel('reservation/hotel_newinventory');
于 2012-10-15T07:28:40.673 回答
0

您还可以使用“sales_order_place_after”(无需使用“sales_order_save_commit_after”)事件来持久化模型。

您只是无法停止执行,因为 sql 事务未在“sales_order_place_after”中完成,不会直接写入任何内容,但稍后将事务提交到数据库。

希望这可以帮助某人。

于 2017-08-09T08:00:50.677 回答