Ticket #2589 (new バグ指摘)

Opened 10 years ago

Last modified 10 years ago

管理画面:受注情報編集の「商品の追加」で規格がコピーされない。

Reported by: kimoto Owned by: kimoto
Priority: Milestone: EC-CUBE2.13.x
Component: フロント Version: 2.13.2
Keywords: Cc:
修正済み: no

Description

 http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=14844&forum=9&post_id=66411#forumpost66411

管理画面:受注情報編集において複数のお届け先がある受注情報に、「商品の追加」を行うと、お届け情報内の商品に、規格がコピーされない。data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php
            //届け先に選択商品がない場合
            $objProduct = new SC_Product_Ex();
            $arrAddProductInfo = $objProduct->getDetailAndProductsClass($add_product_class_id);

            $arrShipmentProducts['shipment_product_class_id'][$select_shipping_id][] = $add_product_class_id;
            $arrShipmentProducts['shipment_product_code'][$select_shipping_id][]     = $arrAddProductInfo['product_code'];
            $arrShipmentProducts['shipment_product_name'][$select_shipping_id][]     = $arrAddProductInfo['name'];
// added
            $arrShipmentProducts['shipment_classcategory_name1'][$select_shipping_id][] = $arrAddProductInfo['classcategory_name1'];
            $arrShipmentProducts['shipment_classcategory_name2'][$select_shipping_id][] = $arrAddProductInfo['classcategory_name2'];
// added
            $arrShipmentProducts['shipment_price'][$select_shipping_id][]            = $arrAddProductInfo['price02'];
            $arrShipmentProducts['shipment_quantity'][$select_shipping_id][]         = 1;
追記:お届け先が1口の場合、非表示項目になるため、画面上見えていません。

Change History

comment:1 Changed 10 years ago by kimoto

  • Owner changed from somebody to kimoto

comment:2 Changed 10 years ago by kim

  • Milestone changed from EC-CUBE2.13.3 to EC-CUBE2.13.4

次期バージョンとさせていただきます。

Note: See TracTickets for help on using tickets.