- Timestamp:
- 2006/09/20 14:33:35 (20 years ago)
- Location:
- temp/trunk
- Files:
-
- 7 edited
-
data/conf/conf.php (modified) (1 diff)
-
html/admin/customer/index.php (modified) (1 diff)
-
html/admin/mail/htmlmail_select.php (modified) (1 diff)
-
html/admin/products/index.php (modified) (2 diffs)
-
html/admin/products/product.php (modified) (1 diff)
-
html/admin/products/product_rank.php (modified) (1 diff)
-
html/admin/products/product_select.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/conf/conf.php
r5252 r5253 780 780 FROM dtb_products_class WHERE classcategory_id1 = 0 AND classcategory_id2 = 0) 781 781 AS T2 782 ON T1.product_id = T2.product_id_sub) vw_products_nonclass',782 ON T1.product_id = T2.product_id_sub) ', 783 783 784 784 "vw_products_allclass" => ' -
temp/trunk/html/admin/customer/index.php
r4853 r5253 200 200 case 'delete_all': 201 201 // ¸¡º÷·ë²Ì¤ò¤¹¤Ù¤Æºï½ü 202 $where = "product_id IN (SELECT product_id FROM vw_products_nonclass WHERE $where)";202 $where = "product_id IN (SELECT product_id FROM vw_products_nonclass AS noncls WHERE $where)"; 203 203 $sqlval['del_flg'] = 1; 204 204 $objQuery->update("dtb_products", $sqlval, $where, $arrval); -
temp/trunk/html/admin/mail/htmlmail_select.php
r4608 r5253 71 71 // ÆÉ¤ß¹þ¤àÎó¤È¥Æ¡¼¥Ö¥ë¤Î»ØÄê 72 72 $col = "product_id, name, category_id, main_list_image, status, product_code, price01, stock, stock_unlimited"; 73 $from = "vw_products_nonclass ";73 $from = "vw_products_nonclass AS noncls "; 74 74 75 75 $objQuery = new SC_Query(); -
temp/trunk/html/admin/products/index.php
r4608 r5253 223 223 case 'delete_all': 224 224 // ¸¡º÷·ë²Ì¤ò¤¹¤Ù¤Æºï½ü 225 $where = "product_id IN (SELECT product_id FROM vw_products_nonclass WHERE $where)";225 $where = "product_id IN (SELECT product_id FROM vw_products_nonclass AS noncls WHERE $where)"; 226 226 $sqlval['del_flg'] = 1; 227 227 $objQuery->update("dtb_products", $sqlval, $where, $arrval); … … 230 230 // ÆÉ¤ß¹þ¤àÎó¤È¥Æ¡¼¥Ö¥ë¤Î»ØÄê 231 231 $col = "product_id, name, category_id, main_list_image, status, product_code, price01, price02, stock, stock_unlimited"; 232 $from = "vw_products_nonclass ";232 $from = "vw_products_nonclass AS noncls "; 233 233 234 234 // ¹Ô¿ô¤Î¼èÆÀ -
temp/trunk/html/admin/products/product.php
r5202 r5253 221 221 $objQuery = new SC_Query(); 222 222 $col = "*"; 223 $table = "vw_products_nonclass ";223 $table = "vw_products_nonclass AS noncls "; 224 224 $where = "product_id = ?"; 225 225 $arrRet = $objQuery->select($col, $table, $where, array($product_id)); -
temp/trunk/html/admin/products/product_rank.php
r4812 r5253 64 64 $objQuery = new SC_Query(); 65 65 $col = "product_id, name, main_list_image, rank, product_code"; 66 $table = "vw_products_nonclass ";66 $table = "vw_products_nonclass AS noncls "; 67 67 $where = "del_flg = 0 AND category_id = ?"; 68 68 -
temp/trunk/html/admin/products/product_select.php
r4608 r5253 73 73 // ÆÉ¤ß¹þ¤àÎó¤È¥Æ¡¼¥Ö¥ë¤Î»ØÄê 74 74 $col = "product_id, name, category_id, main_list_image, status, product_code, price01, stock, stock_unlimited"; 75 $from = "vw_products_nonclass ";75 $from = "vw_products_nonclass AS noncls "; 76 76 77 77 $objQuery = new SC_Query();
Note: See TracChangeset
for help on using the changeset viewer.
