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


PHP Supplier::lists方法代碼示例

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


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

示例1: index

 /**
  * Display a listing of the resource.
  * GET /sttb
  *
  * @return Response
  */
 public function index()
 {
     $query = DB::table('STTB')->select('no_STTB')->orderBy('no_STTB', 'desc')->first();
     $inisial = 'STB';
     if (!isset($query)) {
         $kd = $inisial . '001';
     } else {
         $kode = substr($query->no_STTB, 3);
         $kode = $kode + 1;
         if ($kode > 0) {
             $kd = $inisial . '00' . $kode;
             if ($kode > 9) {
                 $kd = $inisial . '0' . $kode;
                 if ($kode > 99) {
                     $kd = $inisial . $kode;
                 }
             }
         }
     }
     $data = array('supplier' => Supplier::lists('nm_supp', 'id_supp'), 'noSTTB' => $kd);
     return View::make('transaksi.STTB', $data);
 }
開發者ID:shimohira,項目名稱:supplier,代碼行數:28,代碼來源:STTBController.php

示例2: create

 /**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     $commodities = Commodity::lists('name', 'id');
     $suppliers = Supplier::lists('name', 'id');
     return View::make('receipt.create')->with('commodities', $commodities)->with('suppliers', $suppliers);
 }
開發者ID:BaobabHealthTrust,項目名稱:iBLIS,代碼行數:11,代碼來源:ReceiptController.php

示例3: newOrder

 public function newOrder()
 {
     // $products = DB::table('tblInventory')
     // ->join('tblProducts', function($join)
     // {
     // 	$join->on('tblInventory.strProdID','=','tblProducts.strProdID');
     // })->get();
     $products = DB::table('tblProducts')->get();
     $suppliers = Supplier::lists('strSuppCompanyName', 'strSuppID');
     $data = array('suppliers' => $suppliers);
     $ids = DB::table('tblOrders')->select('strOrdersID')->orderBy('updated_at', 'desc')->orderBy('strOrdersID', 'desc')->take(1)->get();
     $ID = $ids["0"]->strOrdersID;
     $newID = $this->smart($ID);
     Session::put('orderqueue', $newID);
     $ordProd = OrderProduct::all();
     return View::make('neworder')->with('products', $products)->with('data', $data)->with('newID', $newID)->with('ordProd', $ordProd);
 }
開發者ID:ExperimentalGroup,項目名稱:inventoryfinal,代碼行數:17,代碼來源:HomeController.php

示例4: create

 /**
  * Show the form for creating a new resource.
  * GET /stocks/create
  *
  * @return Response
  */
 public function create()
 {
     //show the form
     $suppliers = Supplier::lists('name', 'id');
     return View::make('stocks.new')->with('title', 'New Stock')->with('suppliers', compact('suppliers'));
 }
開發者ID:fagray,項目名稱:fposs,代碼行數:12,代碼來源:StocksController.php


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