示例#1
0
文件: Producto.php 项目: retrofox/PCC
 public function decrementarStock($cantidad)
 {
     ProductoPeer::actualizarStock($this->getId(), $cantidad, false);
     return $this->getStockActual();
 }