- EC-CUBE 商品項目を追加する
- 2015.07.16
ECCUBEの管理画面で商品項目を追加する方法をまとめます。
今回は「comment7」「comment8」という項目を作ることにします。ECCUBEバージョン:2.13.3
1)「dtb_products」に「comment7」「comment8」というカラムを追加する。
comment6までは既に存在するので、comment6の次にcomment6と同じ属性で追加します。2)/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php変更
(2-1)lfInitFormParam関数内のループ処理ではない所に下記を追加
$objFormParam->addParam(‘コメント7’, ‘comment7’, MTEXT_LEN, ‘KVa’, array(‘SPTAB_CHECK’, ‘MAX_LENGTH_CHECK’));
$objFormParam->addParam(‘コメント8’, ‘comment8’, MTEXT_LEN, ‘KVa’, array(‘SPTAB_CHECK’, ‘MAX_LENGTH_CHECK’));この追加項目は必須入力項目ではない為「EXIST_CHECK」は外しています。
(2-2)lfRegistProduct関数内にcomment7とcomment8を追加
【変更後】
// 配列の添字を定義
$checkArray = array(‘name’, ‘status’,
‘main_list_comment’, ‘main_comment’,
‘deliv_fee’, ‘comment1’, ‘comment2’, ‘comment3’,
‘comment4’, ‘comment5’, ‘comment6’,
‘comment7’, ‘comment8’,
‘sale_limit’, ‘deliv_date_id’, ‘maker_id’, ‘note’);// INSERTする値を作成する。
$sqlval[‘comment7’] = $arrList[‘comment7’];
$sqlval[‘comment8’] = $arrList[‘comment8’];3)管理画面のテンプレートの該当箇所に「comment7」と「comment8」の入力欄を作成
●変更ファイル
/data/Smarty/templates/admin/products/product.tpl<tr>
<th>コメント7<span class="attention"> </span></th>
<td>
<span class="attention"><!–{$arrErr.comment7}–></span>
<input type="text" name="comment7" value="<!–{$arrForm.comment7|h}–>" maxlength="<!–{$smarty.const.STEXT_LEN}–>" style="<!–{if $arrErr.comment7 != ""}–>background-color: <!–{$smarty.const.ERR_COLOR}–>;<!–{/if}–>" size="60" class="box60" />
<span class="attention"> (上限<!–{$smarty.const.MTEXT_LEN}–>文字)</span>
</td>
</tr>
<tr>
<th>コメント8<span class="attention"> </span></th>
<td>
<span class="attention"><!–{$arrErr.comment8}–></span>
<input type="text" name="comment8" value="<!–{$arrForm.comment8|h}–>" maxlength="<!–{$smarty.const.STEXT_LEN}–>" style="<!–{if $arrErr.comment8 != ""}–>background-color: <!–{$smarty.const.ERR_COLOR}–>;<!–{/if}–>" size="60" class="box60" />
<span class="attention"> (上限<!–{$smarty.const.MTEXT_LEN}–>文字)</span>
</td>
</tr>上限文字数はlfInitFormParam関数内で設定した「MTEXT_LEN」と連動しています。
●変更ファイル
/data/Smarty/templates/admin/products/confirm.tpl<tr>
<th>サイズ</th>
<td><!–{$arrForm.comment7|h}–></td>
</tr>
<tr>
<th>カラー</th>
<td><!–{$arrForm.comment8|h}–></td>
</tr>4)商品一覧や商品詳細といった表示側のテンプレートに表示用の記述を追加
今回は商品詳細ページのみに追加しました。●変更ファイル
/data/Smarty/templates/default/products/detail.tpl<!–★コメント7★–>
<div>
<span class="product_w2">コメント7</span><!–{$arrProduct.comment7|h}–>
</div><div>
<!–★コメント8★–>
<span class="product_w2">コメント8</span><!–{$arrProduct.comment8|h}–>
</div>※CSSはサイトに合わせて適宜変更する必要があります。
★ここまでで、商品項目の追加と追加した項目を表示する事が出来るようになりました。
5)登録商品をCSVでエクスポートしたりインポートする場合は今回追加した項目分を追加する
「dtb_csv」に「comment7」「comment8」というカラムを追加する。
comment7で重要な部分は下記のように登録しました。
no…160
csv_id…1
col…comment7
disp_name…コメント7
rank…72
mb_convert_kana_option…KVa
size_const_type…MTEXT_LEN
error_check_types…SPTAB_CHECK,MAX_LENGTH_CHECKnoはユニークキーなので、元々登録されているnoの最大値に1をプラスした数値で
rankはCSV項目の順番です。
その他はlfInitFormParam関数内の項目と同じ様な値を登録します。以上で商品項目の追加方法が全てだったと思います。
- ECCUBEで新着情報を種別に分けて2種類の投稿を可能にする
- 2015.07.05
ECCUBEでトップページに「新商品情報」と店舗からの「お知らせ」の2つを表示する必要がありましたが検索してもやり方が見当たりませんでしたので、その方法をメモしておきます。
今回は、元からある新着情報を元にインフォメーションというブロックを制作する事とします。
EC-CUBEバージョン:2.13.3
1)種別を判別するフラグを追加して種別を登録できるようにする
・dtb_newsに「news_flg」というカラムをtinyint形式で追加します。・管理画面の新着情報管理に種別という項目を追加する。
【変更ファイル】
/data/Smarty/templates/admin/contents/index.tpl【変更箇所】
今回は種別が2つだけですので、マスターテーブルは用意せずに直書きします。
(1-1)登録テーブルに下記を追加
<tr>
<th>種別<span class="attention"> *</span></th>
<td>
<!--{if $arrErr[$key]}--><span class="attention"><!--{$arrErr[$key]}--></span><br /><!--{/if}-->
<label><input type="radio" name="news_flg" value="1"<!--{if $arrForm.news_flg.value == 1 || $arrForm.news_flg.value == ""}--> checked="checked"<!--{/if}--> />New</label>
<label><input type="radio" name="news_flg" value="2"<!--{if $arrForm.news_flg.value == 2}--> checked="checked"<!--{/if}--> />information</label>
</td>
</tr>(1-2)一覧表示のテーブルに下記を追加
<th>種別</th>
<td class="left">
<!--{if $arrNews[data].news_flg == 2}-->information
<!--{else}-->News
<!--{/if}-->
</td>【変更ファイル】
/data/class_extends/page_extends/admin/contents/LC_Page_Admin_Contents_Ex.php【変更箇所】
下記を追加/**
* パラメーターの初期化を行う
* @param SC_FormParam_Ex $objFormParam
*/
public function lfInitParam(&$objFormParam)
{
$objFormParam->addParam(‘news_id’, ‘news_id’);
$objFormParam->addParam(‘日付(年)’, ‘year’, INT_LEN, ‘n’, array(‘EXIST_CHECK’, ‘NUM_CHECK’, ‘MAX_LENGTH_CHECK’));
$objFormParam->addParam(‘日付(月)’, ‘month’, INT_LEN, ‘n’, array(‘EXIST_CHECK’, ‘NUM_CHECK’, ‘MAX_LENGTH_CHECK’));
$objFormParam->addParam(‘日付(日)’, ‘day’, INT_LEN, ‘n’, array(‘EXIST_CHECK’, ‘NUM_CHECK’, ‘MAX_LENGTH_CHECK’));
$objFormParam->addParam(‘種別’, ‘news_flg’, INT_LEN, ‘n’, array(‘EXIST_CHECK’,’NUM_CHECK’,’MAX_LENGTH_CHECK’));
$objFormParam->addParam(‘タイトル’, ‘news_title’, MTEXT_LEN, ‘KVa’, array(‘EXIST_CHECK’,’MAX_LENGTH_CHECK’,’SPTAB_CHECK’));
$objFormParam->addParam(‘URL’, ‘news_url’, URL_LEN, ‘KVa’, array(‘MAX_LENGTH_CHECK’));
$objFormParam->addParam(‘本文’, ‘news_comment’, LTEXT_LEN, ‘KVa’, array(‘MAX_LENGTH_CHECK’));
$objFormParam->addParam(‘別ウィンドウで開く’, ‘link_method’, INT_LEN, ‘n’, array(‘NUM_CHECK’, ‘MAX_LENGTH_CHECK’));
}2)デザイン管理>PC>ブロック設定でインフォメーション用のブロックを作成する。
ファイル名をinformation.tplとします。
内容はとりあえず新着情報をそっくりコピーしまが、一部変更します。【変更前】
function getNews(limit) {function getNewsDetail(newsId) {
【変更後】
function getInformation(limit) {function getInformationDetail(newsId) {
デザイン変更はCSS等で変更します。
3)以下のファイルをコピーしてインフォメーション用のファイルを作成します。
・コピーするファイル
/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_News_Ex.php
/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_News.php・コピー後のファイル名
/data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Information_Ex.php
/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Information.php更にインフォメーション用のファイルはクラス名もNewsからInformationに変更します。
(主な変更箇所)
●LC_Page_FrontParts_Bloc_News_Ex.php
require_once CLASS_REALDIR . ‘pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Information.php’;
class LC_Page_FrontParts_Bloc_Information_Ex extends LC_Page_FrontParts_Bloc_Information●LC_Page_FrontParts_Bloc_News.php
class LC_Page_FrontParts_Bloc_Information extends LC_Page_FrontParts_Bloc_Ex4)/frontparts/bloc/information.phpを新規作成します。
内容は下記のような感じです。require_once realpath(dirname(__FILE__)) . ‘/../../require.php’;
require_once CLASS_EX_REALDIR . ‘page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_Information_Ex.php’;$objPage = new LC_Page_FrontParts_BLoc_Information_Ex();
$objPage->blocItems = $params[‘items’];
$objPage->init();
$objPage->process();5)/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Information.phpを新規作成します。
内容はほぼ「LC_Page_FrontParts_Bloc_News.php」と同じですが、クラス名の一文は
class LC_Page_FrontParts_Bloc_Information extends LC_Page_FrontParts_Bloc_Ex
となります。6)最後にそれぞれのブロックで表示する種別を選択するように変更します。
【変更ファイル】
/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Information.php
/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_News.php
/data/class_extends/helper_extends/SC_Helper_News_Ex.php【変更箇所】
/data/class/pages/frontparts/bloc内のphpはaction内のdefaultを下記のように変更$this->arrNews = $objNews->getList("","","",1);
これは、種別1の記事を選択する設定です。
登録する値と同じにします。SC_Helper_News_Ex.phpは下記を追加する。
//put your code here
/**
* ニュース一覧の取得.
*
* @param integer $dispNumber 表示件数
* @param integer $pageNumber ページ番号
* @param boolean $has_deleted 削除されたニュースも含む場合 true; 初期値 false
* @param integer $flg informationの時 2; その他はNew
* @return array
*/
public function getList($dispNumber = 0, $pageNumber = 0, $has_deleted = false, $flg = “”)
{
$objQuery =& SC_Query_Ex::getSingletonInstance();
$col = ‘*, cast(news_date as date) as cast_news_date’;
$where = ”;
if (!$has_deleted) {
$where .= ‘del_flg = 0’;
}
if ($flg != “”) {
if ($where != “”) $where .= ‘ AND ‘;
if ($flg == 2) {
$where .= ‘news_flg = 2’;
} else if ($flg == 1) {
$where .= ‘news_flg = 1’;
}
}
$table = ‘dtb_news’;
$objQuery->setOrder(‘rank DESC’);
if ($dispNumber > 0) {
if ($pageNumber > 0) {
$objQuery->setLimitOffset($dispNumber, (($pageNumber – 1) * $dispNumber));
} else {
$objQuery->setLimit($dispNumber);
}
}
$arrRet = $objQuery->select($col, $table, $where);return $arrRet;
}確かこんな感じでした。
※こちらは備忘録としてまとめたものです。万が一不具合等が発生した場合も責任は負いかねます。流用する場合はご自身の責任で行って下さい。
- EC-CUBEで商品ステータス別に検索し一覧ページに表示する
- 2015.07.04
ECCUBEバージョン:2.13.3
対象ファイル
data/class/pages/products/LC_Page_Products_List.php
data/Smarty/templates/default/products/list.tpl変更箇所
1)action関数内の配列にproduct_status_idを追加$this->arrSearchData = array(
‘category_id’ => $this->lfGetCategoryId(intval($this->arrForm[‘category_id’])),
‘maker_id’ => intval($this->arrForm[‘maker_id’]),
‘name’ => $this->arrForm[‘name’],
‘product_status_id’ => $this->arrForm[‘product_status_id’]
);2)lfInitParam関数内に下記を追加
$objFormParam->addParam(‘商品ステータスID’, ‘product_status_id’, INT_LEN, ‘n’, array(‘NUM_CHECK’, ‘MAX_LENGTH_CHECK’));
3)lfGetSearchCondition関数内に下記を追加
if ($arrSearchData[‘product_status_id’]) {
$searchCondition[‘where’] .= ‘ AND product_id IN (SELECT product_id FROM dtb_product_status WHERE product_status_id = ? AND del_flg = 0)’;
$searchCondition[‘arrval’][] = $arrSearchData[‘product_status_id’];
}4)lfGetPageTitle内に下記を追加
※追加分のみ表示しています。カッコはきちんと閉じてください。} elseif ($this->arrSearchData[‘product_status_id’] > 0) {
return $this->arrSTATUS[$this->arrSearchData[‘product_status_id’]];5)list.tpl内のform1内に下記を追加
<input type=”hidden” name=”product_status_id” value=”<!--{$arrSearchData.product_status_id|h}-->” />
- EC-CUBEで商品コードで検索可能にする方法
- 2015.07.03
商品コードで検索する必要があったので対応方法をメモします。
ECCUBEバージョン:2.13.3
対象ファイル
data/class/pages/products/LC_Page_Products_List.php対象関数
上記ファイル内の以下の関数を変更するだけです。
lfGetSearchCondition●変更前
// 分割したキーワードを一つずつwhere文に追加
foreach ($names as $val) {
if (strlen($val) > 0) {
$searchCondition[‘where’] .= ‘ AND ( alldtl.name ILIKE ? OR alldtl.comment3 ILIKE ?) ‘;
$searchCondition[‘arrval’][] = “%$val%”;
$searchCondition[‘arrval’][] = “%$val%”;
}
}●変更後
// 分割したキーワードを一つずつwhere文に追加
foreach ($names as $val) {
if (strlen($val) > 0) {
$searchCondition[‘where’] .= ‘ AND ( alldtl.name ILIKE ? OR alldtl.comment3 ILIKE ? OR product_id IN (SELECT product_id FROM dtb_products_class WHERE product_code ILIKE ? AND del_flg = 0) ) ‘;
$searchCondition[‘arrval’][] = “%$val%”;
$searchCondition[‘arrval’][] = “%$val%”;
$searchCondition[‘arrval’][] = “%$val%”;}
}管理画面の「商品管理>商品マスター」で商品コードでの検索機能があったので下記のファイルのsearch_product_codeの処理部分を参考に変更しました。
(参考ファイル)data/class/pages/admin/products/LC_Page_Admin_Products.php
- ECCUBEで注文完了メールに注文商品の画像を入れる
- 2015.07.01
EC-CUBEバージョン:2.13.3
対象ファイル
data/class/helper/SC_Helper_Mail.php
data/Smarty/templates/default/mail_templates/order_mail.tpl対象関数
sfSendOrderMail●変更前
$objPage->tpl_header = $mailtemplate[‘header’];
$objPage->tpl_footer = $mailtemplate[‘footer’];$arrTplVar->arrOrderDetail = $objQuery->select(‘*’, ‘dtb_order_detail’, $where, array($order_id));
if ($send) {
if ($objSendMail->sendMail()) {
$this->sfSaveMailHistory($order_id, $template_id, $tosubject, $body);
}
}●変更後
//DBから読み込むメールテンプレートの改行をHTML用の改行に変換
$objPage->tpl_header = nl2br($mailtemplate[‘header’]);
$objPage->tpl_footer = nl2br($mailtemplate[‘footer’]);//画像のファイル名を取得
$arrTplVar->arrOrderDetail = $objQuery->select(‘*,(SELECT main_image FROM dtb_products WHERE product_id = dtb_order_detail.product_id) as main_image ‘, ‘dtb_order_detail’, $where, array($order_id));//HTMLメールを送るように変更
if ($send) {
if ($objSendMail->sendHtmlMail()) {
$this->sfSaveMailHistory($order_id, $template_id, $tosubject, $body);
}
}そしてHTMLメールに変更する為、メールテンプレートのorder_mail.tpl内の改行したい部分に<br />タグを挿入。
また、sectionループ内で、画像を挿入したい部分に下記のように追加する。<img src="http://ドメイン名/upload/save_image/<!–{$arrOrderDetail[cnt].main_image}–>" />
- EC-CUBEで会員機能を無くし更に「お支払方法・お届け時間等の指定」ページも無くす
- 2015.06.20
ECCUBEバージョン:2.13.3
対象ファイル
data/class/pages/shopping/LC_Page_Shopping.php
data/Smarty/templates/default/shopping/confirm.tpl対象関数
LC_Page_Shopping.php内のaction【以下変更箇所抜粋】
●変更前
// お客様情報登録
case ‘nonmember_confirm’:
$this->tpl_mainpage = $nonmember_mainpage;
$this->tpl_title = $nonmember_title;
$this->lfInitParam($objFormParam);
$objFormParam->setParam($_POST);
$this->arrErr = $this->lfCheckError($objFormParam);if (SC_Utils_Ex::isBlank($this->arrErr)) {
$this->lfRegistData($this->tpl_uniqid, $objPurchase, $objCustomer, $objFormParam);$arrParams = $objFormParam->getHashArray();
$shipping_id = $arrParams[‘deliv_check’] == ‘1’ ? 1 : 0;
$objPurchase->setShipmentItemTempForSole($objCartSess, $shipping_id);$objSiteSess->setRegistFlag();
SC_Response_Ex::sendRedirect(SHOPPING_PAYMENT_URLPATH);
SC_Response_Ex::actionExit();
}
break;default:
// 前のページから戻ってきた場合は, お客様情報入力ページ
if (isset($_GET[‘from’]) && $_GET[‘from’] == ‘nonmember’) {
$this->tpl_mainpage = $nonmember_mainpage;
$this->tpl_title = $nonmember_title;
$this->lfInitParam($objFormParam);
} else {
// 通常はログインページ
$this->lfInitLoginFormParam($objFormParam);
}$this->setFormParams($objFormParam, $objPurchase, $this->tpl_uniqid);
break;●変更後
// お客様情報登録
case ‘nonmember_confirm’:
$this->tpl_mainpage = $nonmember_mainpage;
$this->tpl_title = $nonmember_title;
$this->lfInitParam($objFormParam);
$objFormParam->setParam($_POST);
$this->arrErr = $this->lfCheckError($objFormParam);if (SC_Utils_Ex::isBlank($this->arrErr)) {
$this->lfRegistData($this->tpl_uniqid, $objPurchase, $objCustomer, $objFormParam);$arrParams = $objFormParam->getHashArray();
$shipping_id = $arrParams[‘deliv_check’] == ‘1’ ? 1 : 0;
$objPurchase->setShipmentItemTempForSole($objCartSess, $shipping_id);$objSiteSess->setRegistFlag();
SC_Response_Ex::sendRedirect(SHOPPING_CONFIRM_URLPATH);
// SC_Response_Ex::sendRedirect(SHOPPING_PAYMENT_URLPATH);
SC_Response_Ex::actionExit();
}
break;default:
// 前のページから戻ってきた場合は, お客様情報入力ページ
// if (isset($_GET[‘from’]) && $_GET[‘from’] == ‘nonmember’) {
$this->tpl_mainpage = $nonmember_mainpage;
$this->tpl_title = $nonmember_title;
$this->lfInitParam($objFormParam);
// } else {
// 通常はログインページ
// $this->lfInitLoginFormParam($objFormParam);
// }$this->setFormParams($objFormParam, $objPurchase, $this->tpl_uniqid);
break;メンテナンス性を考え、実際には「LC_Page_Shopping_Ex.php」に変更箇所だけ記述して上書きしています。
まず、defaultの所で、ログインページを表示するのをやめゲスト購入だけ表示するようにしました。
またサイト内ではMyページ等へのリンクも全て削除する必要があります。次にnonmember_confirmの所でリダイレクト先をSHOPPING_CONFIRM_URLPATHに変更しています。
最後にconfirm.phpの「戻る」ボタンのリンク先を<a href="./payment.php">から<a href="payment.php?mode=return">に変更して戻り先をお客様情報入力画面に変更しました。
- EC-CUBEで会員の送料と手数料を無料にする
- 2014.09.04
先日、事務所の引っ越しを済ませ、やっと落ち着いてきたところですが、ブログも引っ越しました。
このブログは「Web 技術ノート」ということで、WEB関連の技術ネタを中心に書いていく予定です。
以前のブログは、それ以外の身の回りのことなんかを書くかもしれませんのでそのままにしておきます。最近、ワードプレスとECCUBEの案件が増えてきました。
そんな中、ECCUBEで、会員登録した人の送料と、代引き手数料なんかの手数料全般を
無料にしたいというご要望を頂きましたので、備忘録としてまとめておきます。
※使用したEC-CUBEのバージョンは2.13.1です。変更ファイル:data/class/SC_CartSession.php
【送料無料化方法】
isDelivFree関数内に下記を追加
if(SC_Customer::isLoginSuccess()) {
return true;
}
ログインしているならTRUEを返す。【手数無料化方法】
calculate関数内に下記を追加
if(SC_Customer::isLoginSuccess()) {
$charge = 0;
$results[‘charge’] = 0;
}
ログインしているなら$results配列のchargeを0にする。自分用の備忘録なので、転用はご自身の責任で行ってください。