Ticket #2589 (new バグ指摘)
管理画面:受注情報編集の「商品の追加」で規格がコピーされない。
| Reported by: | kimoto | Owned by: | kimoto |
|---|---|---|---|
| Priority: | 中 | Milestone: | EC-CUBE2.13.x |
| Component: | フロント | Version: | 2.13.2 |
| Keywords: | Cc: | ||
| 修正済み: | no |
Description
管理画面:受注情報編集において複数のお届け先がある受注情報に、「商品の追加」を行うと、お届け情報内の商品に、規格がコピーされない。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
Note: See
TracTickets for help on using
tickets.
