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


PHP DaoFactory::ZaikoD方法代碼示例

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


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

示例1: perform

 function perform()
 {
     //パラメータ取得
     $company_id = $this->af->get('company_id');
     $warehouse_id = $this->af->get('warehouse_id');
     $product_id = $this->af->get('product_id');
     $keyword = $this->af->get('keyword');
     $bc_1 = $this->af->get('bc_1');
     $ai = $this->af->get('ai');
     $ai_arr = array();
     if (!empty($ai)) {
         foreach ($ai as $key => $value) {
             $ai_arr[] = '%(' . str_replace('y', '_', $key) . ')' . $value . '%';
         }
     }
     try {
         $dao = DaoFactory::ZaikoD();
         $params = array('company_id' => $company_id, 'warehouse_id' => $warehouse_id, 'product_id' => $product_id, 'barcode' => $bc_1, 'keyword' => $keyword, 'ai_arr' => $ai_arr);
         $output = $dao->searchZaikoListForApi($params);
     } catch (Exception $e) {
         // 致命的なエラーが発生
         $this->logger->log(LOG_DEBUG, $e->getTraceAsString());
         return array('500', $e->getMessage());
     }
     return array('json', $output);
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:26,代碼來源:List.php

示例2: perform

 /**
  * 在庫一覧のデータを返す
  * @access public
  * @return array 在庫一覧
  * @see Admin_ActionClass::perform()
  */
 public function perform()
 {
     // get request params ( search )
     $warehouse_id_arr = $this->af->get('warehouse_id_arr');
     $product_id = $this->af->get('product_id');
     $product_name = $this->af->get('product_name');
     $ai_cd = $this->af->get('ai_cd');
     $ai = $this->af->get('ai');
     $keyword = $this->af->get('keyword');
     // get request params ( pager )
     $limit = $this->af->get('limit');
     // default 50
     $page = $this->af->get('page');
     // default 1
     $order = $this->af->get('order');
     // default desc
     $column = $this->af->get('column');
     // default uriage_bi
     // get session params
     $company_id = $this->session->get('company_id');
     // setting pager
     $start_page = ($page - 1) * $limit + 1;
     $end_page = ($page - 1) * $limit + $limit;
     $output = array();
     $ai_arr = array();
     if ('' != $ai) {
         $tmparr = explode(';', $ai);
         foreach ($tmparr as $value) {
             $row = explode('=', $value);
             $ai_arr[] = '%(' . str_replace('y', '_', $row[0]) . ')' . $row[1] . '%';
         }
     }
     try {
         $stock = DaoFactory::ZaikoD();
         //検索
         $params = array('company_id' => $company_id, 'product_id2' => $product_id, 'product_name' => $product_name, 'start_page' => $start_page, 'warehouse_id_arr' => $warehouse_id_arr, 'end_page' => $end_page, 'order' => $order, 'column' => $column, 'keyword' => $keyword);
         $result = $stock->getZaikoList($params);
         $total = $result[0];
         $list = $stock->getZaikoAiList($params)->fetchAll(PDO::FETCH_ASSOC);
         // pager array setting
         $pagerData = array('result_page' => $page, 'result_start_num' => $start_page, 'result_end_num' => $end_page, 'result_all_count' => count($list) ? $list[0]['FOUND_ROWS'] : 0, 'result_get_count' => count($list), 'result_limit' => $limit);
         // output にセット
         $output['totalData'] = $total;
         $output['listData'] = $list;
         $output['pagerData'] = $pagerData;
     } catch (Exception $e) {
         // 致命的なエラーが発生
         $this->logger->log(LOG_DEBUG, $e->getTraceAsString());
         return array('500', $e->getMessage());
     }
     return array('json', $output);
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:58,代碼來源:Get.php

示例3: perform

 /**
  * 在庫一覧の保存が成功したかJSON形式で返す
  * @access public
  * @see Admin_ActionClass::perform()
  */
 function perform()
 {
     set_time_limit(DEFAULT_CSV_PROCESS_TIME_LIMIT);
     // 初期化
     $warehouse_id_arr = $this->af->get('warehouse_id_arr');
     $product_id = $this->af->get('product_id');
     $product_name = $this->af->get('product_name');
     $ai = $this->af->get('ai');
     $record_arr = $this->af->get('record_arr');
     $keyword = $this->af->get('keyword');
     $company_id = $this->session->get('company_id');
     if (!empty($record_arr)) {
         $params = array('company_id' => $company_id, 'record_arr' => $record_arr);
     } else {
         $params = array('company_id' => $company_id, 'warehouse_id_arr' => $warehouse_id_arr, 'product_id' => $product_name, 'product_name' => $product_id, 'keyword' => $keyword);
     }
     $ai_arr = array();
     if ('' != $ai) {
         $tmparr = explode(';', $ai);
         foreach ($tmparr as $value) {
             $row = explode('=', $value);
             $ai_arr[] = '%(' . str_replace('y', '_', $row[0]) . ')' . $row[1] . '%';
         }
         $params['ai_arr'] = $ai_arr;
     }
     try {
         // 一覧を取得
         $sth = DaoFactory::ZaikoD()->getZaikoForCsvData($params);
         // 書き込みクラスを生成
         require_once 'csv/ZaikoDCsvWriter.class.php';
         $writer = new ZaikoDCsvWriter();
         if (!isset($params['ai_arr'])) {
             unset($writer->format['AI_INFO']);
         }
     } catch (Exception $e) {
         // 致命的なエラーが発生
         $this->logger->log(LOG_DEBUG, $e->getTraceAsString());
         return array('500', $e->getMessage());
     }
     return array('csv', $writer, $sth, 'ZaikoD' . date('YmdHis') . '.csv');
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:46,代碼來源:Export.php

示例4: perform

 function perform()
 {
     //パラメータ取得
     $company_id = $this->af->get('company_id');
     $warehouse_id = $this->af->get('warehouse_id');
     $product_id = $this->af->get('product_id');
     $zk = DaoFactory::ZaikoD()->Retrieve(" company_id = ? and warehouse_id = ? and product_id = ? ", array($company_id, $warehouse_id, $product_id));
     $product = DaoFactory::ProductMst()->Retrieve(" company_id = ? and product_id = ? ", array($company_id, $product_id));
     $warehouse = DaoFactory::WarehouseMst()->Retrieve(" company_id = ? and warehouse_id = ? ", array($company_id, $warehouse_id));
     try {
         $rec['PRODUCT_ID'] = $product_id;
         $rec['PRODUCT_NAME'] = $product["PRODUCT_NAME"];
         $rec['WAREHOUSE_ID'] = $warehouse_id;
         $rec['WAREHOUSE_NAME'] = $warehouse['WAREHOUSE_NAME'];
         $rec['QTY'] = empty($zk['ZAIKOSU']) ? "0" : $zk['ZAIKOSU'];
     } catch (Exception $e) {
         // 致命的なエラーが発生
         $this->logger->log(LOG_DEBUG, $e->getTraceAsString());
         return array('500', $e->getMessage());
     }
     return array('json', $rec);
 }
開發者ID:weiweiabc109,項目名稱:test_project1,代碼行數:22,代碼來源:Get.php


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