/**
  * Returns a new ChildLocalPickupShippingQuery object.
  *
  * @param string   $modelAlias The alias of a model in the query
  * @param Criteria $criteria   Optional Criteria to build the query from
  *
  * @return ChildLocalPickupShippingQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof \LocalPickup\Model\LocalPickupShippingQuery) {
         return $criteria;
     }
     $query = new \LocalPickup\Model\LocalPickupShippingQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Exemplo n.º 2
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param  ConnectionInterface $con
  * @return void
  * @throws PropelException
  * @see LocalPickupShipping::setDeleted()
  * @see LocalPickupShipping::isDeleted()
  */
 public function delete(ConnectionInterface $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getServiceContainer()->getWriteConnection(LocalPickupShippingTableMap::DATABASE_NAME);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ChildLocalPickupShippingQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
 /**
  * Performs an INSERT on the database, given a LocalPickupShipping or Criteria object.
  *
  * @param  mixed               $criteria Criteria or LocalPickupShipping object containing data that is used to create the INSERT statement.
  * @param  ConnectionInterface $con      the ConnectionInterface connection to use
  * @return mixed               The new primary key.
  * @throws PropelException     Any exceptions caught during processing will be
  *                                      rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(LocalPickupShippingTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from LocalPickupShipping object
     }
     if ($criteria->containsKey(LocalPickupShippingTableMap::ID) && $criteria->keyContainsValue(LocalPickupShippingTableMap::ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . LocalPickupShippingTableMap::ID . ')');
     }
     // Set the correct dbName
     $query = LocalPickupShippingQuery::create()->mergeWith($criteria);
     try {
         // use transaction because $criteria could contain info
         // for more than one table (I guess, conceivably)
         $con->beginTransaction();
         $pk = $query->doInsert($con);
         $con->commit();
     } catch (PropelException $e) {
         $con->rollBack();
         throw $e;
     }
     return $pk;
 }
Exemplo n.º 4
0
 /**
  *
  * in this function you add all the fields you need for your Form.
  * Form this you have to call add method on $this->formBuilder attribute :
  *
  * $this->formBuilder->add("name", "text")
  *   ->add("email", "email", array(
  *           "attr" => array(
  *               "class" => "field"
  *           ),
  *           "label" => "email",
  *           "constraints" => array(
  *               new \Symfony\Component\Validator\Constraints\NotBlank()
  *           )
  *       )
  *   )
  *   ->add('age', 'integer');
  *
  * @return null
  */
 protected function buildForm()
 {
     $this->formBuilder->add("price", "text", array("label" => Translator::getInstance()->trans("Price"), "label_attr" => array("for" => "pricefield"), "constraints" => array(new NotBlank()), "data" => LocalPickupShippingQuery::create()->getPrice()));
 }
Exemplo n.º 5
0
 /**
  * calculate and return delivery price
  *
  * @param Country $country
  *
  * @return double
  */
 public function getPostage(Country $country)
 {
     return LocalPickupShippingQuery::create()->getPrice();
 }