コード例 #1
0
ファイル: CourierGen.class.php プロジェクト: heshuai64/einv2
 /**
  * Counts all associated ShippingAccounts
  * @return int
  */
 public function CountShippingAccounts()
 {
     if (is_null($this->intCourierId)) {
         return 0;
     }
     return ShippingAccount::CountByCourierId($this->intCourierId);
 }