Changeset 21479 for branches/version-2_12-dev/data/class/pages/admin/order
- Timestamp:
- 2012/02/11 04:20:07 (14 years ago)
- Location:
- branches/version-2_12-dev/data/class/pages/admin/order
- Files:
-
- 5 edited
-
LC_Page_Admin_Order_Mail.php (modified) (4 diffs)
-
LC_Page_Admin_Order_MailView.php (modified) (1 diff)
-
LC_Page_Admin_Order_Pdf.php (modified) (2 diffs)
-
LC_Page_Admin_Order_ProductSelect.php (modified) (8 diffs)
-
LC_Page_Admin_Order_Status.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php
r21446 r21479 122 122 * @var int order_id 123 123 */ 124 function getMailHistory($order_id) {124 function getMailHistory($order_id) { 125 125 $objQuery =& SC_Query_Ex::getSingletonInstance(); 126 126 $col = "send_date, subject, template_id, send_id"; … … 135 135 * @param SC_FormParam $objFormParam 136 136 */ 137 function doSend(&$objFormParam) {137 function doSend(&$objFormParam) { 138 138 $arrErr = $objFormParam->checkerror(); 139 139 … … 157 157 * @param SC_FormParam $objFormParam 158 158 */ 159 function confirm(&$objFormParam) {159 function confirm(&$objFormParam) { 160 160 $arrErr = $objFormParam->checkerror(); 161 161 // メールの送信 … … 184 184 * @param SC_FormParam $objFormParam 185 185 */ 186 function changeData(&$objFormParam) {186 function changeData(&$objFormParam) { 187 187 if (SC_Utils_Ex::sfIsInt($objFormParam->getValue('template_id'))) { 188 188 $objQuery =& SC_Query_Ex::getSingletonInstance(); -
branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_MailView.php
r21441 r21479 79 79 * @param int $send_id 80 80 */ 81 function getMailHistory($send_id) {81 function getMailHistory($send_id) { 82 82 $objQuery =& SC_Query_Ex::getSingletonInstance(); 83 83 $col = "subject, mail_body"; -
branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php
r21446 r21479 114 114 * PDF作成フォームのデフォルト値の生成 115 115 */ 116 function createFromValues($order_id,$pdf_order_id) {116 function createFromValues($order_id,$pdf_order_id) { 117 117 // ここが$arrFormの初登場ということを明示するため宣言する。 118 118 $arrForm = array(); … … 148 148 * @param SC_FormParam $objFormParam 149 149 */ 150 function createPdf(&$objFormParam) {150 function createPdf(&$objFormParam) { 151 151 152 152 $arrErr = $this->lfCheckError($objFormParam); -
branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_ProductSelect.php
r21441 r21479 130 130 * @param SC_Product $objProduct 131 131 */ 132 function getProductList($arrProductId, &$objProduct) {132 function getProductList($arrProductId, &$objProduct) { 133 133 $objQuery =& SC_Query_Ex::getSingletonInstance(); 134 134 … … 144 144 * @param array $arrProducts 145 145 */ 146 function getFnOnload($arrProducts) {146 function getFnOnload($arrProducts) { 147 147 foreach ($arrProducts as $arrProduct) { 148 148 $js_fnOnLoad .= "fnSetClassCategories(document.product_form{$arrProduct['product_id']});"; … … 155 155 * @param SC_Product $objProduct 156 156 */ 157 function getTplJavascript(&$objProduct) {157 function getTplJavascript(&$objProduct) { 158 158 return 'productsClassCategories = ' . SC_Utils_Ex::jsonEncode($objProduct->classCategories) . '; '; 159 159 } … … 164 164 * @param SC_Product $objProduct 165 165 */ 166 function getProducts($whereAndBind,&$objProduct, $page_max, $startno) {166 function getProducts($whereAndBind,&$objProduct, $page_max, $startno) { 167 167 $where = $whereAndBind['where']; 168 168 $bind = $whereAndBind['bind']; … … 184 184 * @param SC_Product $objProduct 185 185 */ 186 function getLineCount($whereAndBind,&$objProduct) {186 function getLineCount($whereAndBind,&$objProduct) { 187 187 $where = $whereAndBind['where']; 188 188 $bind = $whereAndBind['bind']; … … 200 200 * @param SC_FormParam $objFormParam 201 201 */ 202 function createWhere(&$objFormParam,&$objDb) {202 function createWhere(&$objFormParam,&$objDb) { 203 203 $arrForm = $objFormParam->getHashArray(); 204 204 $where = "alldtl.del_flg = 0"; … … 240 240 * @param unknown_type $globalParams 241 241 */ 242 function getNo($globalParams) {242 function getNo($globalParams) { 243 243 foreach ($globalParams as $params) { 244 244 if (isset($params['no']) && $params['no']!= '') { … … 254 254 * @param $productList 255 255 */ 256 function sortProducts($arrProduct_id,$productList) {256 function sortProducts($arrProduct_id,$productList) { 257 257 $products = array(); 258 258 foreach ($productList as $item) { -
branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php
r21446 r21479 166 166 167 167 // 対応状況一覧の表示 168 function lfStatusDisp($status,$pageno) {168 function lfStatusDisp($status,$pageno) { 169 169 $objQuery =& SC_Query_Ex::getSingletonInstance(); 170 170
Note: See TracChangeset
for help on using the changeset viewer.
