public static function create($conn = null, $class = null)
 {
     $q = new RecurringInvoiceQuery($conn);
     $q->from('RecurringInvoice i')->orderBy('i.customer_name asc');
     $q->_model = 'RecurringInvoice';
     return $q;
 }
 /**
  * creates all the pending invoices
  *
  * @return void
  **/
 public static function createPendingInvoices()
 {
     // first check status on all recurring
     RecurringInvoiceTable::setPendingInvoices();
     $collection = RecurringInvoiceQuery::create()->status(RecurringInvoice::PENDING)->execute();
     if ($collection->count()) {
         foreach ($collection as $r) {
             while ($r->countPendingInvoices() > 0) {
                 $i = $r->generateInvoice();
                 $r->refresh(true);
             }
             $r->checkStatus()->save();
         }
     }
 }
Esempio n. 3
0
 /**
  * calculate the totals for all invoices (recurring included) if $all is true
  * or for opened and overdue invoices otherwise
  *
  * @return void
  **/
 public static function calculateTotals($all = false)
 {
     if ($all) {
         $invoices = Doctrine::getTable('Common')->findAll();
     } else {
         $invoices = InvoiceQuery::create()->status(array(Invoice::OPENED, Invoice::OVERDUE))->execute();
         $recurrings = RecurringInvoiceQuery::create()->execute();
         foreach ($recurrings as $r) {
             $r->refresh(true);
             $r->setAmounts()->save();
             unset($r);
         }
     }
     foreach ($invoices as $invoice) {
         $invoice->refresh(true);
         $invoice->setAmounts()->save();
         unset($invoice);
     }
 }
<?php

include dirname(__FILE__) . '/../../bootstrap/functional.php';
include dirname(__FILE__) . '/../../testTools.php';
$deleteQuery = Doctrine_Query::create()->delete('Invoice i')->where('i.recurring_invoice_id IS NOT NULL');
$countQuery = RecurringInvoiceQuery::create();
$browser = new SiwappTestBrowser();
$browser->signin()->info("Recurring Invoices listing")->get('recurring')->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'index')->end()->with('response')->begin()->isStatusCode(200)->end();
$browser->test()->is($countQuery->countPending(), 3, "There are 3 pending invoices.");
$browser->info("Pending invoices generation")->with('response')->begin()->checkElement('#pendingButton')->end()->click('Generate pending invoices now')->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'generate')->end()->with('response')->begin()->isRedirected()->end()->followRedirect()->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'index')->end()->with('response')->begin()->isStatusCode(200)->end();
$browser->test()->is($countQuery->countPending(), 0, "No pending invoices.");
// delete generated invoices and reset recurrings status
$deleteQuery->execute();
foreach (RecurringInvoiceQuery::create()->execute() as $r) {
    $r->refresh(true);
    $r->checkStatus()->save();
}
$browser->info('Testing creating a new Invoice')->get('recurring')->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'index')->end()->with('response')->begin()->isStatusCode(200)->end()->click('New Recurring Invoice', array())->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'new')->end()->with('response')->begin()->isStatusCode(200)->end()->click('Save', array('invoice' => $fake_recurring_array))->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'create')->end()->with('response')->begin()->isRedirected()->end()->followRedirect()->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'edit')->end()->info('Checking the created recurring exists in the db')->with('doctrine')->begin()->check('RecurringInvoice', array('customer_name' => $fake_recurring_array['customer_name']))->end();
$recurring = Doctrine::getTable('Common')->findOneBy('customer_name', $fake_recurring_array['customer_name']);
// change some value to edit:
$fake_recurring_array['period'] = '10';
$fake_recurring_array['terms'] = 'new test terms';
$browser->info('Testing the editing of a recurring invoice')->get('recurring/edit/' . $recurring->id)->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'edit')->end()->click('Save', array('invoice' => $fake_recurring_array))->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'update')->end()->with('response')->begin()->isRedirected()->end()->followRedirect()->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'edit')->end()->info('Checking the changed value in the database')->with('doctrine')->begin()->check('RecurringInvoice', array('id' => $recurring->id, 'period' => $fake_recurring_array['period']))->end();
$browser->info('Recurring Invoice Deleting')->call('/recurring/delete', 'POST', array('id' => $recurring->id))->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'delete')->end()->with('response')->begin()->isRedirected()->end()->followRedirect()->with('request')->begin()->isParameter('module', 'recurring')->isParameter('action', 'index')->end()->with('doctrine')->begin()->check('Invoice', array('id' => $recurring->id), false)->end();
Esempio n. 5
0
 /**
  * undocumented function
  *
  * @return void
  * @author Carlos Escribano <*****@*****.**>
  **/
 public function executeGenerate(sfWebRequest $request)
 {
     if ($t1 = RecurringInvoiceQuery::create()->countPending()) {
         RecurringInvoiceTable::createPendingInvoices();
         $i18n = $this->getContext()->getI18N();
         $this->getUser()->info(sprintf($i18n->__("All %d recurring invoices were processed."), $t1));
     }
     $this->redirect('@recurring');
 }