PartKeepr\StockBundle\Entity\StockEntry::setStockLevel PHP Method

setStockLevel() public method

Negative values means part removal, positive values means part adding.
public setStockLevel ( integer $stockLevel )
$stockLevel integer The stock level
    public function setStockLevel($stockLevel)
    {
        $this->stockLevel = $stockLevel;
    }

Usage Example

Example #1
0
 /**
  * @Routing\Route("/api/parts/massRemoveStock", defaults={"method" = "get","_format" = "json"})
  * @View()
  *
  * @param Request $request
  *
  * @throws \Exception Thrown if parameters are formatted incorrectly
  */
 public function massRemoveStockAction(Request $request)
 {
     $removals = json_decode($request->get('removals'));
     if (!is_array($removals)) {
         throw new \Exception('removals parameter must be an array');
     }
     /**
      * @var IriConverter
      */
     $iriConverter = $this->get('api.iri_converter');
     $user = $this->get('partkeepr.userservice')->getUser();
     foreach ($removals as $removal) {
         if (!property_exists($removal, 'part')) {
             throw new \Exception('Each removal must have the part property defined');
         }
         if (!property_exists($removal, 'amount')) {
             throw new \Exception('Each removal must have the amount property defined');
         }
         /**
          * @var Part
          */
         $part = $iriConverter->getItemFromIri($removal->part);
         $stock = new StockEntry();
         $stock->setStockLevel(0 - intval($removal->amount));
         $stock->setUser($user);
         if (property_exists($removal, 'comment')) {
             $stock->setComment($removal->comment);
         }
         $part->addStockLevel($stock);
     }
     $this->get('doctrine.orm.entity_manager')->flush();
 }
All Usage Examples Of PartKeepr\StockBundle\Entity\StockEntry::setStockLevel