Changeset 18100 for branches/comu-ver2/data/class/util
- Timestamp:
- 2009/06/12 21:47:32 (17 years ago)
- File:
-
- 1 edited
-
branches/comu-ver2/data/class/util/SC_Utils.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/comu-ver2/data/class/util/SC_Utils.php
r18052 r18100 2062 2062 print("<strong>**デバッグ中**</strong></div>\n"); 2063 2063 } 2064 2065 /** 2066 * ポイント加算するかの判定 2067 * 2068 * @param integer $status 対応状況 2069 * @return boolean 加算するか 2070 */ 2071 function sfIsAddPoint($status) { 2072 switch ($status) { 2073 case ORDER_NEW: // 新規注文 2074 case ORDER_PAY_WAIT: // 入金待ち 2075 case ORDER_PRE_END: // 入金済み 2076 case ORDER_CANCEL: // キャンセル 2077 case ORDER_BACK_ORDER: // 取り寄せ中 2078 return false; 2079 2080 case ORDER_DELIV: // 発送済み 2081 return true; 2082 2083 default: 2084 break; 2085 } 2086 2087 return false; 2088 } 2064 2089 } 2065 2090 ?>
Note: See TracChangeset
for help on using the changeset viewer.
