コード例 #1
0
ファイル: PaymentPeriodGen.class.php プロジェクト: alcf/chms
 /**
  * Counts all associated RecurringPaymentses
  * @return int
  */
 public function CountRecurringPaymentses()
 {
     if (is_null($this->intId)) {
         return 0;
     }
     return RecurringPayments::CountByPaymentPeriodId($this->intId);
 }