/**
  * @test
  */
 public function gettersShouldReturnTheAttributeValue()
 {
     $this->assertAttributeEquals($this->address->getCountry(), 'country', $this->address);
     $this->assertAttributeEquals($this->address->getState(), 'state', $this->address);
     $this->assertAttributeEquals($this->address->getCity(), 'city', $this->address);
     $this->assertAttributeEquals($this->address->getPostalCode(), 'postalCode', $this->address);
     $this->assertAttributeEquals($this->address->getDistrict(), 'district', $this->address);
     $this->assertAttributeEquals($this->address->getStreet(), 'street', $this->address);
     $this->assertAttributeEquals($this->address->getNumber(), 'number', $this->address);
     $this->assertAttributeEquals($this->address->getComplement(), 'complement', $this->address);
 }
Beispiel #2
0
 public function __construct($name, TaxIdNumber $taxIdNumber, Address $address, BankAccount $account)
 {
     $this->name = $name;
     $this->taxIdNumber = (string) $taxIdNumber;
     $this->postalCode = $address->getPostalCode();
     $this->street = $address->getStreet();
     $this->city = $address->getCity();
     $this->country = $address->getCountry();
     $this->bankName = $account->getBankName();
     $this->bankNumber = $account->getBankNumber();
     $this->bicCode = $account->getBicCode();
 }
 protected function modify(Address $address)
 {
     $q = $this->dao->prepare('UPDATE ' . $this->table() . ' SET TITLE = :title, ADDRESS_1 = :address1, ADDRESS_2 = :address2, ZIP_CODE = :zipCode, CITY = :city, COUNTRY = :country, USER_ID = :userId WHERE ID = :id');
     $q->bindValue(':title', $address->getTitle());
     $q->bindValue(':address1', $address->getAddress1());
     $q->bindValue(':address2', $address->getAddress2());
     $q->bindValue(':zipCode', $address->getZipCode());
     $q->bindValue(':city', $address->getCity());
     $q->bindValue(':country', $address->getCountry());
     $q->bindValue(':userId', $address->getUserId(), PDO::PARAM_INT);
     $q->bindValue(':id', $address->id(), PDO::PARAM_INT);
     $q->execute();
 }
 /**
  * Formats an address.
  *
  * @param \Libreworks\Microformats\Address $address
  * @return string The HTML markup
  */
 public function format(Address $address)
 {
     $fields = ['p-street-address' => $address->getStreet(), 'p-extended-address' => $address->getExtended(), 'p-post-office-box' => $address->getPobox(), 'p-locality' => $address->getLocality(), 'p-region' => $address->getRegion(), 'p-postal-code' => $address->getPostal(), 'p-country' => $address->getCountry()];
     $tags = [];
     foreach ($fields as $k => $v) {
         if (strlen($v) > 0) {
             $tags[] = '<span class="' . $k . '">' . htmlspecialchars($v) . '</span>';
         }
     }
     $geo = $address->getGeo();
     if ($geo !== null) {
         $tags[] = '<span class="p-geo">' . $this->geoFormatter->format($geo) . '</span>';
     }
     return '<span class="h-adr">' . implode(' ', $tags) . '</span>';
 }
Beispiel #5
0
 public function __construct($name, TaxIdNumber $taxIdNumber, Address $address, BankAccount $account)
 {
     if (!$name) {
         throw new \InvalidArgumentException('Name is required');
     }
     $this->name = $name;
     $this->taxIdNumber = (string) $taxIdNumber;
     $this->postalCode = $address->getPostalCode();
     $this->street = $address->getStreet();
     $this->city = $address->getCity();
     $this->country = $address->getCountry();
     $this->bankName = $account->getBankName();
     $this->bankNumber = $account->getBankNumber();
     $this->bicCode = $account->getBicCode();
 }
Beispiel #6
0
    public static function calculateTax($taxClass, $productPrice, $address)
    {
        if (!$address) {
            $address = new Address();
        }
        $country = $address->getCountry();
        $province = $address->getState();
        $sql = 'select `tax_rate` from ecomm_tax_rate where country = "' . e($country) . '" AND 
															province = "' . e($province) . '" AND
															tax_class = "' . e($taxClass) . '"';
        $result = Database::singleton()->query_fetch($sql);
        $taxRate = $result['tax_rate'];
        if (!$taxRate) {
            $taxRate = 0;
        }
        $taxRate = $taxRate / 100;
        return (double) $taxRate * (double) $productPrice;
    }
 /**
  * 返回更新国家信息
  * @access public
  */
 function update()
 {
     $m = new Address();
     $id = get_post_value('id');
     $data = $m->getCountry($id);
     //返回查询国家数据(model模式)
     $this->assign('data', $data);
 }
 /**
  * Tests Address->getCountry()
  */
 public function testGetCountry()
 {
     $this->assertEquals('COUNTRY', $this->Address->getCountry());
 }
 /**
  * 系统函数
  * @access public
  */
 function beforeAction()
 {
     $m = new Address();
     $data = $m->getCountry();
     $this->assign('country', $data);
 }
Beispiel #10
0
 /**
  * @todo Implement testSetCountry().
  */
 public function testSetCountry()
 {
     $this->object->setCountry(8);
     $this->assertEquals($this->object->getCountry(), 8);
 }
Beispiel #11
0
 public function encodeAddress(Address $address)
 {
     return ['street' => $address->getStreet(), 'street2' => $address->getStreet2(), 'zip' => $address->getZip(), 'city' => $address->getCity(), 'country' => $address->getCountry(), 'state' => $address->getState(), 'email' => $address->getEmail(), 'tel' => $address->getTel(), 'fax' => $address->getZip()];
 }
Beispiel #12
0
 /**
  * Tests Address->setCountry()
  */
 public function testSetCountry()
 {
     $this->Address->setCountry('country');
     $this->assertEquals('country', $this->Address->getCountry());
 }