當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DaoFactory::LocationMst方法代碼示例

本文整理匯總了PHP中DaoFactory::LocationMst方法的典型用法代碼示例。如果您正苦於以下問題:PHP DaoFactory::LocationMst方法的具體用法?PHP DaoFactory::LocationMst怎麽用?PHP DaoFactory::LocationMst使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DaoFactory的用法示例。


在下文中一共展示了DaoFactory::LocationMst方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: perform

 /**
  * ロケーションマスタCSVを出力
  * @access public
  * @see Admin_ActionClass::perform()
  */
 function perform()
 {
     set_time_limit(DEFAULT_CSV_PROCESS_TIME_LIMIT);
     // get request params
     $location_id = $this->af->get('location_id');
     $location_name = $this->af->get('location_name');
     $keyword = $this->af->get('keyword');
     $record_arr = $this->af->get('record_arr');
     // get session params
     $company_id = $this->session->get('company_id');
     // pager setting
     $order = $this->af->get('order');
     // default asc
     $column = $this->af->get('column');
     // default warehouse_id
     try {
         // 一覧を取得
         if (!empty($record_arr)) {
             $params = array('company_id' => $company_id, 'record_arr' => $record_arr, 'csv' => true);
         } else {
             $params = array('company_id' => $company_id, 'location_id' => $location_id, 'location_name' => $location_name, 'keyword' => $keyword, 'order' => $order, 'column' => $column, 'csv' => true);
         }
         $dao = DaoFactory::LocationMst();
         $sth = $dao->getLocationList($params);
         // 書き込みクラスを生成
         require_once 'csv/LocationMstCsvWriter.class.php';
         $writer = new LocationMstCsvWriter();
     } catch (Exception $e) {
         // 致命的なエラーが発生
         return array('500', $e->getMessage());
     }
     return array('csv', $writer, $sth, 'LocationMst' . date('YmdHis') . '.csv');
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:38,代碼來源:Export.php

示例2: perform

 /**
  * ロケーションマスタの保存が成功したかJSON形式で返す
  * @access public
  * @see Admin_ActionClass::perform()
  */
 function perform()
 {
     // get request params
     $location_id = $this->af->get('location_id');
     $location_name = $this->af->get('location_name');
     $warehouse_id = $this->af->get('warehouse_id');
     // get session params
     $company_id = $this->session->get('company_id');
     $user_id = $this->session->get('user_id');
     // dao
     $locationDao = DaoFactory::LocationMst();
     try {
         // begin
         $locationDao->BeginTransaction();
         // cd exists
         $params = array('company_id' => $company_id, 'location_id' => $location_id, 'location_name' => $location_name, 'warehouse_id' => $warehouse_id, 'UID' => $user_id, 'PGM' => get_class());
         $locationDao->Insert($params);
         // commit
         $locationDao->CommitTransaction();
     } catch (Exception $e) {
         $locationDao->AbortTransaction();
         $this->logger->log(LOG_DEBUG, $e->getTraceAsString());
         return array(500, $e->getMessage());
     }
     exit;
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:31,代碼來源:Insert.php

示例3: perform

 /**
  * ロケーションマスタの保存が成功したかJSON形式で返す
  * @access public
  * @see Admin_ActionClass::perform()
  */
 function perform()
 {
     // get request params
     $record_arr = $this->af->get('record_arr');
     // get session params
     $company_id = $this->session->get('company_id');
     // dao
     $locationDao = DaoFactory::LocationMst();
     try {
         // begin
         $params = array('company_id' => $company_id);
         $locationDao->BeginTransaction();
         if ($_REQUEST['del'] == 'all') {
             $locationDao->Delete(' company_id = ? ', $params);
         } else {
             foreach ($record_arr as $key => $pk) {
                 $params['location_id'] = $pk['location_id'];
                 $locationDao->Delete(' company_id = ? AND location_id = ? ', $params);
             }
         }
         $locationDao->CommitTransaction();
     } catch (Exception $e) {
         $locationDao->AbortTransaction();
         $this->logger->log(LOG_DEBUG, $e->getTraceAsString());
         return array(500, $e->getMessage());
     }
     exit;
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:33,代碼來源:Delete.php

示例4: check_location_not_exists

 /**
  * リクエストのロケーションIDがDBに登録されていないことをチェックする
  * @param string $name フォーム名
  */
 public function check_location_not_exists($name)
 {
     // 商品を取得
     $params = array('company_id' => $this->backend->getSession()->get('company_id'), 'location_id' => $this->form_vars['location_id']);
     $location = DaoFactory::LocationMst()->Retrieve(' company_id = ? AND location_id = ? ', $params);
     // 商品が存在する場合
     if (!empty($location)) {
         $this->ae->add($name, "入力された{form}は既に登録されています", E_FORM_INVALIDCHAR);
     }
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:14,代碼來源:Control.php

示例5: perform

 /**
  * ロケーションマスタのデータをJSON形式で返す
  * @access public
  * @return array 區分マスタ
  * @see Admin_ActionClass::perform()
  */
 public function perform()
 {
     // get request params ( search )
     $location_id = $this->af->get('location_id');
     // get session params
     $company_id = $this->session->get('company_id');
     try {
         // DAO パラメータ定義
         $params = array('company_id' => $company_id, 'location_id' => $location_id);
         // 詳細を取得
         $detail = DaoFactory::LocationMst()->getLocationForEdit($params);
         // output にセット
         $output['totalData'] = array();
         $output['listData'] = $detail;
         $output['pagerData'] = array();
     } catch (Exception $e) {
         // 致命的なエラーが発生
         return array('500', $e->getMessage());
     }
     return array('json', $output);
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:27,代碼來源:Get.php


注:本文中的DaoFactory::LocationMst方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。