示例#1
0
 /**
  * This is a method for emulating ON DELETE CASCADE for DBs that don't support this
  * feature (like MySQL or SQLite).
  *
  * This method is not very speedy because it must perform a query first to get
  * the implicated records and then perform the deletes by calling those Peer classes.
  *
  * This method should be used within a transaction if possible.
  *
  * @param      Criteria $criteria
  * @param      PropelPDO $con
  * @return     int The number of affected rows (if supported by underlying database driver).
  */
 protected static function doOnDeleteCascade(Criteria $criteria, PropelPDO $con)
 {
     // initialize var to track total num of affected rows
     $affectedRows = 0;
     // first find the objects that are implicated by the $criteria
     $objects = MaterialPeer::doSelect($criteria, $con);
     foreach ($objects as $obj) {
         // delete related Cessiomaterial objects
         $criteria = new Criteria(CessiomaterialPeer::DATABASE_NAME);
         $criteria->add(CessiomaterialPeer::MATERIAL_IDMATERIAL, $obj->getIdmaterial());
         $affectedRows += CessiomaterialPeer::doDelete($criteria, $con);
         // delete related Horarisespais objects
         $criteria = new Criteria(HorarisespaisPeer::DATABASE_NAME);
         $criteria->add(HorarisespaisPeer::MATERIAL_IDMATERIAL, $obj->getIdmaterial());
         $affectedRows += HorarisespaisPeer::doDelete($criteria, $con);
     }
     return $affectedRows;
 }
示例#2
0
 public function LoadEscullMaterial($OCESSIO, $RMATERIAL = null, $RMATERIALNOINV = "", $ERROR_SELECT_MATERIAL = false)
 {
     $this->MATERIALOUT = array();
     //Si és una cessió nova
     if (!$OCESSIO->isNew() && !$ERROR_SELECT_MATERIAL) {
         $this->MATERIALOUT = CessiomaterialPeer::getSelectMaterialOut($OCESSIO->getCessioId(), $this->IDS);
         $this->MAT_NO_INV = $OCESSIO->getMaterialNoInventariat();
         //Si és una edició
     } else {
         //Carreguem el material no inventariat i passem el material a visualitzar altre cop
         $this->MAT_NO_INV = $RMATERIALNOINV;
         foreach ($RMATERIAL as $G => $AM) {
             $idMG = MaterialPeer::retrieveByPK($AM)->getMaterialgenericIdmaterialgeneric();
             $this->MATERIALOUT[] = array('material' => $AM, 'generic' => $idMG);
         }
     }
     $this->IDC = $this->FCessio->getObject()->getCessioId();
     $this->MODE = 'ESCULL_MATERIAL';
 }
示例#3
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's phpname (e.g. 'AuthorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = CessiomaterialPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setIdcessiomaterial($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setMaterialIdmaterial($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setCessioId($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setSiteId($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setActiu($arr[$keys[4]]);
     }
 }
示例#4
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Material is new, it will return
  * an empty collection; or if this Material has previously
  * been saved, it will retrieve related Cessiomaterials from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Material.
  */
 public function getCessiomaterialsJoinCessio($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     if ($criteria === null) {
         $criteria = new Criteria(MaterialPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collCessiomaterials === null) {
         if ($this->isNew()) {
             $this->collCessiomaterials = array();
         } else {
             $criteria->add(CessiomaterialPeer::MATERIAL_IDMATERIAL, $this->idmaterial);
             $this->collCessiomaterials = CessiomaterialPeer::doSelectJoinCessio($criteria, $con, $join_behavior);
         }
     } else {
         // the following code is to determine if a new query is
         // called for.  If the criteria is the same as the last
         // one, just return the collection.
         $criteria->add(CessiomaterialPeer::MATERIAL_IDMATERIAL, $this->idmaterial);
         if (!isset($this->lastCessiomaterialCriteria) || !$this->lastCessiomaterialCriteria->equals($criteria)) {
             $this->collCessiomaterials = CessiomaterialPeer::doSelectJoinCessio($criteria, $con, $join_behavior);
         }
     }
     $this->lastCessiomaterialCriteria = $criteria;
     return $this->collCessiomaterials;
 }
示例#5
0
 private static function criteriaOcupatCessio($datai, $dataf, $hi, $hf, $idS, $idG = null, $idH = null, $idC = null)
 {
     //Agafo les activitats que tenen material ocupat una data determinada.
     $C = new Criteria();
     $C = self::getCriteriaActiu($C, $idS);
     $C = CessiomaterialPeer::getCriteriaActiu($C, $idS);
     $C = CessioPeer::getCriteriaActiu($C, $idS);
     if (!is_null($idG)) {
         $C->add(MaterialPeer::MATERIALGENERIC_IDMATERIALGENERIC, $idG);
     }
     if (!is_null($idC)) {
         $C->add(CessiomaterialPeer::CESSIO_ID, $idC, Criteria::NOT_EQUAL);
     }
     $C->addJoin(self::IDMATERIAL, CessiomaterialPeer::MATERIAL_IDMATERIAL);
     $C->addJoin(CessiomaterialPeer::CESSIO_ID, CessioPeer::CESSIO_ID);
     $C->addAnd(self::getCriteriaSolapament($C, $datai, $dataf, CessioPeer::DATA_CESSIO, CessioPeer::DATA_RETORN, false));
     $C->add(CessiomaterialPeer::ACTIU, true);
     $C->add(CessioPeer::ACTIU, true);
     return $C;
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(CessiomaterialPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CessiomaterialPeer::DATABASE_NAME);
         $criteria->add(CessiomaterialPeer::IDCESSIOMATERIAL, $pks, Criteria::IN);
         $objs = CessiomaterialPeer::doSelect($criteria, $con);
     }
     return $objs;
 }