Ticket #2430 (closed バグ指摘: 修正済)
受注編集> 商品新規追加で税率がコピーされていない
| Reported by: | shutta | Owned by: | kimoto |
|---|---|---|---|
| Priority: | 中 | Milestone: | EC-CUBE2.13.2 |
| Component: | 管理画面 | Version: | 2.13.0 |
| Keywords: | Cc: | ||
| 修正済み: | yes |
Description
コミュニティにて報告あり
v2.13.0 管理画面:受注変更画面の商品新規追加で税率がコピーされていない。
http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=13427&forum=9
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'];
$arrShipmentProducts['shipment_price'][$select_shipping_id][] = $arrAddProductInfo['price02'];
$arrShipmentProducts['shipment_quantity'][$select_shipping_id][] = 1;
//受注商品情報に追加
$arrPreProductClassIds = $objFormParam->getValue('product_class_id');
$arrProducts = $this->checkInsertOrderProducts($objFormParam, $arrPreProductClassIds, $add_product_class_id, $arrAddProductInfo);
$objFormParam->setParam($arrProducts);
税率をコピーしていない。
Change History
Note: See
TracTickets for help on using
tickets.
