예제 #1
0
파일: ReceiptList.php 프로젝트: armic/erpts
 function countPurgeReceiptList()
 {
     $collectionRecords = new CollectionRecords();
     $condition = "WHERE status='' AND amountPaid <=0";
     if (!($ret = $collectionRecords->countRecords($condition))) {
         $ret = 0;
     }
     return $ret;
 }
예제 #2
0
 function getCollectionCount($condition = "")
 {
     $collectionRecords = new CollectionRecords();
     return $collectionRecords->countRecords($condition);
 }