33 lines
681 B
PHP
33 lines
681 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* Mark all invoices that have been paid as complete, so that they are not processed again.
|
|
*
|
|
* @package Invoice
|
|
* @category Tasks
|
|
* @author Deon George
|
|
* @copyright (c) 2009-2013 Open Source Billing
|
|
* @license http://dev.osbill.net/license.html
|
|
*/
|
|
class Task_Invoice_Complete extends Task {
|
|
protected function _execute(array $params) {
|
|
$c = 0;
|
|
|
|
$o = ORM::factory('Invoice')
|
|
->where_unprocessed();
|
|
|
|
foreach ($o->find_all() as $io) {
|
|
if ($io->due() == 0)
|
|
$io->process_status = 1;
|
|
|
|
$io->save();
|
|
|
|
if ($io->saved())
|
|
$c++;
|
|
}
|
|
|
|
printf('%s invoices updated',$c);
|
|
}
|
|
}
|
|
?>
|