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


PHP Item::addStock方法代碼示例

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


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

示例1: store

 public function store(ItemInRequest $request)
 {
     try {
         $counter = $request->input('counter');
         ItemIn::create($request->all());
         $data = ItemIn::orderBy('created_at', 'desc')->first();
         echo $counter;
         for ($i = 0; $i < $counter; $i++) {
             $qty = $request->input('qty' . strval($i));
             $itemId = $request->input('item_id' . strval($i));
             $isItemAvailable = Item::where('id', 'like', '%' . $itemId . '%')->first();
             // Item::findOrFail($itemId);
             if (is_null($isItemAvailable)) {
                 ItemIn::destroy($data->id);
                 return redirect('itemin')->with('message', 'Data dengan kode barang: ' . $itemId . ', tidak ada');
             } else {
                 DetailItemIn::create(['qty' => $qty, 'item_id' => $itemId, 'item_in_id' => $data->id]);
                 Item::addStock($itemId, $qty);
             }
         }
         return redirect('itemin')->with('message', 'Data berhasil dibuat!');
     } catch (\Illuminate\Database\QueryException $e) {
         return redirect('itemin')->with('message', 'Data dengan email tersebut sudah digunakan!');
     } catch (\PDOException $e) {
         return redirect('itemin')->with('message', 'Data dengan email tersebut sudah digunakan!');
     }
 }
開發者ID:Herlanggaws,項目名稱:givani,代碼行數:27,代碼來源:ItemInController.php


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