Index: branches/version-2_5-dev/html/install/sql/insert_data.sql
===================================================================
--- branches/version-2_5-dev/html/install/sql/insert_data.sql	(revision 20592)
+++ branches/version-2_5-dev/html/install/sql/insert_data.sql	(revision 20595)
@@ -611,4 +611,5 @@
 INSERT INTO dtb_products (product_id, name, maker_id, status, comment1, comment2, comment3, comment4, comment5, comment6, note, main_list_comment, main_list_image, main_comment, main_image, main_large_image, sub_title1, sub_comment1, sub_image1, sub_large_image1, sub_title2, sub_comment2, sub_image2, sub_large_image2, sub_title3, sub_comment3, sub_image3, sub_large_image3, sub_title4, sub_comment4, sub_image4, sub_large_image4, sub_title5, sub_comment5, sub_image5, sub_large_image5, sub_title6, sub_comment6, sub_image6, sub_large_image6, del_flg, creator_id, create_date, update_date, deliv_date_id) VALUES (3, 'おなべレシピ', NULL, 1, NULL, NULL, '鍋,なべ,ナベ,レシピ,作り方', NULL, NULL, NULL, NULL, 'あの、秘伝のお鍋レシピです。', 'recipe130.jpg', '自分でチャレンジしてみたい方に。', 'recipe260.jpg', 'recipe500.jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 2, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 1);
 
+INSERT INTO dtb_products_class (product_class_id, product_id, class_combination_id, product_code, stock, stock_unlimited, sale_limit, price01, price02, deliv_fee, point_rate, creator_id, create_date, update_date, del_flg, product_type_id, down_filename, down_realfilename) VALUES(0, 1, NULL, 'ice-01', NULL, 1, NULL, 1000, 933, NULL, 10, 2, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 0, 1, NULL, NULL);
 INSERT INTO dtb_products_class (product_class_id, product_id, class_combination_id, product_code, stock, stock_unlimited, sale_limit, price01, price02, deliv_fee, point_rate, creator_id, create_date, update_date, del_flg, product_type_id, down_filename, down_realfilename) VALUES(1, 1, 10, 'ice-01', NULL, 1, NULL, 1000, 933, NULL, 10, 2, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 0, 1, NULL, NULL);
 INSERT INTO dtb_products_class (product_class_id, product_id, class_combination_id, product_code, stock, stock_unlimited, sale_limit, price01, price02, deliv_fee, point_rate, creator_id, create_date, update_date, del_flg, product_type_id, down_filename, down_realfilename) VALUES(2, 1, 11, 'ice-02', NULL, 1, NULL, 1000, 933, NULL, 10, 2, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 0, 1, NULL, NULL);
Index: branches/version-2_5-dev/html/user_data/packages/admin/js/admin.js
===================================================================
--- branches/version-2_5-dev/html/user_data/packages/admin/js/admin.js	(revision 20566)
+++ branches/version-2_5-dev/html/user_data/packages/admin/js/admin.js	(revision 20595)
@@ -243,35 +243,4 @@
 }
 
-// 在庫数制限判定
-function fnCheckStockNoLimit(no, icolor) {
-    $check_key = "stock_unlimited:"+no;
-    $input_key = "stock:"+no;
-
-    list = new Array($input_key );
-    if(document.form1[$check_key].checked) {
-        fnChangeDisabled(list, icolor);
-        document.form1[$input_key].value = "";
-    } else {
-        fnChangeDisabled(list, '');
-    }
-}
-
-// 在庫数判定
-function fnCheckAllStockLimit(max, icolor) {
-    for(no = 1; no <= max; no++) {
-        $check_key = "stock_unlimited:"+no;
-        $input_key = "stock:"+no;
-
-        list = new Array($input_key);
-
-        if(document.form1[$check_key].checked) {
-            fnChangeDisabled(list, icolor);
-            document.form1[$input_key].value = "";
-        } else {
-            fnChangeDisabled(list, '');
-        }
-    }
-}
-
 // Form指定のSubmit
 function fnFormSubmit(form) {
