You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($data['classcategory_id1'] != 0 && $data['classcategory_id2'] != 0) {
$data['classcategory_id1'] = 0;
$data['classcategory_id2'] = 0;
$data['status'] = 1;
$data['product_class_id'] = $i; // 苦肉の策
$add_value[$data['product_id']] = $data;
$i--;
}
}
結果商品の規格情報の編集・クリアなどが出来ないです。
SQLで修正は一応可能。(問題はある
INSERT INTO dtb_product_class (product_id, class_category_id1, class_category_id2, visible, discriminator_type,price02,create_date,update_date, sale_type_id) SELECT product_id, NULL, NULL, 0, discriminator_type,price02,create_date,update_date,sale_type_id FROM dtb_product_class WHERE class_category_id1 is not null GROUP BY product_id
The text was updated successfully, but these errors were encountered:
該当コードはここ
data-migration-plugin/Controller/Admin/ConfigController.php
Lines 830 to 843 in 9cafab4
結果商品の規格情報の編集・クリアなどが出来ないです。
SQLで修正は一応可能。(問題はある
INSERT INTO dtb_product_class (product_id,
class_category_id1
,class_category_id2
,visible
,discriminator_type
,price02
,create_date
,update_date
, sale_type_id) SELECTproduct_id
, NULL, NULL, 0,discriminator_type
,price02
,create_date
,update_date
,sale_type_id FROMdtb_product_class
WHEREclass_category_id1
is not null GROUP BYproduct_id
The text was updated successfully, but these errors were encountered: