Compare commits
64 Commits
jqgrid_3.5
...
surplus_ac
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
90ecbda541 | ||
|
|
4afe0bd77b | ||
|
|
8440a7c833 | ||
|
|
00d509f23d | ||
|
|
080c82fc10 | ||
|
|
1b02be19f0 | ||
|
|
366d59a5e6 | ||
|
|
2634cf824a | ||
|
|
1429fe720b | ||
|
|
754cdb8522 | ||
|
|
a1a68f3209 | ||
|
|
8843d24baa | ||
|
|
892618db36 | ||
|
|
3decfff33b | ||
|
|
945221d565 | ||
|
|
a968d7abe6 | ||
|
|
8b6b8884f7 | ||
|
|
14805190fc | ||
|
|
a1bdecfcaa | ||
|
|
4896834a96 | ||
|
|
a9c3c40053 | ||
|
|
4125d7ba16 | ||
|
|
26d9b1bc38 | ||
|
|
f30e536e47 | ||
|
|
96a030e340 | ||
|
|
460e9a2e64 | ||
|
|
6e63365604 | ||
|
|
4f85dc243e | ||
|
|
30f755cf42 | ||
|
|
170ba466de | ||
|
|
d2d1bb3fc4 | ||
|
|
d024d333d2 | ||
|
|
778bb43895 | ||
|
|
41321481c7 | ||
|
|
fe9f6ce949 | ||
|
|
f81bfdecc2 | ||
|
|
8dd6fc957d | ||
|
|
d92acf12de | ||
|
|
43d1d2ccf5 | ||
|
|
c06399cf86 | ||
|
|
d1187f9bdd | ||
|
|
b7a77757f9 | ||
|
|
5f199d97fe | ||
|
|
fc292e3366 | ||
|
|
94e300a129 | ||
|
|
791b2d8ab1 | ||
|
|
091920d80a | ||
|
|
1511986ed0 | ||
|
|
1e88e1fce2 | ||
|
|
a2014a916e | ||
|
|
bd52030984 | ||
|
|
f23726783e | ||
|
|
1d27b4dcb5 | ||
|
|
e74f8987d9 | ||
|
|
9c55a047a8 | ||
|
|
6f2038f7b0 | ||
|
|
ec22f4b003 | ||
|
|
70629e360b | ||
|
|
fc4e812d67 | ||
|
|
b6ee958c35 | ||
|
|
f82df229f2 | ||
|
|
96c499786c | ||
|
|
52e0181bfb | ||
|
|
b65c5c1dbf |
@@ -471,7 +471,6 @@ CREATE TABLE `pmgr_units` (
|
|||||||
'DIRTY',
|
'DIRTY',
|
||||||
'VACANT',
|
'VACANT',
|
||||||
'OCCUPIED',
|
'OCCUPIED',
|
||||||
'LATE', -- NOT SURE
|
|
||||||
'LOCKED',
|
'LOCKED',
|
||||||
'LIENED')
|
'LIENED')
|
||||||
NOT NULL DEFAULT 'VACANT',
|
NOT NULL DEFAULT 'VACANT',
|
||||||
@@ -725,6 +724,9 @@ CREATE TABLE `pmgr_leases` (
|
|||||||
`notice_received_date` DATE DEFAULT NULL,
|
`notice_received_date` DATE DEFAULT NULL,
|
||||||
`close_date` DATE DEFAULT NULL,
|
`close_date` DATE DEFAULT NULL,
|
||||||
|
|
||||||
|
`charge_through_date` DATE DEFAULT NULL,
|
||||||
|
`paid_through_date` DATE DEFAULT NULL,
|
||||||
|
|
||||||
`deposit` FLOAT(12,2) DEFAULT NULL,
|
`deposit` FLOAT(12,2) DEFAULT NULL,
|
||||||
`rent` FLOAT(12,2) DEFAULT NULL,
|
`rent` FLOAT(12,2) DEFAULT NULL,
|
||||||
|
|
||||||
@@ -872,47 +874,46 @@ CREATE TABLE `pmgr_accounts` (
|
|||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
LOCK TABLES `pmgr_accounts` WRITE;
|
LOCK TABLES `pmgr_accounts` WRITE;
|
||||||
INSERT INTO `pmgr_accounts` (`type`, `name`, `level`)
|
|
||||||
VALUES
|
|
||||||
('EQUITY', 'Equity', 1),
|
|
||||||
('LIABILITY', 'Loan', 1);
|
|
||||||
INSERT INTO `pmgr_accounts` (`type`, `name`)
|
INSERT INTO `pmgr_accounts` (`type`, `name`)
|
||||||
VALUES
|
VALUES
|
||||||
('ASSET', 'A/R' ),
|
('ASSET', 'A/R' ),
|
||||||
-- REVISIT <AP>: 20090710 : We don't really need NSF, as it
|
('LIABILITY', 'A/P' ),
|
||||||
-- will always run a zero balance. However, it will help
|
('LIABILITY', 'Customer Credit' );
|
||||||
-- us identify how serious the NSF situation is.
|
INSERT INTO `pmgr_accounts` (`type`, `name`, `receipts`)
|
||||||
|
VALUES
|
||||||
|
('ASSET', 'Cash', 1),
|
||||||
|
('ASSET', 'Check', 1),
|
||||||
|
('ASSET', 'Money Order', 1),
|
||||||
|
('ASSET', 'ACH', 1),
|
||||||
|
('EXPENSE', 'Concession', 1);
|
||||||
|
INSERT INTO `pmgr_accounts` (`type`, `name`)
|
||||||
|
VALUES
|
||||||
('ASSET', 'NSF' ),
|
('ASSET', 'NSF' ),
|
||||||
('LIABILITY', 'A/P' );
|
('EXPENSE', 'Waiver' ),
|
||||||
INSERT INTO `pmgr_accounts` (`type`, `name`, `receipts`, `refunds`)
|
('EXPENSE', 'Bad Debt' );
|
||||||
VALUES
|
|
||||||
('ASSET', 'Cash', 1, 0),
|
|
||||||
('ASSET', 'Check', 1, 0),
|
|
||||||
('ASSET', 'Money Order', 1, 0),
|
|
||||||
('ASSET', 'ACH', 1, 0),
|
|
||||||
('ASSET', 'Closing', 0, 0), -- REVISIT <AP>: Temporary
|
|
||||||
('EXPENSE', 'Concession', 1, 0),
|
|
||||||
('EXPENSE', 'Waiver', 0, 0);
|
|
||||||
INSERT INTO `pmgr_accounts` (`type`, `name`, `refunds`, `deposits`)
|
|
||||||
VALUES
|
|
||||||
-- REVISIT <AP>: 20090710 : We probably don't really want petty cash depositable.
|
|
||||||
-- This is just for testing our deposit code
|
|
||||||
('ASSET', 'Petty Cash', 1, 1);
|
|
||||||
INSERT INTO `pmgr_accounts` (`type`, `name`, `invoices`)
|
INSERT INTO `pmgr_accounts` (`type`, `name`, `invoices`)
|
||||||
VALUES
|
VALUES
|
||||||
('LIABILITY', 'Tax', 1),
|
('LIABILITY', 'Tax', 0),
|
||||||
('LIABILITY', 'Security Deposit', 1),
|
('LIABILITY', 'Security Deposit', 1),
|
||||||
('INCOME', 'Rent', 1),
|
('INCOME', 'Rent', 1),
|
||||||
('INCOME', 'Late Charge', 1),
|
('INCOME', 'Late Charge', 1),
|
||||||
('INCOME', 'NSF Charge', 1),
|
('INCOME', 'NSF Charge', 1),
|
||||||
|
('INCOME', 'Cleaning', 1),
|
||||||
('INCOME', 'Damage', 1);
|
('INCOME', 'Damage', 1);
|
||||||
INSERT INTO `pmgr_accounts` (`type`, `name`, `deposits`, `refunds`)
|
|
||||||
VALUES
|
|
||||||
('ASSET', 'Bank', 1, 1);
|
|
||||||
INSERT INTO `pmgr_accounts` (`type`, `name`)
|
INSERT INTO `pmgr_accounts` (`type`, `name`)
|
||||||
VALUES
|
VALUES
|
||||||
('EXPENSE', 'Bad Debt' ),
|
|
||||||
('EXPENSE', 'Maintenance' );
|
('EXPENSE', 'Maintenance' );
|
||||||
|
INSERT INTO `pmgr_accounts` (`type`, `name`, `refunds`)
|
||||||
|
VALUES
|
||||||
|
('ASSET', 'Petty Cash', 1);
|
||||||
|
INSERT INTO `pmgr_accounts` (`type`, `name`, `level`, `deposits`, `refunds`)
|
||||||
|
VALUES
|
||||||
|
('ASSET', 'Bank', 6, 1, 1);
|
||||||
|
INSERT INTO `pmgr_accounts` (`type`, `name`, `level`)
|
||||||
|
VALUES
|
||||||
|
('ASSET', 'Closing', 6),
|
||||||
|
('LIABILITY', 'Loan', 1),
|
||||||
|
('EQUITY', 'Equity', 1);
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
|
|
||||||
@@ -970,6 +971,7 @@ CREATE TABLE `pmgr_transactions` (
|
|||||||
'CREDIT_NOTE', -- Inverse of Sales Invoice
|
'CREDIT_NOTE', -- Inverse of Sales Invoice
|
||||||
'PAYMENT', -- Actual payment
|
'PAYMENT', -- Actual payment
|
||||||
'DEPOSIT',
|
'DEPOSIT',
|
||||||
|
'WITHDRAWAL',
|
||||||
'CLOSE', -- Essentially an internal (not accounting) transaction
|
'CLOSE', -- Essentially an internal (not accounting) transaction
|
||||||
-- 'CREDIT',
|
-- 'CREDIT',
|
||||||
-- 'REFUND',
|
-- 'REFUND',
|
||||||
@@ -1119,6 +1121,9 @@ CREATE TABLE `pmgr_statement_entries` (
|
|||||||
-- Allow the disbursement to reconcile against the charge
|
-- Allow the disbursement to reconcile against the charge
|
||||||
`charge_entry_id` INT(10) UNSIGNED DEFAULT NULL,
|
`charge_entry_id` INT(10) UNSIGNED DEFAULT NULL,
|
||||||
|
|
||||||
|
-- The transaction that reversed this charge, if any
|
||||||
|
`reverse_transaction_id` INT(10) UNSIGNED DEFAULT NULL,
|
||||||
|
|
||||||
`comment` VARCHAR(255) DEFAULT NULL,
|
`comment` VARCHAR(255) DEFAULT NULL,
|
||||||
|
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
|
|||||||
85
db/scratch.sql
Normal file
85
db/scratch.sql
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
-- Delete bad transaction(s)
|
||||||
|
DELETE M
|
||||||
|
FROM
|
||||||
|
pmgr_ledger_entries LE,
|
||||||
|
pmgr_tenders M
|
||||||
|
WHERE
|
||||||
|
M.ledger_entry_id = LE.id AND
|
||||||
|
LE.transaction_id
|
||||||
|
IN (467);
|
||||||
|
DELETE LE
|
||||||
|
FROM
|
||||||
|
pmgr_ledger_entries LE
|
||||||
|
WHERE
|
||||||
|
LE.transaction_id
|
||||||
|
IN (467);
|
||||||
|
DELETE SE
|
||||||
|
FROM
|
||||||
|
pmgr_statement_entries SE
|
||||||
|
WHERE
|
||||||
|
SE.transaction_id
|
||||||
|
IN (467);
|
||||||
|
DELETE T
|
||||||
|
FROM
|
||||||
|
pmgr_transactions T
|
||||||
|
WHERE
|
||||||
|
T.id
|
||||||
|
IN (467);
|
||||||
|
|
||||||
|
-- Delete bad transaction, one variable setting
|
||||||
|
SET @tid = 467;
|
||||||
|
DELETE M FROM pmgr_ledger_entries LE, pmgr_tenders M
|
||||||
|
WHERE M.ledger_entry_id = LE.id AND LE.transaction_id = @tid;
|
||||||
|
DELETE LE FROM pmgr_ledger_entries LE
|
||||||
|
WHERE LE.transaction_id = @tid;
|
||||||
|
DELETE SE FROM pmgr_statement_entries SE
|
||||||
|
WHERE SE.transaction_id = @tid;
|
||||||
|
DELETE T FROM pmgr_transactions T
|
||||||
|
WHERE T.id = @tid;
|
||||||
|
|
||||||
|
|
||||||
|
-- Determine economic conditions
|
||||||
|
SELECT `status`, COUNT(id), SUM(rent) FROM pmgr_units
|
||||||
|
GROUP BY `status` WITH ROLLUP;
|
||||||
|
|
||||||
|
|
||||||
|
-- Check that transaction totals add up correctly
|
||||||
|
SELECT T.id, T.type, T.amount,
|
||||||
|
-- T.type, A.type, E.crdr,
|
||||||
|
SUM(IF(E.account_id = T.account_id,
|
||||||
|
IF(A.type IN ('ASSET','EXPENSE') XOR E.crdr='DEBIT',-1,1),0)
|
||||||
|
*E.amount) AS Tamt,
|
||||||
|
SUM(IF(E.account_id = T.account_id,
|
||||||
|
0,IF(A.type IN ('ASSET','EXPENSE') XOR E.crdr='DEBIT',-1,1))
|
||||||
|
*E.amount) AS Oamt,
|
||||||
|
COUNT(E.id) AS Ecnt
|
||||||
|
FROM pmgr_transactions T
|
||||||
|
-- LEFT JOIN pmgr_statement_entries E ON E.transaction_id = T.id
|
||||||
|
LEFT JOIN pmgr_ledger_entries E ON E.transaction_id = T.id
|
||||||
|
LEFT JOIN pmgr_accounts A ON A.id = T.account_id -- E.account_id
|
||||||
|
-- WHERE
|
||||||
|
-- E.account_id != T.account_id
|
||||||
|
GROUP BY T.id
|
||||||
|
HAVING
|
||||||
|
(T.type = 'INVOICE' AND Tamt <> T.amount)
|
||||||
|
OR
|
||||||
|
(T.type <> 'INVOICE' AND Oamt <> T.amount)
|
||||||
|
OR
|
||||||
|
(Tamt * -1 <> Oamt)
|
||||||
|
|
||||||
|
|
||||||
|
-- Verify that statement entries all have the correct type
|
||||||
|
SELECT SE.id, SE.type, T.id, T.type
|
||||||
|
FROM pmgr_statement_entries SE
|
||||||
|
LEFT JOIN pmgr_transactions T ON T.id = SE.transaction_id
|
||||||
|
WHERE
|
||||||
|
((T.type = 'RECEIPT' OR T.type = 'CREDIT_NOTE') AND
|
||||||
|
SE.type NOT IN ('DISBURSEMENT', 'WAIVER', 'REVERSAL', 'WRITEOFF', 'SURPLUS')
|
||||||
|
)
|
||||||
|
OR
|
||||||
|
((T.type = 'INVOICE' OR T.type = 'PAYMENT') AND
|
||||||
|
SE.type NOT IN ('CHARGE', 'PAYMENT', 'REFUND')
|
||||||
|
)
|
||||||
|
-- catch other types not considered in this query
|
||||||
|
OR T.type NOT IN ('RECEIPT', 'CREDIT_NOTE', 'INVOICE', 'PAYMENT')
|
||||||
|
|
||||||
@@ -555,9 +555,7 @@ foreach my $tender_name ('Cash', 'Check', 'Money Order', 'ACH',
|
|||||||
($name1, $name_field) = ('Money Order Number', 'data1')
|
($name1, $name_field) = ('Money Order Number', 'data1')
|
||||||
if ($tender_name eq 'Money Order');
|
if ($tender_name eq 'Money Order');
|
||||||
|
|
||||||
# REVISIT <AP>: 20090810
|
($name1, $name2, $name3, $name_field) = ('Routing Number', 'Account Number', 'Batch Number', 'data3')
|
||||||
# Make data3 be the confirmation number?
|
|
||||||
($name1, $name2) = ('Routing Number', 'Account Number')
|
|
||||||
if ($tender_name eq 'ACH');
|
if ($tender_name eq 'ACH');
|
||||||
|
|
||||||
($name1, $name2) = ('Debit Card Number', 'Expiration Date')
|
($name1, $name2) = ('Debit Card Number', 'Expiration Date')
|
||||||
|
|||||||
@@ -38,29 +38,95 @@ class AppController extends Controller {
|
|||||||
var $helpers = array('Html', 'Form', 'Javascript', 'Format', 'Time', 'Grid');
|
var $helpers = array('Html', 'Form', 'Javascript', 'Format', 'Time', 'Grid');
|
||||||
var $components = array('DebugKit.Toolbar');
|
var $components = array('DebugKit.Toolbar');
|
||||||
|
|
||||||
|
function __construct() {
|
||||||
|
$this->params['dev'] = false;
|
||||||
|
$this->params['admin'] = false;
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
function sideMenuLinks() {
|
function sideMenuLinks() {
|
||||||
return array(
|
// Stupid Cake... our constructor sets admin/dev,
|
||||||
array('name' => 'Common', 'header' => true),
|
// but cake stomps it somewhere along the way
|
||||||
array('name' => 'Site Map', 'url' => array('controller' => 'maps', 'action' => 'view', 1)),
|
// after constructing the CakeError controller.
|
||||||
array('name' => 'Units', 'url' => array('controller' => 'units', 'action' => 'index')),
|
if ($this->name === 'CakeError') {
|
||||||
array('name' => 'Leases', 'url' => array('controller' => 'leases', 'action' => 'index')),
|
$this->params['dev'] = false;
|
||||||
array('name' => 'Customers', 'url' => array('controller' => 'customers', 'action' => 'index')),
|
$this->params['admin'] = false;
|
||||||
array('name' => 'Accounts', 'url' => array('controller' => 'accounts', 'action' => 'index')),
|
}
|
||||||
array('name' => 'Deposits', 'url' => array('controller' => 'transactions', 'action' => 'deposit')),
|
|
||||||
array('name' => 'Debug', 'header' => true),
|
$menu = array();
|
||||||
array('name' => 'Un-Nuke', 'url' => '#', 'htmlAttributes' =>
|
$menu[] = array('name' => 'Common', 'header' => true);
|
||||||
array('onclick' => '$(".pr-section").show(); return false;')),
|
$menu[] = array('name' => 'Site Map', 'url' => array('controller' => 'maps', 'action' => 'view', 1));
|
||||||
array('name' => 'Contacts', 'url' => array('controller' => 'contacts', 'action' => 'index')),
|
$menu[] = array('name' => 'Units', 'url' => array('controller' => 'units', 'action' => 'index'));
|
||||||
array('name' => 'Ledgers', 'url' => array('controller' => 'ledgers', 'action' => 'index')),
|
$menu[] = array('name' => 'Leases', 'url' => array('controller' => 'leases', 'action' => 'index'));
|
||||||
//array('name' => 'New Ledgers', 'url' => array('controller' => 'accounts', 'action' => 'newledger')),
|
$menu[] = array('name' => 'Customers', 'url' => array('controller' => 'customers', 'action' => 'index'));
|
||||||
//array('name' => 'RESET DATA', 'url' => array('controller' => 'accounts', 'action' => 'reset_data')),
|
$menu[] = array('name' => 'Deposits', 'url' => array('controller' => 'transactions', 'action' => 'deposit'));
|
||||||
);
|
|
||||||
|
if ($this->params['admin']) {
|
||||||
|
$menu[] = array('name' => 'Admin', 'header' => true);
|
||||||
|
$menu[] = array('name' => 'Accounts', 'url' => array('controller' => 'accounts', 'action' => 'index'));
|
||||||
|
$menu[] = array('name' => 'Contacts', 'url' => array('controller' => 'contacts', 'action' => 'index'));
|
||||||
|
$menu[] = array('name' => 'Ledgers', 'url' => array('controller' => 'ledgers', 'action' => 'index'));
|
||||||
|
$menu[] = array('name' => 'Tenders', 'url' => array('controller' => 'tenders', 'action' => 'index'));
|
||||||
|
$menu[] = array('name' => 'Transactions', 'url' => array('controller' => 'transactions', 'action' => 'index'));
|
||||||
|
$menu[] = array('name' => 'Ldgr Entries', 'url' => array('controller' => 'ledger_entries', 'action' => 'index'));
|
||||||
|
$menu[] = array('name' => 'Stmt Entries', 'url' => array('controller' => 'statement_entries', 'action' => 'index'));
|
||||||
|
$menu[] = array('name' => 'New Ledgers', 'url' => array('controller' => 'accounts', 'action' => 'newledger'));
|
||||||
|
$menu[] = array('name' => 'Assess Charges', 'url' => array('controller' => 'leases', 'action' => 'assess_all'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->params['dev']) {
|
||||||
|
$menu[] = array('name' => 'Development', 'header' => true);
|
||||||
|
$menu[] = array('name' => 'Un-Nuke', 'url' => '#', 'htmlAttributes' =>
|
||||||
|
array('onclick' => '$(".pr-section").show(); return false;'));
|
||||||
|
$menu[] = array('name' => 'New Ledgers', 'url' => array('controller' => 'accounts', 'action' => 'newledger'));
|
||||||
|
//array('name' => 'RESET DATA', 'url' => array('controller' => 'accounts', 'action' => 'reset_data'));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $menu;
|
||||||
|
}
|
||||||
|
|
||||||
|
function beforeFilter() {
|
||||||
|
$this->params['dev'] =
|
||||||
|
(!empty($this->params['dev_route']));
|
||||||
|
$this->params['admin'] =
|
||||||
|
(!empty($this->params['admin_route']) || !empty($this->params['dev_route']));
|
||||||
|
|
||||||
|
if (!$this->params['dev'])
|
||||||
|
Configure::write('debug', '0');
|
||||||
}
|
}
|
||||||
|
|
||||||
function beforeRender() {
|
function beforeRender() {
|
||||||
$this->set('sidemenu', $this->sideMenuLinks());
|
$this->set('sidemenu', $this->sideMenuLinks());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function redirect($url, $status = null, $exit = true) {
|
||||||
|
// OK, since the controller will not be able to
|
||||||
|
// utilize our overriden url function in AppHelper,
|
||||||
|
// we'll have to do it manually here.
|
||||||
|
App::import('Helper', 'Html');
|
||||||
|
$url = HtmlHelper::url($url, true);
|
||||||
|
|
||||||
|
if (headers_sent()) {
|
||||||
|
// If we've already sent the headers, it's because
|
||||||
|
// we're debugging, and our debug output has gotten
|
||||||
|
// out before the redirect. That's probably a good
|
||||||
|
// thing, as we don't typically want pages to be
|
||||||
|
// jerked out from under us while trying to read
|
||||||
|
// the debug output. So, since we can't redirect
|
||||||
|
// anyway, we may as well go with the flow and just
|
||||||
|
// render this page instead, using an empty template
|
||||||
|
$this->set('message',
|
||||||
|
("Intended redirect:<P><BR>" .
|
||||||
|
'<A HREF="'.$url.'">'.$url.'</A>'));
|
||||||
|
|
||||||
|
echo $this->render('/empty');
|
||||||
|
if ($exit)
|
||||||
|
$this->_stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
return parent::redirect($url, $status, $exit);
|
||||||
|
}
|
||||||
|
|
||||||
function reset_data() {
|
function reset_data() {
|
||||||
$this->layout = null;
|
$this->layout = null;
|
||||||
$this->autoLayout = false;
|
$this->autoLayout = false;
|
||||||
@@ -162,16 +228,10 @@ class AppController extends Controller {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function gridDataSetup(&$params) {
|
function gridDataSetup(&$params) {
|
||||||
// Assume we're debugging.
|
// Debug only if requested
|
||||||
// The actual grid request will set this to false
|
$params['debug'] = !empty($this->passedArgs['debug']);
|
||||||
$debug = true;
|
|
||||||
|
|
||||||
if (isset($this->passedArgs['debug']))
|
if ($params['debug']) {
|
||||||
$debug = $this->passedArgs['debug'];
|
|
||||||
|
|
||||||
$params['debug'] = $debug;
|
|
||||||
|
|
||||||
if ($debug) {
|
|
||||||
ob_start();
|
ob_start();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@@ -653,7 +713,7 @@ class AppController extends Controller {
|
|||||||
foreach ($records AS &$record) {
|
foreach ($records AS &$record) {
|
||||||
// Add the calculated fields (if any), to the model fields
|
// Add the calculated fields (if any), to the model fields
|
||||||
if (isset($record[0])) {
|
if (isset($record[0])) {
|
||||||
$record[$model_alias] += $record[0];
|
$record[$model_alias] = $record[0] + $record[$model_alias];
|
||||||
unset($record[0]);
|
unset($record[0]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -695,9 +755,12 @@ class AppController extends Controller {
|
|||||||
if (isset($params['post']['nolinks']))
|
if (isset($params['post']['nolinks']))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
App::import('Helper', 'Html');
|
||||||
|
|
||||||
foreach ($links AS $table => $fields) {
|
foreach ($links AS $table => $fields) {
|
||||||
$special = array('controller', 'id');
|
$special = array('controller', 'action', 'id');
|
||||||
$controller = Inflector::pluralize(Inflector::underscore($table));
|
$controller = Inflector::pluralize(Inflector::underscore($table));
|
||||||
|
$action = 'view';
|
||||||
$id = 'id';
|
$id = 'id';
|
||||||
extract(array_intersect_key($fields, array_flip($special)));
|
extract(array_intersect_key($fields, array_flip($special)));
|
||||||
foreach ($records AS &$record) {
|
foreach ($records AS &$record) {
|
||||||
@@ -712,9 +775,9 @@ class AppController extends Controller {
|
|||||||
//$params['linkrecord'][] = compact('table', 'field', 'id', 'controller', 'record');
|
//$params['linkrecord'][] = compact('table', 'field', 'id', 'controller', 'record');
|
||||||
$record[$table][$field] =
|
$record[$table][$field] =
|
||||||
'<A HREF="' .
|
'<A HREF="' .
|
||||||
Router::url(array('controller' => $controller,
|
HtmlHelper::url(array('controller' => $controller,
|
||||||
'action' => 'view',
|
'action' => $action,
|
||||||
$record[$table][$id])) .
|
$record[$table][$id])) .
|
||||||
'">' .
|
'">' .
|
||||||
$record[$table][$field] .
|
$record[$table][$field] .
|
||||||
'</A>';
|
'</A>';
|
||||||
@@ -804,5 +867,15 @@ class AppController extends Controller {
|
|||||||
echo " <cell><![CDATA[$data]]></cell>\n";
|
echo " <cell><![CDATA[$data]]></cell>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function INTERNAL_ERROR($msg, $depth = 0) {
|
||||||
|
INTERNAL_ERROR($msg, false, $depth+1);
|
||||||
|
$this->render_empty();
|
||||||
|
$this->_stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
function render_empty() {
|
||||||
|
$this->render('/empty');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
@@ -37,5 +37,14 @@ App::import('Core', 'Helper');
|
|||||||
* @subpackage cake.cake
|
* @subpackage cake.cake
|
||||||
*/
|
*/
|
||||||
class AppHelper extends Helper {
|
class AppHelper extends Helper {
|
||||||
|
|
||||||
|
function url($url = null, $full = false) {
|
||||||
|
foreach(array('admin_route', 'dev_route') AS $mod) {
|
||||||
|
if (isset($this->params[$mod]) && is_array($url) && !isset($url[$mod]))
|
||||||
|
$url[$mod] = $this->params[$mod];
|
||||||
|
}
|
||||||
|
return parent::url($url, $full);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
@@ -402,6 +402,10 @@ class AppModel extends Model {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function filter_null($array) {
|
||||||
|
return array_diff_key($array, array_filter($array, 'is_null'));
|
||||||
|
}
|
||||||
|
|
||||||
function recursive_array_replace($find, $replace, &$data) {
|
function recursive_array_replace($find, $replace, &$data) {
|
||||||
if (!isset($data))
|
if (!isset($data))
|
||||||
return;
|
return;
|
||||||
@@ -476,4 +480,12 @@ class AppModel extends Model {
|
|||||||
return date('Y-m-d', strtotime($dateString));
|
return date('Y-m-d', strtotime($dateString));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function INTERNAL_ERROR($msg, $depth = 0) {
|
||||||
|
INTERNAL_ERROR($msg, false, $depth+1);
|
||||||
|
echo $this->requestAction(array('controller' => 'accounts',
|
||||||
|
'action' => 'render_empty'),
|
||||||
|
array('return', 'bare' => false)
|
||||||
|
);
|
||||||
|
$this->_stop();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,16 +32,17 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function INTERNAL_ERROR($message) {
|
function INTERNAL_ERROR($message, $exit = true, $drop = 0) {
|
||||||
echo '<DIV class="internal-error" style="color:#000; background:#c22; padding:0.5em 1.5em 0.5em 1.5em;">';
|
echo '<DIV class="internal-error" style="color:#000; background:#c22; padding:0.5em 1.5em 0.5em 1.5em;">' . "\n";
|
||||||
echo '<H1 style="margin-bottom:0.2em">INTERNAL ERROR:</H1>';
|
echo '<H1 style="color:#000; margin-bottom:0.2em; font-size:2em;">INTERNAL ERROR:</H1>' . "\n";
|
||||||
echo '<H2 style="margin-top:0; margin-left:1.5em">' . $message . '</H2>';
|
echo '<H2 style="color:#000; margin-top:0; margin-left:1.5em; font-size:1.5em">' . $message . '</H2>' . "\n";
|
||||||
echo '<H4>This error was not caused by anything that you did wrong.';
|
echo '<H4 style="color:#000;">This error was not caused by anything that you did wrong.' . "\n";
|
||||||
echo '<BR>It is a problem within the application itself and should be reported to the administrator.</H4>';
|
echo '<BR>It is a problem within the application itself and should be reported to the administrator.</H4>' . "\n";
|
||||||
|
|
||||||
// Print out the entire stack trace
|
// Print out the entire stack trace
|
||||||
echo "<HR>Stack Trace:<OL>";
|
echo '<HR style="margin-top:1.0em; margin-bottom:0.5em;">' . "\nStack Trace:\n";
|
||||||
$trace = debug_backtrace(false);
|
echo '<OL style="margin-left:1.5em";>' . "\n";
|
||||||
|
$trace = array_slice(debug_backtrace(false), $drop);
|
||||||
for ($i = 0; $i < count($trace); ++$i) {
|
for ($i = 0; $i < count($trace); ++$i) {
|
||||||
$bline = $trace[$i]['line'];
|
$bline = $trace[$i]['line'];
|
||||||
$bfile = $trace[$i]['file'];
|
$bfile = $trace[$i]['file'];
|
||||||
@@ -58,10 +59,16 @@ function INTERNAL_ERROR($message) {
|
|||||||
|
|
||||||
echo("<LI>$bfile:$bline (" . ($bclas ? "$bclas::$bfunc" : "entry point") . ")</LI>\n");
|
echo("<LI>$bfile:$bline (" . ($bclas ? "$bclas::$bfunc" : "entry point") . ")</LI>\n");
|
||||||
}
|
}
|
||||||
echo '</OL>';
|
echo "</OL>\n";
|
||||||
|
|
||||||
|
echo '<HR style="margin-top:1.0em; margin-bottom:0.5em;">' . "\nHTTP Request:\n";
|
||||||
|
echo '<P><PRE style="color:#000; background:#c22;">' . "\n";
|
||||||
|
print_r($_REQUEST);
|
||||||
|
echo "\n</PRE>\n";
|
||||||
|
|
||||||
echo '</DIV>';
|
echo '</DIV>';
|
||||||
die();
|
if ($exit)
|
||||||
|
die();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -32,6 +32,20 @@
|
|||||||
* It's hardcoded to map #1, but at some point we'll implement
|
* It's hardcoded to map #1, but at some point we'll implement
|
||||||
* a login mechanism and the default path will be to log on instead.
|
* a login mechanism and the default path will be to log on instead.
|
||||||
*/
|
*/
|
||||||
Router::connect('/', array('controller' => 'maps', 'action' => 'view', '1'));
|
Router::connect('/', array('controller' => 'maps', 'action' => 'view', '1'));
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Route for admin functionality
|
||||||
|
*/
|
||||||
|
Router::connect('/admin/:controller/:action/*',
|
||||||
|
array('action' => null, 'admin_route' => true)
|
||||||
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Route for development functionality
|
||||||
|
*/
|
||||||
|
Router::connect('/dev/:controller/:action/*',
|
||||||
|
array('action' => null, 'dev_route' => true)
|
||||||
|
);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
@@ -90,6 +90,10 @@ class AccountsController extends AppController {
|
|||||||
$conditions[] = array('Account.type' => strtoupper($params['action']));
|
$conditions[] = array('Account.type' => strtoupper($params['action']));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// REVISIT <AP>: 20090811
|
||||||
|
// No security issues have been worked out yet
|
||||||
|
$conditions[] = array('Account.level >=' => 10);
|
||||||
|
|
||||||
return $conditions;
|
return $conditions;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -139,12 +143,9 @@ class AccountsController extends AppController {
|
|||||||
$account = $this->Account->read(null, $id);
|
$account = $this->Account->read(null, $id);
|
||||||
$account = $account['Account'];
|
$account = $account['Account'];
|
||||||
|
|
||||||
$payment_accounts = $this->Account->collectableAccounts();
|
$accounts = $this->Account->collectableAccounts();
|
||||||
//$payment_accounts[$this->Account->nameToID('Closing')] = 'Closing';
|
$payment_accounts = $accounts['all'];
|
||||||
//$payment_accounts[$this->Account->nameToID('Equity')] = 'Equity';
|
$default_accounts = $accounts['default'];
|
||||||
//$payment_accounts[$id] = 'Reversals';
|
|
||||||
$default_accounts = array_diff_key($this->Account->receiptAccounts(),
|
|
||||||
array($this->Account->concessionAccountID() => 1));
|
|
||||||
$this->set(compact('payment_accounts', 'default_accounts'));
|
$this->set(compact('payment_accounts', 'default_accounts'));
|
||||||
|
|
||||||
$title = ($account['name'] . ': Collected Report');
|
$title = ($account['name'] . ': Collected Report');
|
||||||
@@ -160,12 +161,6 @@ class AccountsController extends AppController {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function view($id = null) {
|
function view($id = null) {
|
||||||
if (!$id) {
|
|
||||||
$this->Session->setFlash(__('Invalid Item.', true));
|
|
||||||
$this->redirect(array('action'=>'index'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get details about the account and its ledgers (no ledger entries yet)
|
|
||||||
$account = $this->Account->find
|
$account = $this->Account->find
|
||||||
('first',
|
('first',
|
||||||
array('contain' =>
|
array('contain' =>
|
||||||
@@ -177,14 +172,18 @@ class AccountsController extends AppController {
|
|||||||
array('CloseTransaction' => array
|
array('CloseTransaction' => array
|
||||||
('order' => array('CloseTransaction.stamp' => 'DESC'))),
|
('order' => array('CloseTransaction.stamp' => 'DESC'))),
|
||||||
),
|
),
|
||||||
'conditions' => array(array('Account.id' => $id)),
|
'conditions' => array(array('Account.id' => $id),
|
||||||
|
// REVISIT <AP>: 20090811
|
||||||
|
// No security issues have been worked out yet
|
||||||
|
array('Account.level >=' => 10),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
// Get all ledger entries of the CURRENT ledger
|
if (empty($account)) {
|
||||||
$entries = $this->Account->ledgerEntries($id);
|
$this->Session->setFlash(__('Invalid Item.', true));
|
||||||
//pr(compact('entries'));
|
$this->redirect(array('action'=>'index'));
|
||||||
$account['CurrentLedger']['LedgerEntry'] = $entries;
|
}
|
||||||
|
|
||||||
// Obtain stats across ALL ledgers for the summary infobox
|
// Obtain stats across ALL ledgers for the summary infobox
|
||||||
$stats = $this->Account->stats($id, true);
|
$stats = $this->Account->stats($id, true);
|
||||||
@@ -202,8 +201,4 @@ class AccountsController extends AppController {
|
|||||||
$this->set(compact('account', 'title', 'stats'));
|
$this->set(compact('account', 'title', 'stats'));
|
||||||
}
|
}
|
||||||
|
|
||||||
function tst($id) {
|
|
||||||
//$entries = $this->Account->($id);
|
|
||||||
pr($entries);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -126,8 +126,6 @@ class ContactsController extends AppController {
|
|||||||
|
|
||||||
// Now that the work is done, let the user view the updated contact
|
// Now that the work is done, let the user view the updated contact
|
||||||
$this->redirect(array('action'=>'view', $this->data['Contact']['id']));
|
$this->redirect(array('action'=>'view', $this->data['Contact']['id']));
|
||||||
//$this->render('/empty');
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id) {
|
if ($id) {
|
||||||
|
|||||||
@@ -287,23 +287,20 @@ class CustomersController extends AppController {
|
|||||||
if (isset($this->params['form']['cancel'])) {
|
if (isset($this->params['form']['cancel'])) {
|
||||||
if (isset($this->data['Customer']['id']))
|
if (isset($this->data['Customer']['id']))
|
||||||
$this->redirect(array('action'=>'view', $this->data['Customer']['id']));
|
$this->redirect(array('action'=>'view', $this->data['Customer']['id']));
|
||||||
else
|
|
||||||
$this->redirect(array('action'=>'index'));
|
$this->redirect(array('action'=>'index'));
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure we have at least one contact
|
// Make sure we have at least one contact
|
||||||
if (!isset($this->data['Contact']) || count($this->data['Contact']) == 0) {
|
if (!isset($this->data['Contact']) || count($this->data['Contact']) == 0) {
|
||||||
$this->Session->setFlash("MUST SPECIFY AT LEAST ONE CONTACT", true);
|
$this->Session->setFlash("MUST SPECIFY AT LEAST ONE CONTACT", true);
|
||||||
$this->redirect(array('action'=>'view', $this->data['Customer']['id']));
|
$this->redirect(array('action'=>'view', $this->data['Customer']['id']));
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure there is a primary contact
|
// Make sure there is a primary contact
|
||||||
if (!isset($this->data['Customer']['primary_contact_entry'])) {
|
if (!isset($this->data['Customer']['primary_contact_entry'])) {
|
||||||
$this->Session->setFlash("MUST SPECIFY A PRIMARY CONTACT", true);
|
$this->Session->setFlash("MUST SPECIFY A PRIMARY CONTACT", true);
|
||||||
$this->redirect(array('action'=>'view', $this->data['Customer']['id']));
|
$this->redirect(array('action'=>'view', $this->data['Customer']['id']));
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Go through each customer and strip the bogus ID if new
|
// Go through each customer and strip the bogus ID if new
|
||||||
@@ -320,17 +317,12 @@ class CustomersController extends AppController {
|
|||||||
pr("CUSTOMER SAVE FAILED");
|
pr("CUSTOMER SAVE FAILED");
|
||||||
}
|
}
|
||||||
|
|
||||||
// If existing customer, then view it. Otherwise, since
|
// If existing customer, then view it.
|
||||||
// this is a new customer, go to the move in screen.
|
|
||||||
if ($this->data['Customer']['id'])
|
if ($this->data['Customer']['id'])
|
||||||
$this->redirect(array('action'=>'view', $this->Customer->id));
|
$this->redirect(array('action'=>'view', $this->Customer->id));
|
||||||
else
|
|
||||||
$this->redirect(array('action'=>'move_in', $this->Customer->id));
|
|
||||||
|
|
||||||
// For debugging, only if the redirects above have been
|
// Since this is a new customer, go to the move in screen.
|
||||||
// commented out, otherwise this section isn't reached.
|
$this->redirect(array('action'=>'move_in', $this->Customer->id));
|
||||||
$this->render('/empty');
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id) {
|
if ($id) {
|
||||||
@@ -379,20 +371,9 @@ class CustomersController extends AppController {
|
|||||||
$this->Customer->recursive = -1;
|
$this->Customer->recursive = -1;
|
||||||
$customer = $this->Customer->read(null, $id);
|
$customer = $this->Customer->read(null, $id);
|
||||||
$customer = $customer['Customer'];
|
$customer = $customer['Customer'];
|
||||||
$unreconciled = $this->Customer->unreconciledCharges($id);
|
|
||||||
//pr($unreconciled);
|
|
||||||
$charges = $unreconciled['entries'];
|
|
||||||
$stats = $unreconciled['summary']['Charge'];
|
|
||||||
// Kludge until we update receipt to have the unpaid
|
|
||||||
// charges grid generated from a dynamic query instead
|
|
||||||
// of simply pre-providing the list of charge IDs
|
|
||||||
foreach ($charges AS &$charge)
|
|
||||||
$charge['id'] = $charge['StatementEntry']['id'];
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$customer = null;
|
$customer = null;
|
||||||
$charges = array();
|
|
||||||
$stats = array('balance' => 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$TT = new TenderType();
|
$TT = new TenderType();
|
||||||
@@ -401,7 +382,7 @@ class CustomersController extends AppController {
|
|||||||
$this->set(compact('payment_types', 'default_type'));
|
$this->set(compact('payment_types', 'default_type'));
|
||||||
|
|
||||||
$title = ($customer['name'] . ': Receipt Entry');
|
$title = ($customer['name'] . ': Receipt Entry');
|
||||||
$this->set(compact('customer', 'charges', 'stats', 'title'));
|
$this->set(compact('customer', 'title'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -472,50 +453,4 @@ class CustomersController extends AppController {
|
|||||||
$this->render('/transactions/bad_debt');
|
$this->render('/transactions/bad_debt');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
|
||||||
**************************************************************************
|
|
||||||
**************************************************************************
|
|
||||||
* action: unreconciled
|
|
||||||
* - returns the list of unreconciled entries
|
|
||||||
*/
|
|
||||||
|
|
||||||
function unreconciled($id) {
|
|
||||||
|
|
||||||
//$this->layout = 'ajax';
|
|
||||||
$this->layout = null;
|
|
||||||
$this->autoLayout = false;
|
|
||||||
$this->autoRender = false;
|
|
||||||
Configure::write('debug', '0');
|
|
||||||
header("Content-type: text/xml;charset=utf-8");
|
|
||||||
|
|
||||||
App::import('Helper', 'Xml');
|
|
||||||
$xml = new XmlHelper();
|
|
||||||
|
|
||||||
// Find the unreconciled entries, then manipulate the structure
|
|
||||||
// slightly to accomodate the format necessary for XML Helper.
|
|
||||||
$unreconciled = $this->Customer->unreconciledCharges($id);
|
|
||||||
|
|
||||||
foreach ($unreconciled['entries'] AS &$entry)
|
|
||||||
$entry = array_intersect_key($entry['StatementEntry'],
|
|
||||||
array('id'=>1));
|
|
||||||
|
|
||||||
$unreconciled = array('entries' =>
|
|
||||||
array('entry' => $unreconciled['entries'],
|
|
||||||
'balance' => $unreconciled['summary']['balance']));
|
|
||||||
|
|
||||||
// XML Helper will dump an empty tag if the array is empty
|
|
||||||
if (empty($unreconciled['entries']['entry']))
|
|
||||||
unset($unreconciled['entries']['entry']);
|
|
||||||
|
|
||||||
/* pr(compact('unreconciled')); */
|
|
||||||
/* echo htmlspecialchars($xml->serialize($unreconciled)); */
|
|
||||||
/* $this->render('/fake'); */
|
|
||||||
|
|
||||||
$opts = array();
|
|
||||||
//$opts['format'] = 'tags';
|
|
||||||
echo $xml->header();
|
|
||||||
echo $xml->serialize($unreconciled, $opts);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,6 +36,28 @@ class DoubleEntriesController extends AppController {
|
|||||||
'conditions' => array('DoubleEntry.id' => $id),
|
'conditions' => array('DoubleEntry.id' => $id),
|
||||||
));
|
));
|
||||||
|
|
||||||
|
$entry += $this->DoubleEntry->DebitEntry->Transaction->find
|
||||||
|
('first',
|
||||||
|
array('contain' => false,
|
||||||
|
'conditions' => array('id' => $entry['DebitEntry']['transaction_id']),
|
||||||
|
));
|
||||||
|
|
||||||
|
$entry += $this->DoubleEntry->DebitEntry->find
|
||||||
|
('first',
|
||||||
|
array('contain' => array('Ledger' => array('Account')),
|
||||||
|
'conditions' => array('DebitEntry.id' => $entry['DebitEntry']['id']),
|
||||||
|
));
|
||||||
|
$entry['DebitLedger'] = $entry['Ledger'];
|
||||||
|
unset($entry['Ledger']);
|
||||||
|
|
||||||
|
$entry += $this->DoubleEntry->CreditEntry->find
|
||||||
|
('first',
|
||||||
|
array('contain' => array('Ledger' => array('Account')),
|
||||||
|
'conditions' => array('CreditEntry.id' => $entry['CreditEntry']['id']),
|
||||||
|
));
|
||||||
|
$entry['CreditLedger'] = $entry['Ledger'];
|
||||||
|
unset($entry['Ledger']);
|
||||||
|
|
||||||
// Prepare to render.
|
// Prepare to render.
|
||||||
$title = "Double Ledger Entry #{$entry['DoubleEntry']['id']}";
|
$title = "Double Ledger Entry #{$entry['DoubleEntry']['id']}";
|
||||||
$this->set(compact('entry', 'title'));
|
$this->set(compact('entry', 'title'));
|
||||||
|
|||||||
@@ -3,10 +3,11 @@
|
|||||||
class LeasesController extends AppController {
|
class LeasesController extends AppController {
|
||||||
|
|
||||||
var $sidemenu_links =
|
var $sidemenu_links =
|
||||||
array(array('name' => 'Leases', 'header' => true),
|
array(array('name' => 'Leases', 'header' => true),
|
||||||
array('name' => 'Active', 'url' => array('controller' => 'leases', 'action' => 'active')),
|
array('name' => 'Active', 'url' => array('controller' => 'leases', 'action' => 'active')),
|
||||||
array('name' => 'Closed', 'url' => array('controller' => 'leases', 'action' => 'closed')),
|
array('name' => 'Closed', 'url' => array('controller' => 'leases', 'action' => 'closed')),
|
||||||
array('name' => 'All', 'url' => array('controller' => 'leases', 'action' => 'all')),
|
array('name' => 'Delinquent', 'url' => array('controller' => 'leases', 'action' => 'delinquent')),
|
||||||
|
array('name' => 'All', 'url' => array('controller' => 'leases', 'action' => 'all')),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
@@ -28,10 +29,11 @@ class LeasesController extends AppController {
|
|||||||
* - Generate a listing of leases
|
* - Generate a listing of leases
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function index() { $this->all(); }
|
function index() { $this->all(); }
|
||||||
function active() { $this->gridView('Active Leases'); }
|
function active() { $this->gridView('Active Leases'); }
|
||||||
function closed() { $this->gridView('Closed Leases'); }
|
function delinquent() { $this->gridView('Delinquent Leases'); }
|
||||||
function all() { $this->gridView('All Leases', 'all'); }
|
function closed() { $this->gridView('Closed Leases'); }
|
||||||
|
function all() { $this->gridView('All Leases', 'all'); }
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
@@ -63,6 +65,8 @@ class LeasesController extends AppController {
|
|||||||
|
|
||||||
function gridDataFields(&$params, &$model) {
|
function gridDataFields(&$params, &$model) {
|
||||||
$fields = parent::gridDataFields($params, $model);
|
$fields = parent::gridDataFields($params, $model);
|
||||||
|
$fields[] = ("IF(" . $this->Lease->conditionDelinquent() . "," .
|
||||||
|
" 'DELINQUENT', 'CURRENT') AS 'status'");
|
||||||
return array_merge($fields,
|
return array_merge($fields,
|
||||||
$this->Lease->StatementEntry->chargeDisbursementFields(true));
|
$this->Lease->StatementEntry->chargeDisbursementFields(true));
|
||||||
}
|
}
|
||||||
@@ -73,6 +77,9 @@ class LeasesController extends AppController {
|
|||||||
if ($params['action'] === 'active') {
|
if ($params['action'] === 'active') {
|
||||||
$conditions[] = 'Lease.close_date IS NULL';
|
$conditions[] = 'Lease.close_date IS NULL';
|
||||||
}
|
}
|
||||||
|
elseif ($params['action'] === 'delinquent') {
|
||||||
|
$conditions[] = $this->Lease->conditionDelinquent();
|
||||||
|
}
|
||||||
elseif ($params['action'] === 'closed') {
|
elseif ($params['action'] === 'closed') {
|
||||||
$conditions[] = 'Lease.close_date IS NOT NULL';
|
$conditions[] = 'Lease.close_date IS NOT NULL';
|
||||||
}
|
}
|
||||||
@@ -151,10 +158,6 @@ class LeasesController extends AppController {
|
|||||||
// Since this is a new lease, go to the invoice
|
// Since this is a new lease, go to the invoice
|
||||||
// screen so we can start assessing charges.
|
// screen so we can start assessing charges.
|
||||||
$this->redirect(array('action'=>'invoice', $lid, 'move-in'));
|
$this->redirect(array('action'=>'invoice', $lid, 'move-in'));
|
||||||
|
|
||||||
// For debugging, only if the redirect above have been
|
|
||||||
// commented out, otherwise this section isn't reached.
|
|
||||||
$this->render('/empty');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
@@ -171,9 +174,7 @@ class LeasesController extends AppController {
|
|||||||
|
|
||||||
$this->Lease->moveOut($this->data['Lease']['id'],
|
$this->Lease->moveOut($this->data['Lease']['id'],
|
||||||
'VACANT',
|
'VACANT',
|
||||||
$this->data['Lease']['moveout_date'],
|
$this->data['Lease']['moveout_date']
|
||||||
//true // Close this lease, if able
|
|
||||||
false
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->redirect($this->data['redirect']);
|
$this->redirect($this->data['redirect']);
|
||||||
@@ -226,8 +227,6 @@ class LeasesController extends AppController {
|
|||||||
|
|
||||||
/* function promote_surplus($id) { */
|
/* function promote_surplus($id) { */
|
||||||
/* $this->Lease->promoteSurplus($id); */
|
/* $this->Lease->promoteSurplus($id); */
|
||||||
/* pr("PREVENTING REDIRECT"); */
|
|
||||||
/* $this->render('fake'); */
|
|
||||||
/* $this->redirect(array('controller' => 'leases', */
|
/* $this->redirect(array('controller' => 'leases', */
|
||||||
/* 'action' => 'view', */
|
/* 'action' => 'view', */
|
||||||
/* $id)); */
|
/* $id)); */
|
||||||
@@ -337,7 +336,7 @@ class LeasesController extends AppController {
|
|||||||
// REVISIT <AP>: 20090708
|
// REVISIT <AP>: 20090708
|
||||||
// We should probably seek confirmation first...
|
// We should probably seek confirmation first...
|
||||||
if (!$this->Lease->closeable($id)) {
|
if (!$this->Lease->closeable($id)) {
|
||||||
INTERNAL_ERROR("This lease is not ready to close");
|
$this->INTERNAL_ERROR("This lease is not ready to close");
|
||||||
$this->redirect(array('action'=>'view', $id));
|
$this->redirect(array('action'=>'view', $id));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -418,11 +417,17 @@ class LeasesController extends AppController {
|
|||||||
|
|
||||||
function assess_rent($date = null) {
|
function assess_rent($date = null) {
|
||||||
$this->Lease->assessMonthlyRentAll($date);
|
$this->Lease->assessMonthlyRentAll($date);
|
||||||
|
$this->redirect(array('action'=>'index'));
|
||||||
}
|
}
|
||||||
function assess_late($date = null) {
|
function assess_late($date = null) {
|
||||||
$this->Lease->assessMonthlyLateAll($date);
|
$this->Lease->assessMonthlyLateAll($date);
|
||||||
|
$this->redirect(array('action'=>'index'));
|
||||||
|
}
|
||||||
|
function assess_all($date = null) {
|
||||||
|
$this->Lease->assessMonthlyRentAll($date);
|
||||||
|
$this->Lease->assessMonthlyLateAll($date);
|
||||||
|
$this->redirect(array('action'=>'index'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
@@ -442,21 +447,18 @@ class LeasesController extends AppController {
|
|||||||
('first',
|
('first',
|
||||||
array('contain' =>
|
array('contain' =>
|
||||||
array(// Models
|
array(// Models
|
||||||
'LeaseType',
|
'LeaseType(id,name)',
|
||||||
'Unit',
|
'Unit(id,name)',
|
||||||
'Customer',
|
'Customer(id,name)',
|
||||||
),
|
),
|
||||||
|
'fields' => array('Lease.*', $this->Lease->delinquentField()),
|
||||||
'conditions' => array(array('Lease.id' => $id)),
|
'conditions' => array(array('Lease.id' => $id)),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
$lease['Lease'] += $lease[0];
|
||||||
|
unset($lease[0]);
|
||||||
|
|
||||||
$lease['Lease']['paid_through'] = $this->Lease->rentPaidThrough($id);
|
// Figure out the outstanding balances for this lease
|
||||||
|
|
||||||
|
|
||||||
$this->set('charge_gaps', $this->Lease->rentChargeGaps($id));
|
|
||||||
$this->set('charge_through', $this->Lease->rentChargeThrough($id));
|
|
||||||
|
|
||||||
// Figure out the outstanding balances for this lease
|
|
||||||
$outstanding_balance = $this->Lease->balance($id);
|
$outstanding_balance = $this->Lease->balance($id);
|
||||||
$outstanding_deposit = $this->Lease->securityDepositBalance($id);
|
$outstanding_deposit = $this->Lease->securityDepositBalance($id);
|
||||||
|
|
||||||
@@ -495,7 +497,7 @@ class LeasesController extends AppController {
|
|||||||
// when a charge is reimbursed; a bug that we'll either
|
// when a charge is reimbursed; a bug that we'll either
|
||||||
// need to fix, or we'll have to revisit this assumption.
|
// need to fix, or we'll have to revisit this assumption.
|
||||||
if ($outstanding_balance < 0)
|
if ($outstanding_balance < 0)
|
||||||
INTERNAL_ERROR("Should not have a customer lease credit.");
|
$this->INTERNAL_ERROR("Should not have a customer lease credit.");
|
||||||
|
|
||||||
/* if ($outstanding_balance < 0) */
|
/* if ($outstanding_balance < 0) */
|
||||||
/* $this->sidemenu_links[] = */
|
/* $this->sidemenu_links[] = */
|
||||||
|
|||||||
@@ -145,12 +145,6 @@ class LedgerEntriesController extends AppController {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function view($id = null) {
|
function view($id = null) {
|
||||||
if (!$id) {
|
|
||||||
$this->Session->setFlash(__('Invalid Item.', true));
|
|
||||||
$this->redirect(array('controller' => 'accounts', 'action'=>'index'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the Entry and related fields
|
|
||||||
$entry = $this->LedgerEntry->find
|
$entry = $this->LedgerEntry->find
|
||||||
('first',
|
('first',
|
||||||
array('contain' => array
|
array('contain' => array
|
||||||
@@ -163,6 +157,10 @@ class LedgerEntriesController extends AppController {
|
|||||||
array('fields' => array('id', 'sequence', 'name'),
|
array('fields' => array('id', 'sequence', 'name'),
|
||||||
'Account' =>
|
'Account' =>
|
||||||
array('fields' => array('id', 'name', 'type'),
|
array('fields' => array('id', 'name', 'type'),
|
||||||
|
'conditions' =>
|
||||||
|
// REVISIT <AP>: 20090811
|
||||||
|
// No security issues have been worked out yet
|
||||||
|
array('Account.level >=' => 5),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
@@ -170,6 +168,9 @@ class LedgerEntriesController extends AppController {
|
|||||||
array('fields' => array('id', 'name'),
|
array('fields' => array('id', 'name'),
|
||||||
),
|
),
|
||||||
|
|
||||||
|
'DebitDoubleEntry' => array('id'),
|
||||||
|
'CreditDoubleEntry' => array('id'),
|
||||||
|
|
||||||
'DebitEntry' => array('fields' => array('id', 'crdr')),
|
'DebitEntry' => array('fields' => array('id', 'crdr')),
|
||||||
'CreditEntry' => array('fields' => array('id', 'crdr')),
|
'CreditEntry' => array('fields' => array('id', 'crdr')),
|
||||||
),
|
),
|
||||||
@@ -177,6 +178,11 @@ class LedgerEntriesController extends AppController {
|
|||||||
'conditions' => array('LedgerEntry.id' => $id),
|
'conditions' => array('LedgerEntry.id' => $id),
|
||||||
));
|
));
|
||||||
|
|
||||||
|
if (empty($entry) || empty($entry['Ledger']['Account'])) {
|
||||||
|
$this->Session->setFlash(__('Invalid Item.', true));
|
||||||
|
$this->redirect(array('controller' => 'accounts', 'action'=>'index'));
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($entry['DebitEntry']) && !empty($entry['CreditEntry']))
|
if (!empty($entry['DebitEntry']) && !empty($entry['CreditEntry']))
|
||||||
die("LedgerEntry has both a matching DebitEntry and CreditEntry");
|
die("LedgerEntry has both a matching DebitEntry and CreditEntry");
|
||||||
if (empty($entry['DebitEntry']) && empty($entry['CreditEntry']))
|
if (empty($entry['DebitEntry']) && empty($entry['CreditEntry']))
|
||||||
@@ -191,6 +197,11 @@ class LedgerEntriesController extends AppController {
|
|||||||
else
|
else
|
||||||
$entry['MatchingEntry'] = $entry['DebitEntry'][0];
|
$entry['MatchingEntry'] = $entry['DebitEntry'][0];
|
||||||
|
|
||||||
|
if (empty($entry['DebitDoubleEntry']['id']))
|
||||||
|
$entry['DoubleEntry'] = $entry['CreditDoubleEntry'];
|
||||||
|
else
|
||||||
|
$entry['DoubleEntry'] = $entry['DebitDoubleEntry'];
|
||||||
|
|
||||||
// Prepare to render.
|
// Prepare to render.
|
||||||
$title = "Ledger Entry #{$entry['LedgerEntry']['id']}";
|
$title = "Ledger Entry #{$entry['LedgerEntry']['id']}";
|
||||||
$this->set(compact('entry', 'title'));
|
$this->set(compact('entry', 'title'));
|
||||||
|
|||||||
@@ -50,24 +50,21 @@ class LedgersController extends AppController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function gridDataCountTables(&$params, &$model) {
|
function gridDataCountTables(&$params, &$model) {
|
||||||
// Our count should NOT include anything extra,
|
|
||||||
// so we need the virtual function to prevent
|
|
||||||
// the base class from just calling our
|
|
||||||
// gridDataTables function.
|
|
||||||
return parent::gridDataTables($params, $model);
|
|
||||||
}
|
|
||||||
|
|
||||||
function gridDataTables(&$params, &$model) {
|
|
||||||
return array
|
return array
|
||||||
('link' =>
|
('link' =>
|
||||||
array(// Models
|
array(// Models
|
||||||
'Account',
|
'Account',
|
||||||
'LedgerEntry',
|
|
||||||
'CloseTransaction',
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function gridDataTables(&$params, &$model) {
|
||||||
|
$tables = $this->gridDataCountTables($params, $model);
|
||||||
|
$tables['link'][] = 'LedgerEntry';
|
||||||
|
$tables['link'][] = 'CloseTransaction';
|
||||||
|
return $tables;
|
||||||
|
}
|
||||||
|
|
||||||
function gridDataFields(&$params, &$model) {
|
function gridDataFields(&$params, &$model) {
|
||||||
$fields = parent::gridDataFields($params, $model);
|
$fields = parent::gridDataFields($params, $model);
|
||||||
$fields[] = 'CONCAT(Account.id, "-", Ledger.sequence) AS id_sequence';
|
$fields[] = 'CONCAT(Account.id, "-", Ledger.sequence) AS id_sequence';
|
||||||
@@ -85,6 +82,10 @@ class LedgersController extends AppController {
|
|||||||
$conditions[] = array('Ledger.close_transaction_id !=' => null);
|
$conditions[] = array('Ledger.close_transaction_id !=' => null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// REVISIT <AP>: 20090811
|
||||||
|
// No security issues have been worked out yet
|
||||||
|
$conditions[] = array('Account.level >=' => 10);
|
||||||
|
|
||||||
return $conditions;
|
return $conditions;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -119,22 +120,25 @@ class LedgersController extends AppController {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function view($id = null) {
|
function view($id = null) {
|
||||||
if (!$id) {
|
|
||||||
$this->Session->setFlash(__('Invalid Item.', true));
|
|
||||||
$this->redirect(array('action'=>'index'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get details about the ledger itself (no entries yet)
|
|
||||||
$ledger = $this->Ledger->find
|
$ledger = $this->Ledger->find
|
||||||
('first',
|
('first',
|
||||||
array('contain' =>
|
array('contain' =>
|
||||||
array(// Models
|
array(// Models
|
||||||
'Account',
|
'Account',
|
||||||
),
|
),
|
||||||
'conditions' => array(array('Ledger.id' => $id)),
|
'conditions' => array(array('Ledger.id' => $id),
|
||||||
|
// REVISIT <AP>: 20090811
|
||||||
|
// No security issues have been worked out yet
|
||||||
|
array('Account.level >=' => 10),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (empty($ledger)) {
|
||||||
|
$this->Session->setFlash(__('Invalid Item.', true));
|
||||||
|
$this->redirect(array('action'=>'index'));
|
||||||
|
}
|
||||||
|
|
||||||
// Get ledger stats for our summary box
|
// Get ledger stats for our summary box
|
||||||
$stats = $this->Ledger->stats($id);
|
$stats = $this->Ledger->stats($id);
|
||||||
|
|
||||||
|
|||||||
@@ -85,11 +85,33 @@ class MapsController extends AppController {
|
|||||||
'units' => array());
|
'units' => array());
|
||||||
|
|
||||||
// Find all of the map/unit information from this SiteArea
|
// Find all of the map/unit information from this SiteArea
|
||||||
$this->Map->recursive = 2;
|
$map = $this->Map->find('first', array('contain' => false,
|
||||||
$this->Map->SiteArea->unbindModel(array('hasOne' => array('Map')));
|
'conditions' => array('id' => $id)));
|
||||||
$map = $this->Map->read(null, $id);
|
|
||||||
//pr($map);
|
$units = $this->Map->Unit->find
|
||||||
|
('all',
|
||||||
|
array('link' =>
|
||||||
|
array('Map' =>
|
||||||
|
array('fields' => array()),
|
||||||
|
|
||||||
|
'CurrentLease' =>
|
||||||
|
array('fields' => array($this->Map->Unit->CurrentLease->
|
||||||
|
delinquentField('CurrentLease'))),
|
||||||
|
|
||||||
|
'UnitSize' =>
|
||||||
|
array('fields' => array('id', 'depth', 'width',
|
||||||
|
'MapsUnit.pt_top',
|
||||||
|
'MapsUnit.pt_left',
|
||||||
|
'MapsUnit.transpose')),
|
||||||
|
),
|
||||||
|
'fields' => array('id', 'name', 'status'),
|
||||||
|
'conditions' => array('Map.id' => $id),
|
||||||
|
));
|
||||||
|
|
||||||
|
/* pr(compact('map', 'units')); */
|
||||||
|
/* $this->render('/empty'); */
|
||||||
|
/* return; */
|
||||||
|
|
||||||
/*****
|
/*****
|
||||||
* The preference would be to leave all things "screen" related
|
* The preference would be to leave all things "screen" related
|
||||||
* to reside in the view. However, two separate views need this
|
* to reside in the view. However, two separate views need this
|
||||||
@@ -113,7 +135,7 @@ class MapsController extends AppController {
|
|||||||
$info['depth'] = $bottom * $screen_adjustment_factor;
|
$info['depth'] = $bottom * $screen_adjustment_factor;
|
||||||
|
|
||||||
// Go through each unit in the map, calculating the map location
|
// Go through each unit in the map, calculating the map location
|
||||||
foreach ($map['Unit'] AS $unit) {
|
foreach ($units AS $unit) {
|
||||||
$lft = $unit['MapsUnit']['pt_left'] + $boundary_adjustment;
|
$lft = $unit['MapsUnit']['pt_left'] + $boundary_adjustment;
|
||||||
$top = $unit['MapsUnit']['pt_top'] + $boundary_adjustment;
|
$top = $unit['MapsUnit']['pt_top'] + $boundary_adjustment;
|
||||||
|
|
||||||
@@ -132,10 +154,9 @@ class MapsController extends AppController {
|
|||||||
$width *= $screen_adjustment_factor;
|
$width *= $screen_adjustment_factor;
|
||||||
$depth *= $screen_adjustment_factor;
|
$depth *= $screen_adjustment_factor;
|
||||||
|
|
||||||
//$info['units'][$unit['id']] =
|
|
||||||
$info['units'][] =
|
$info['units'][] =
|
||||||
array( 'id' => $unit['id'],
|
array( 'id' => $unit['Unit']['id'],
|
||||||
'name' => $unit['name'],
|
'name' => $unit['Unit']['name'],
|
||||||
'left' => $lft,
|
'left' => $lft,
|
||||||
'right' => $lft + $width,
|
'right' => $lft + $width,
|
||||||
'top' => $top,
|
'top' => $top,
|
||||||
@@ -143,11 +164,14 @@ class MapsController extends AppController {
|
|||||||
'width' => $width,
|
'width' => $width,
|
||||||
'depth' => $depth,
|
'depth' => $depth,
|
||||||
'n-s' => $unit['MapsUnit']['transpose'] ? 0 : 1,
|
'n-s' => $unit['MapsUnit']['transpose'] ? 0 : 1,
|
||||||
'status' => $unit['status']
|
'status' => (($unit['Unit']['status'] === 'OCCUPIED' &&
|
||||||
|
!empty($unit[0]['delinquent']))
|
||||||
|
? 'LATE' : $unit['Unit']['status'])
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
//pr($info);
|
/* pr($info); */
|
||||||
|
/* $this->render('/empty'); */
|
||||||
return $info;
|
return $info;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -160,8 +184,10 @@ class MapsController extends AppController {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function legend($id = null, $requested_width = 400) {
|
function legend($id = null, $requested_width = 400) {
|
||||||
$status = $this->Map->Unit->activeStatusEnums();
|
$status = array_keys($this->Map->Unit->activeStatusEnums());
|
||||||
//pr($status);
|
$occupied_key = array_search('OCCUPIED', $status);
|
||||||
|
array_splice($status, $occupied_key+1, 0, array('LATE'));
|
||||||
|
|
||||||
$rows = 2;
|
$rows = 2;
|
||||||
$cols = (int)((count($status) + $rows - 1) / $rows);
|
$cols = (int)((count($status) + $rows - 1) / $rows);
|
||||||
|
|
||||||
@@ -191,7 +217,7 @@ class MapsController extends AppController {
|
|||||||
$item_width *= $screen_adjustment_factor;
|
$item_width *= $screen_adjustment_factor;
|
||||||
$item_depth *= $screen_adjustment_factor;
|
$item_depth *= $screen_adjustment_factor;
|
||||||
|
|
||||||
foreach ($status AS $code => $value) {
|
foreach ($status AS $code) {
|
||||||
$info['units'][] = array('name' => $code,
|
$info['units'][] = array('name' => $code,
|
||||||
'status' => $code,
|
'status' => $code,
|
||||||
'width' => $item_width,
|
'width' => $item_width,
|
||||||
@@ -241,9 +267,9 @@ class MapsController extends AppController {
|
|||||||
$info['palate']['unit']['DIRTY']['bg'] = array('red' => 128, 'green' => 192, 'blue' => 192);
|
$info['palate']['unit']['DIRTY']['bg'] = array('red' => 128, 'green' => 192, 'blue' => 192);
|
||||||
$info['palate']['unit']['VACANT']['bg'] = array('red' => 0, 'green' => 255, 'blue' => 128);
|
$info['palate']['unit']['VACANT']['bg'] = array('red' => 0, 'green' => 255, 'blue' => 128);
|
||||||
$info['palate']['unit']['OCCUPIED']['bg'] = array('red' => 0, 'green' => 128, 'blue' => 255);
|
$info['palate']['unit']['OCCUPIED']['bg'] = array('red' => 0, 'green' => 128, 'blue' => 255);
|
||||||
$info['palate']['unit']['LATE']['bg'] = array('red' => 255, 'green' => 64, 'blue' => 64);
|
$info['palate']['unit']['LATE']['bg'] = array('red' => 255, 'green' => 192, 'blue' => 192);
|
||||||
$info['palate']['unit']['LOCKED']['bg'] = array('red' => 255, 'green' => 128, 'blue' => 128);
|
$info['palate']['unit']['LOCKED']['bg'] = array('red' => 255, 'green' => 64, 'blue' => 64);
|
||||||
$info['palate']['unit']['LIENED']['bg'] = array('red' => 255, 'green' => 192, 'blue' => 192);
|
$info['palate']['unit']['LIENED']['bg'] = array('red' => 255, 'green' => 0, 'blue' => 128);
|
||||||
|
|
||||||
// Determine text color to go with each background
|
// Determine text color to go with each background
|
||||||
foreach ($info['palate']['unit'] AS &$code) {
|
foreach ($info['palate']['unit'] AS &$code) {
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ class StatementEntriesController extends AppController {
|
|||||||
* to jqGrid.
|
* to jqGrid.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function gridDataTables(&$params, &$model) {
|
function gridDataCountTables(&$params, &$model) {
|
||||||
$link =
|
$link =
|
||||||
array(// Models
|
array(// Models
|
||||||
'Transaction' =>
|
'Transaction' =>
|
||||||
@@ -58,27 +58,26 @@ class StatementEntriesController extends AppController {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
if (isset($params['post']['custom']['statement_entry_id'])) {
|
if (!empty($params['post']['custom']['statement_entry_id'])) {
|
||||||
$link['DisbursementEntry'] = array();
|
$link['ChargeEntry'] = array();
|
||||||
$link['ChargeEntry'] = array();
|
$link['DisbursementEntry'] = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* if ($params['action'] === 'collected') { */
|
|
||||||
/* $link['DisbursementEntry'] = array('Receipt' => array('class' => 'Transaction')); */
|
|
||||||
/* $link['ChargeEntry'] = array('Invoice' => array('class' => 'Transaction')); */
|
|
||||||
/* } */
|
|
||||||
|
|
||||||
/* if (count(array_intersect($params['fields'], array('applied'))) == 1) { */
|
|
||||||
/* $link['DisbursementEntry'] = array(); */
|
|
||||||
/* $link['ChargeEntry'] = array(); */
|
|
||||||
/* } */
|
|
||||||
/* elseif (isset($params['post']['custom']['customer_id']) || isset($params['post']['custom']['lease_id'])) { */
|
|
||||||
/* $link['DisbursementEntry'] = array(); */
|
|
||||||
/* } */
|
|
||||||
|
|
||||||
return array('link' => $link);
|
return array('link' => $link);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function gridDataTables(&$params, &$model) {
|
||||||
|
$tables = $this->gridDataCountTables($params, $model);
|
||||||
|
|
||||||
|
if (in_array('applied', $params['post']['fields'])) {
|
||||||
|
$tables['link'] +=
|
||||||
|
array('ChargeEntry' => array(),
|
||||||
|
'DisbursementEntry' => array());
|
||||||
|
}
|
||||||
|
|
||||||
|
return $tables;
|
||||||
|
}
|
||||||
|
|
||||||
function gridDataFields(&$params, &$model) {
|
function gridDataFields(&$params, &$model) {
|
||||||
$fields = parent::gridDataFields($params, $model);
|
$fields = parent::gridDataFields($params, $model);
|
||||||
|
|
||||||
@@ -87,11 +86,13 @@ class StatementEntriesController extends AppController {
|
|||||||
" SUM(COALESCE(DisbursementEntry.amount,0))," .
|
" SUM(COALESCE(DisbursementEntry.amount,0))," .
|
||||||
" SUM(COALESCE(ChargeEntry.amount,0)))" .
|
" SUM(COALESCE(ChargeEntry.amount,0)))" .
|
||||||
" AS 'applied'");
|
" AS 'applied'");
|
||||||
|
}
|
||||||
|
if (in_array('unapplied', $params['post']['fields'])) {
|
||||||
$fields[] = ("StatementEntry.amount - (" .
|
$fields[] = ("StatementEntry.amount - (" .
|
||||||
"IF(StatementEntry.type = 'CHARGE'," .
|
"IF(StatementEntry.type = 'CHARGE'," .
|
||||||
" SUM(COALESCE(DisbursementEntry.amount,0))," .
|
" SUM(COALESCE(DisbursementEntry.amount,0))," .
|
||||||
" SUM(COALESCE(ChargeEntry.amount,0)))" .
|
" SUM(COALESCE(ChargeEntry.amount,0)))" .
|
||||||
") AS 'balance'");
|
") AS 'unapplied'");
|
||||||
}
|
}
|
||||||
|
|
||||||
$fields = array_merge($fields,
|
$fields = array_merge($fields,
|
||||||
@@ -117,12 +118,27 @@ class StatementEntriesController extends AppController {
|
|||||||
if (isset($account_id))
|
if (isset($account_id))
|
||||||
$conditions[] = array('StatementEntry.account_id' => $account_id);
|
$conditions[] = array('StatementEntry.account_id' => $account_id);
|
||||||
|
|
||||||
|
if (isset($customer_id))
|
||||||
|
$conditions[] = array('StatementEntry.customer_id' => $customer_id);
|
||||||
|
|
||||||
if (isset($statement_entry_id)) {
|
if (isset($statement_entry_id)) {
|
||||||
$conditions[] = array('OR' =>
|
$conditions[] = array('OR' =>
|
||||||
array(array('ChargeEntry.id' => $statement_entry_id),
|
array(array('ChargeEntry.id' => $statement_entry_id),
|
||||||
array('DisbursementEntry.id' => $statement_entry_id)));
|
array('DisbursementEntry.id' => $statement_entry_id)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($params['action'] === 'unreconciled') {
|
||||||
|
$query = array('conditions' => $conditions);
|
||||||
|
$set = $this->StatementEntry->reconciledSet('CHARGE', $query, true);
|
||||||
|
|
||||||
|
$entries = array();
|
||||||
|
foreach ($set['entries'] AS $entry)
|
||||||
|
$entries[] = $entry['StatementEntry']['id'];
|
||||||
|
|
||||||
|
$conditions[] = array('StatementEntry.id' => $entries);
|
||||||
|
$params['userdata']['balance'] = $set['summary']['balance'];
|
||||||
|
}
|
||||||
|
|
||||||
return $conditions;
|
return $conditions;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,26 +167,26 @@ class StatementEntriesController extends AppController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function gridDataRecordsExecute(&$params, &$model, $query) {
|
function gridDataRecordsExecute(&$params, &$model, $query) {
|
||||||
if (in_array('applied', $params['post']['fields'])) {
|
/* if ($params['action'] === '???') { */
|
||||||
$tquery = array_diff_key($query, array('fields'=>1,'group'=>1,'limit'=>1,'order'=>1));
|
/* $tquery = array_diff_key($query, array('fields'=>1,'group'=>1,'limit'=>1,'order'=>1)); */
|
||||||
$tquery['fields'] = array("IF(StatementEntry.type = 'CHARGE'," .
|
/* $tquery['fields'] = array("IF(StatementEntry.type = 'CHARGE'," . */
|
||||||
" SUM(COALESCE(DisbursementEntry.amount,0))," .
|
/* " SUM(COALESCE(DisbursementEntry.amount,0))," . */
|
||||||
" SUM(COALESCE(ChargeEntry.amount,0)))" .
|
/* " SUM(COALESCE(ChargeEntry.amount,0)))" . */
|
||||||
" AS 'applied'",
|
/* " AS 'applied'", */
|
||||||
|
|
||||||
"StatementEntry.amount - (" .
|
/* "StatementEntry.amount - (" . */
|
||||||
"IF(StatementEntry.type = 'CHARGE'," .
|
/* "IF(StatementEntry.type = 'CHARGE'," . */
|
||||||
" SUM(COALESCE(DisbursementEntry.amount,0))," .
|
/* " SUM(COALESCE(DisbursementEntry.amount,0))," . */
|
||||||
" SUM(COALESCE(ChargeEntry.amount,0)))" .
|
/* " SUM(COALESCE(ChargeEntry.amount,0)))" . */
|
||||||
") AS 'balance'",
|
/* ") AS 'balance'", */
|
||||||
);
|
/* ); */
|
||||||
|
|
||||||
//pr(compact('tquery'));
|
/* //pr(compact('tquery')); */
|
||||||
$total = $model->find('first', $tquery);
|
/* $total = $model->find('first', $tquery); */
|
||||||
$params['userdata']['total'] = $total[0]['applied'];
|
/* $params['userdata']['total'] = $total[0]['applied']; */
|
||||||
$params['userdata']['balance'] = $total[0]['balance'];
|
/* $params['userdata']['balance'] = $total[0]['balance']; */
|
||||||
}
|
/* } */
|
||||||
else {
|
if ($params['action'] === 'collected') {
|
||||||
$tquery = array_diff_key($query, array('fields'=>1,'group'=>1,'limit'=>1,'order'=>1));
|
$tquery = array_diff_key($query, array('fields'=>1,'group'=>1,'limit'=>1,'order'=>1));
|
||||||
$tquery['fields'] = array("SUM(COALESCE(StatementEntry.amount,0)) AS 'total'");
|
$tquery['fields'] = array("SUM(COALESCE(StatementEntry.amount,0)) AS 'total'");
|
||||||
$total = $model->find('first', $tquery);
|
$total = $model->find('first', $tquery);
|
||||||
@@ -213,12 +229,6 @@ class StatementEntriesController extends AppController {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function view($id = null) {
|
function view($id = null) {
|
||||||
if (!$id) {
|
|
||||||
$this->Session->setFlash(__('Invalid Item.', true));
|
|
||||||
$this->redirect(array('controller' => 'accounts', 'action'=>'index'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the StatementEntry and related fields
|
|
||||||
$entry = $this->StatementEntry->find
|
$entry = $this->StatementEntry->find
|
||||||
('first',
|
('first',
|
||||||
array('contain' => array
|
array('contain' => array
|
||||||
@@ -228,10 +238,17 @@ class StatementEntriesController extends AppController {
|
|||||||
'Lease' => array('fields' => array('id')),
|
'Lease' => array('fields' => array('id')),
|
||||||
),
|
),
|
||||||
|
|
||||||
'conditions' => array('StatementEntry.id' => $id),
|
'conditions' => array(array('StatementEntry.id' => $id),
|
||||||
|
// REVISIT <AP>: 20090811
|
||||||
|
// No security issues have been worked out yet
|
||||||
|
array('Account.level >=' => 5)
|
||||||
|
),
|
||||||
));
|
));
|
||||||
|
|
||||||
$reconciled = $this->StatementEntry->reconciledEntries($id);
|
if (empty($entry)) {
|
||||||
|
$this->Session->setFlash(__('Invalid Item.', true));
|
||||||
|
$this->redirect(array('controller' => 'accounts', 'action'=>'index'));
|
||||||
|
}
|
||||||
|
|
||||||
$stats = $this->StatementEntry->stats($id);
|
$stats = $this->StatementEntry->stats($id);
|
||||||
|
|
||||||
@@ -243,19 +260,14 @@ class StatementEntriesController extends AppController {
|
|||||||
|
|
||||||
if (strtoupper($entry['StatementEntry']['type']) === 'CHARGE') {
|
if (strtoupper($entry['StatementEntry']['type']) === 'CHARGE') {
|
||||||
|
|
||||||
$reversal = $this->StatementEntry->find
|
$reversable = $this->StatementEntry->reversable($id);
|
||||||
('first',
|
|
||||||
array('link' => array('DisbursementEntry'),
|
|
||||||
'conditions' => array(array('StatementEntry.id' => $id),
|
|
||||||
array('DisbursementEntry.type' => 'REVERSAL')),
|
|
||||||
));
|
|
||||||
|
|
||||||
// Set up dynamic menu items
|
// Set up dynamic menu items
|
||||||
if (empty($reversal) || $stats['balance'] > 0)
|
if ($reversable || $stats['balance'] > 0)
|
||||||
$this->sidemenu_links[] =
|
$this->sidemenu_links[] =
|
||||||
array('name' => 'Operations', 'header' => true);
|
array('name' => 'Operations', 'header' => true);
|
||||||
|
|
||||||
if (empty($reversal))
|
if ($reversable)
|
||||||
$this->sidemenu_links[] =
|
$this->sidemenu_links[] =
|
||||||
array('name' => 'Reverse',
|
array('name' => 'Reverse',
|
||||||
'url' => array('action' => 'reverse',
|
'url' => array('action' => 'reverse',
|
||||||
@@ -270,7 +282,7 @@ class StatementEntriesController extends AppController {
|
|||||||
|
|
||||||
// Prepare to render.
|
// Prepare to render.
|
||||||
$title = "Statement Entry #{$entry['StatementEntry']['id']}";
|
$title = "Statement Entry #{$entry['StatementEntry']['id']}";
|
||||||
$this->set(compact('entry', 'title', 'reconciled', 'stats'));
|
$this->set(compact('entry', 'title', 'stats'));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -178,7 +178,8 @@ class TendersController extends AppController {
|
|||||||
&& empty($tender['Tender']['nsf_transaction_id'])
|
&& empty($tender['Tender']['nsf_transaction_id'])
|
||||||
// Hard to tell what types of items can come back as NSF.
|
// Hard to tell what types of items can come back as NSF.
|
||||||
// For now, assume iff it is a named item, it can be NSF.
|
// For now, assume iff it is a named item, it can be NSF.
|
||||||
&& !empty($tender['TenderType']['data1_name'])
|
// (or if we're in development mode)
|
||||||
|
&& (!empty($tender['TenderType']['data1_name']) || !empty($this->params['dev']))
|
||||||
) {
|
) {
|
||||||
$this->sidemenu_links[] =
|
$this->sidemenu_links[] =
|
||||||
array('name' => 'NSF',
|
array('name' => 'NSF',
|
||||||
@@ -233,11 +234,6 @@ class TendersController extends AppController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->redirect(array('action'=>'view', $this->Tender->id));
|
$this->redirect(array('action'=>'view', $this->Tender->id));
|
||||||
|
|
||||||
// For debugging, only if the redirects above have been
|
|
||||||
// commented out, otherwise this section isn't reached.
|
|
||||||
$this->render('/fake');
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id) {
|
if ($id) {
|
||||||
|
|||||||
@@ -54,7 +54,12 @@ class TransactionsController extends AppController {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function gridDataCountTables(&$params, &$model) {
|
function gridDataCountTables(&$params, &$model) {
|
||||||
return parent::gridDataTables($params, $model);
|
return array
|
||||||
|
('link' =>
|
||||||
|
array(// Models
|
||||||
|
'Account' => array('fields' => array()),
|
||||||
|
),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function gridDataTables(&$params, &$model) {
|
function gridDataTables(&$params, &$model) {
|
||||||
@@ -79,11 +84,16 @@ class TransactionsController extends AppController {
|
|||||||
if (in_array($params['action'], array('invoice', 'receipt', 'deposit')))
|
if (in_array($params['action'], array('invoice', 'receipt', 'deposit')))
|
||||||
$conditions[] = array('Transaction.type' => strtoupper($params['action']));
|
$conditions[] = array('Transaction.type' => strtoupper($params['action']));
|
||||||
|
|
||||||
|
// REVISIT <AP>: 20090811
|
||||||
|
// No security issues have been worked out yet
|
||||||
|
$conditions[] = array('Account.level >=' => 5);
|
||||||
|
|
||||||
return $conditions;
|
return $conditions;
|
||||||
}
|
}
|
||||||
|
|
||||||
function gridDataPostProcessLinks(&$params, &$model, &$records, $links) {
|
function gridDataPostProcessLinks(&$params, &$model, &$records, $links) {
|
||||||
$links['Transaction'] = array('id');
|
$links['Transaction'] = array('id', 'action' => ($params['action'] == 'deposit'
|
||||||
|
? 'deposit_slip' : 'view'));
|
||||||
return parent::gridDataPostProcessLinks($params, $model, $records, $links);
|
return parent::gridDataPostProcessLinks($params, $model, $records, $links);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -339,8 +349,6 @@ class TransactionsController extends AppController {
|
|||||||
die("<H1>REFUND FAILED</H1>");
|
die("<H1>REFUND FAILED</H1>");
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->render('/fake');
|
|
||||||
|
|
||||||
// Return to viewing the lease/customer
|
// Return to viewing the lease/customer
|
||||||
if (empty($data['Lease']['id']))
|
if (empty($data['Lease']['id']))
|
||||||
$this->redirect(array('controller' => 'customers',
|
$this->redirect(array('controller' => 'customers',
|
||||||
@@ -353,6 +361,21 @@ class TransactionsController extends AppController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
* action: destroy
|
||||||
|
* - Deletes a transaction and associated entries
|
||||||
|
* - !!WARNING!! This should be used with EXTREME caution, as it
|
||||||
|
* irreversibly destroys the data. It is not for normal use.
|
||||||
|
*/
|
||||||
|
|
||||||
|
function destroy($id = null) {
|
||||||
|
$this->Transaction->destroy($id);
|
||||||
|
//$this->redirect(array('action' => 'index'));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
@@ -361,33 +384,45 @@ class TransactionsController extends AppController {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function view($id = null) {
|
function view($id = null) {
|
||||||
if (!$id) {
|
|
||||||
$this->Session->setFlash(__('Invalid Item.', true));
|
|
||||||
$this->redirect(array('action'=>'index'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$transaction = $this->Transaction->find
|
$transaction = $this->Transaction->find
|
||||||
('first',
|
('first',
|
||||||
array('contain' =>
|
array('contain' =>
|
||||||
array(// Models
|
array(// Models
|
||||||
'Account' =>
|
'Account(id,name)',
|
||||||
array('fields' => array('Account.id',
|
'Ledger(id,name)',
|
||||||
'Account.name'),
|
'NsfTender(id,name)',
|
||||||
),
|
|
||||||
|
|
||||||
'Ledger' =>
|
|
||||||
array('fields' => array('Ledger.id',
|
|
||||||
'Ledger.name'),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
'conditions' => array('Transaction.id' => $id),
|
'conditions' => array(array('Transaction.id' => $id),
|
||||||
|
// REVISIT <AP>: 20090811
|
||||||
|
// No security issues have been worked out yet
|
||||||
|
array('OR' =>
|
||||||
|
array(array('Account.level >=' => 5),
|
||||||
|
array('Account.id' => null))),
|
||||||
|
),
|
||||||
));
|
));
|
||||||
|
|
||||||
if ($transaction['Transaction']['type'] === 'DEPOSIT') {
|
// REVISIT <AP>: 20090815
|
||||||
|
// for debug purposes only (pr output)
|
||||||
|
$this->Transaction->stats($id);
|
||||||
|
|
||||||
|
if (empty($transaction)) {
|
||||||
|
$this->Session->setFlash(__('Invalid Item.', true));
|
||||||
|
$this->redirect(array('action'=>'index'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($transaction['Transaction']['type'] === 'DEPOSIT' || $this->params['dev']) {
|
||||||
$this->sidemenu_links[] =
|
$this->sidemenu_links[] =
|
||||||
array('name' => 'Operations', 'header' => true);
|
array('name' => 'Operations', 'header' => true);
|
||||||
$this->sidemenu_links[] =
|
|
||||||
array('name' => 'View Slip', 'url' => array('action' => 'deposit_slip', $id));
|
if ($transaction['Transaction']['type'] === 'DEPOSIT')
|
||||||
|
$this->sidemenu_links[] =
|
||||||
|
array('name' => 'View Slip', 'url' => array('action' => 'deposit_slip', $id));
|
||||||
|
if ($this->params['dev'])
|
||||||
|
$this->sidemenu_links[] =
|
||||||
|
array('name' => 'Destroy', 'url' => array('action' => 'destroy', $id),
|
||||||
|
'confirmMessage' => ("This may leave the database in an unstable state." .
|
||||||
|
" Do NOT do this unless you know what you're doing." .
|
||||||
|
" Proceed anyway?"));
|
||||||
}
|
}
|
||||||
|
|
||||||
// OK, prepare to render.
|
// OK, prepare to render.
|
||||||
@@ -440,15 +475,12 @@ class TransactionsController extends AppController {
|
|||||||
$type['TenderType'] + $type[0];
|
$type['TenderType'] + $type[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
// For each form of tender in the deposit, get the deposit items
|
$deposit_total = 0;
|
||||||
/* foreach ($deposit['types'] AS $type_id => &$type) { */
|
foreach ($deposit['types'] AS $type)
|
||||||
/* $type['entries'] = $this->Transaction->DepositTender->find */
|
$deposit_total += $type['total'];
|
||||||
/* ('all', */
|
|
||||||
/* array('contain' => array('Customer', 'LedgerEntry'), */
|
if ($deposit['Transaction']['amount'] != $deposit_total)
|
||||||
/* 'conditions' => array(array('DepositTender.deposit_transaction_id' => $id), */
|
$this->INTERNAL_ERROR("Deposit items do not add up to deposit slip total");
|
||||||
/* array('DepositTender.tender_type_id' => $type_id)), */
|
|
||||||
/* )); */
|
|
||||||
/* } */
|
|
||||||
|
|
||||||
$this->sidemenu_links[] =
|
$this->sidemenu_links[] =
|
||||||
array('name' => 'Operations', 'header' => true);
|
array('name' => 'Operations', 'header' => true);
|
||||||
|
|||||||
@@ -256,13 +256,13 @@ class UnitsController extends AppController {
|
|||||||
if (isset($unit['CurrentLease']['id']) &&
|
if (isset($unit['CurrentLease']['id']) &&
|
||||||
!isset($unit['CurrentLease']['close_date'])) {
|
!isset($unit['CurrentLease']['close_date'])) {
|
||||||
$this->sidemenu_links[] =
|
$this->sidemenu_links[] =
|
||||||
array('name' => 'Charge', 'url' => array('controller' => 'leases',
|
array('name' => 'New Invoice', 'url' => array('controller' => 'leases',
|
||||||
'action' => 'invoice',
|
'action' => 'invoice',
|
||||||
$unit['CurrentLease']['id']));
|
$unit['CurrentLease']['id']));
|
||||||
$this->sidemenu_links[] =
|
$this->sidemenu_links[] =
|
||||||
array('name' => 'Payment', 'url' => array('controller' => 'customers',
|
array('name' => 'New Receipt', 'url' => array('controller' => 'customers',
|
||||||
'action' => 'receipt',
|
'action' => 'receipt',
|
||||||
$unit['CurrentLease']['customer_id']));
|
$unit['CurrentLease']['customer_id']));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepare to render.
|
// Prepare to render.
|
||||||
@@ -307,11 +307,6 @@ class UnitsController extends AppController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->redirect(array('action'=>'view', $this->Unit->id));
|
$this->redirect(array('action'=>'view', $this->Unit->id));
|
||||||
|
|
||||||
// For debugging, only if the redirects above have been
|
|
||||||
// commented out, otherwise this section isn't reached.
|
|
||||||
$this->render('/fake');
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id) {
|
if ($id) {
|
||||||
|
|||||||
@@ -139,7 +139,17 @@ class Account extends AppModel {
|
|||||||
function invoiceAccountID() { return $this->nameToID('Invoice'); }
|
function invoiceAccountID() { return $this->nameToID('Invoice'); }
|
||||||
function receiptAccountID() { return $this->nameToID('Receipt'); }
|
function receiptAccountID() { return $this->nameToID('Receipt'); }
|
||||||
function badDebtAccountID() { return $this->nameToID('Bad Debt'); }
|
function badDebtAccountID() { return $this->nameToID('Bad Debt'); }
|
||||||
|
function customerCreditAccountID() { return $this->nameToID(
|
||||||
|
// REVISIT <AP>: 20090816
|
||||||
|
// Use of A/R works, and saves an excess of accounts.
|
||||||
|
// However, a dedicated account is nice, since it can
|
||||||
|
// quickly be spotted how much is _really_ due, vs
|
||||||
|
// how much has been pre-paid. Customer credits in
|
||||||
|
// A/R is not as clear, although a report is an
|
||||||
|
// obvious solution.
|
||||||
|
//'A/R'
|
||||||
|
'Credit'
|
||||||
|
); }
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
@@ -223,13 +233,28 @@ class Account extends AppModel {
|
|||||||
function collectableAccounts() {
|
function collectableAccounts() {
|
||||||
$accounts = $this->receiptAccounts();
|
$accounts = $this->receiptAccounts();
|
||||||
|
|
||||||
foreach(array($this->nsfAccountID(),
|
foreach(array($this->customerCreditAccountID(),
|
||||||
|
$this->securityDepositAccountID(),
|
||||||
|
$this->nsfAccountID(),
|
||||||
|
$this->waiverAccountID(),
|
||||||
$this->badDebtAccountID(),
|
$this->badDebtAccountID(),
|
||||||
$this->securityDepositAccountID())
|
//$this->nameToID('Closing'),
|
||||||
|
//$this->nameToID('Equity'),
|
||||||
|
)
|
||||||
AS $account_id) {
|
AS $account_id) {
|
||||||
$accounts[$account_id] = $this->name($account_id);
|
$accounts[$account_id] = $this->name($account_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$accounts['all'] = $accounts['default'] = $accounts;
|
||||||
|
|
||||||
|
foreach(array($this->concessionAccountID(),
|
||||||
|
$this->waiverAccountID(),
|
||||||
|
$this->badDebtAccountID(),
|
||||||
|
)
|
||||||
|
AS $account_id) {
|
||||||
|
unset($accounts['default'][$account_id]);
|
||||||
|
}
|
||||||
|
|
||||||
return $accounts;
|
return $accounts;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -345,6 +370,7 @@ class Account extends AppModel {
|
|||||||
$this->queryInit($query);
|
$this->queryInit($query);
|
||||||
$query['link'] = array('Account' => $query['link']);
|
$query['link'] = array('Account' => $query['link']);
|
||||||
|
|
||||||
|
$stats = array();
|
||||||
foreach ($this->ledgers($id, $all) AS $ledger)
|
foreach ($this->ledgers($id, $all) AS $ledger)
|
||||||
$this->statsMerge($stats['Ledger'],
|
$this->statsMerge($stats['Ledger'],
|
||||||
$this->Ledger->stats($ledger, $query));
|
$this->Ledger->stats($ledger, $query));
|
||||||
|
|||||||
@@ -142,10 +142,8 @@ class Customer extends AppModel {
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
$I = new Contact();
|
$I = new Contact();
|
||||||
$I->create();
|
if (!$I->saveContact(null, array('Contact' => $contact)))
|
||||||
if (!$I->save($contact, false)) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
$contact['id'] = $I->id;
|
$contact['id'] = $I->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -203,6 +201,29 @@ class Customer extends AppModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
* function: update
|
||||||
|
* - Update any cached or calculated fields
|
||||||
|
*/
|
||||||
|
function update($id) {
|
||||||
|
|
||||||
|
// REVISIT <AP>: 20090812
|
||||||
|
// updateLeaseCount is handled directly when needed.
|
||||||
|
// Should we simplify by just doing it anyway?
|
||||||
|
//$this->updateLeaseCount($id);
|
||||||
|
|
||||||
|
$current_leases =
|
||||||
|
$this->find('all',
|
||||||
|
array('link' => array('CurrentLease' => array('type' => 'INNER')),
|
||||||
|
'conditions' => array('Customer.id' => $id)));
|
||||||
|
|
||||||
|
foreach ($current_leases AS $lease)
|
||||||
|
$this->Lease->update($lease['CurrentLease']['id']);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
|
|||||||
@@ -53,12 +53,27 @@ class DoubleEntry extends AppModel {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function addDoubleEntry($entry1, $entry2, $entry1_tender = null) {
|
function addDoubleEntry($entry1, $entry2, $entry1_tender = null) {
|
||||||
/* pr(array('DoubleEntry::addDoubleEntry' => */
|
$this->prFunctionLevel(16);
|
||||||
/* compact('entry1', 'entry2', 'entry1_tender'))); */
|
$this->prEnter(compact('entry1', 'entry2', 'entry1_tender'));
|
||||||
|
|
||||||
$ret = array();
|
$ret = array();
|
||||||
if (!$this->verifyDoubleEntry($entry1, $entry2, $entry1_tender))
|
if (!$this->verifyDoubleEntry($entry1, $entry2, $entry1_tender))
|
||||||
return array('error' => true) + $ret;
|
return $this->prReturn(array('error' => true) + $ret);
|
||||||
|
|
||||||
|
// Handle the case where a double entry involves the same
|
||||||
|
// exact ledger. This would not serve any useful purpose.
|
||||||
|
// It is not, however, an error. It is semantically correct
|
||||||
|
// just not really logically correct. To make this easier,
|
||||||
|
// just ensure ledger_id is set for each entry, even though
|
||||||
|
// it would be handled later by the LedgerEntry model.
|
||||||
|
//array($entry1, $entry2) AS &$entry) {
|
||||||
|
for ($i=1; $i <= 2; ++$i) {
|
||||||
|
if (empty(${'entry'.$i}['ledger_id']))
|
||||||
|
${'entry'.$i}['ledger_id'] =
|
||||||
|
$this->DebitEntry->Account->currentLedgerID(${'entry'.$i}['account_id']);
|
||||||
|
}
|
||||||
|
if ($entry1['ledger_id'] == $entry2['ledger_id'])
|
||||||
|
return $this->prReturn(array('error' => false));
|
||||||
|
|
||||||
// Since this model only relates to DebitEntry and CreditEntry...
|
// Since this model only relates to DebitEntry and CreditEntry...
|
||||||
$LE = new LedgerEntry();
|
$LE = new LedgerEntry();
|
||||||
@@ -67,13 +82,13 @@ class DoubleEntry extends AppModel {
|
|||||||
$result = $LE->addLedgerEntry($entry1, $entry1_tender);
|
$result = $LE->addLedgerEntry($entry1, $entry1_tender);
|
||||||
$ret['Entry1'] = $result;
|
$ret['Entry1'] = $result;
|
||||||
if ($result['error'])
|
if ($result['error'])
|
||||||
return array('error' => true) + $ret;
|
return $this->prReturn(array('error' => true) + $ret);
|
||||||
|
|
||||||
// Add the second ledger entry to the database
|
// Add the second ledger entry to the database
|
||||||
$result = $LE->addLedgerEntry($entry2);
|
$result = $LE->addLedgerEntry($entry2);
|
||||||
$ret['Entry2'] = $result;
|
$ret['Entry2'] = $result;
|
||||||
if ($result['error'])
|
if ($result['error'])
|
||||||
return array('error' => true) + $ret;
|
return $this->prReturn(array('error' => true) + $ret);
|
||||||
|
|
||||||
// Now link them as a double entry
|
// Now link them as a double entry
|
||||||
$double_entry = array();
|
$double_entry = array();
|
||||||
@@ -82,15 +97,13 @@ class DoubleEntry extends AppModel {
|
|||||||
$double_entry['credit_entry_id'] =
|
$double_entry['credit_entry_id'] =
|
||||||
($entry1['crdr'] === 'CREDIT') ? $ret['Entry1']['ledger_entry_id'] : $ret['Entry2']['ledger_entry_id'];
|
($entry1['crdr'] === 'CREDIT') ? $ret['Entry1']['ledger_entry_id'] : $ret['Entry2']['ledger_entry_id'];
|
||||||
|
|
||||||
/* pr(array('DoubleEntry::addDoubleEntry' => */
|
$ret['data'] = $double_entry;
|
||||||
/* array('checkpoint' => 'Pre-Save') */
|
|
||||||
/* + compact('double_entry'))); */
|
|
||||||
|
|
||||||
$this->create();
|
$this->create();
|
||||||
if (!$this->save($double_entry))
|
if (!$this->save($double_entry))
|
||||||
return array('error' => true) + $ret;
|
return $this->prReturn(array('error' => true) + $ret);
|
||||||
|
|
||||||
$ret['double_entry_id'] = $this->id;
|
$ret['double_entry_id'] = $this->id;
|
||||||
return $ret + array('error' => false);
|
return $this->prReturn($ret + array('error' => false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ class Lease extends AppModel {
|
|||||||
'StatementEntry',
|
'StatementEntry',
|
||||||
);
|
);
|
||||||
|
|
||||||
//var $default_log_level = array('log' => 30, 'show' => 15);
|
//var $default_log_level = array('log' => 30, 'show' => 30);
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
@@ -426,6 +426,17 @@ class Lease extends AppModel {
|
|||||||
$date = mktime(0, 0, 0, $date_parts['mon'], 11, $date_parts['year']);
|
$date = mktime(0, 0, 0, $date_parts['mon'], 11, $date_parts['year']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Don't assess a late charge if the late charge date hasn't
|
||||||
|
// even come yet. This is questionable whether we really
|
||||||
|
// should restrict, since the user could know what they're
|
||||||
|
// doing, and/or the server clock could be off (although that
|
||||||
|
// would certainly have much larger ramifications). But, the
|
||||||
|
// fact is that this check likely handles the vast majority
|
||||||
|
// of the expected behavior, and presents an issue for very
|
||||||
|
// few users, if any at all.
|
||||||
|
if ($date > time())
|
||||||
|
return $this->prReturn(null);
|
||||||
|
|
||||||
// Make sure we're not trying to assess late charges on a closed lease
|
// Make sure we're not trying to assess late charges on a closed lease
|
||||||
$close_date = $this->field('close_date');
|
$close_date = $this->field('close_date');
|
||||||
$this->pr(17, compact('close_date'));
|
$this->pr(17, compact('close_date'));
|
||||||
@@ -449,6 +460,10 @@ class Lease extends AppModel {
|
|||||||
|
|
||||||
// Determine if the customer is actually late. This is based on
|
// Determine if the customer is actually late. This is based on
|
||||||
// when they've paid through, plus 10 days before they're late.
|
// when they've paid through, plus 10 days before they're late.
|
||||||
|
// REVISIT <AP>: 20090813
|
||||||
|
// Of course, 10 days is a terrible hardcode. This should be
|
||||||
|
// driven from the late schedule, saved as part of the lease
|
||||||
|
// (when finally implemented).
|
||||||
$paid_through_date = strtotime($this->rentPaidThrough($id));
|
$paid_through_date = strtotime($this->rentPaidThrough($id));
|
||||||
$this->pr(17, compact('date', 'paid_through_date')
|
$this->pr(17, compact('date', 'paid_through_date')
|
||||||
+ array('date_str' => date('Y-m-d', $date),
|
+ array('date_str' => date('Y-m-d', $date),
|
||||||
@@ -512,6 +527,31 @@ class Lease extends AppModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
* functions: delinquency
|
||||||
|
* - SQL fragments to determine whether a lease is delinquent
|
||||||
|
*/
|
||||||
|
|
||||||
|
function conditionDelinquent($table_name = 'Lease') {
|
||||||
|
if (empty($table_name)) $t = ''; else $t = $table_name . '.';
|
||||||
|
return ("({$t}close_date IS NULL AND" .
|
||||||
|
" NOW() > DATE_ADD({$t}paid_through_date, INTERVAL 15 DAY))");
|
||||||
|
}
|
||||||
|
|
||||||
|
function delinquentDaysSQL($table_name = 'Lease') {
|
||||||
|
if (empty($table_name)) $t = ''; else $t = $table_name . '.';
|
||||||
|
return ("IF(" . $this->conditionDelinquent($table_name) . "," .
|
||||||
|
" DATEDIFF(NOW(), {$t}paid_through_date)-1," .
|
||||||
|
" NULL)");
|
||||||
|
}
|
||||||
|
|
||||||
|
function delinquentField($table_name = 'Lease') {
|
||||||
|
return ($this->delinquentDaysSQL($table_name) . " AS 'delinquent'");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
@@ -610,7 +650,7 @@ class Lease extends AppModel {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function moveOut($id, $status = 'VACANT',
|
function moveOut($id, $status = 'VACANT',
|
||||||
$stamp = null, $close = false)
|
$stamp = null, $close = true)
|
||||||
{
|
{
|
||||||
$this->prEnter(compact('id', 'status', 'stamp', 'close'));
|
$this->prEnter(compact('id', 'status', 'stamp', 'close'));
|
||||||
|
|
||||||
@@ -745,6 +785,23 @@ class Lease extends AppModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
* function: update
|
||||||
|
* - Update any cached or calculated fields
|
||||||
|
*/
|
||||||
|
function update($id) {
|
||||||
|
$this->id = $id;
|
||||||
|
$this->saveField('charge_through_date', $this->rentChargeThrough($id));
|
||||||
|
$this->saveField('paid_through_date', $this->rentPaidThrough($id));
|
||||||
|
|
||||||
|
$moveout = $this->field('moveout_date');
|
||||||
|
if (empty($moveout))
|
||||||
|
$this->Unit->update($this->field('unit_id'));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
|
|||||||
@@ -8,8 +8,22 @@ class LedgerEntry extends AppModel {
|
|||||||
);
|
);
|
||||||
|
|
||||||
var $hasOne = array(
|
var $hasOne = array(
|
||||||
'Tender',
|
'Tender' => array(
|
||||||
'DoubleEntry',
|
'dependent' => true,
|
||||||
|
),
|
||||||
|
'DebitDoubleEntry' => array(
|
||||||
|
'className' => 'DoubleEntry',
|
||||||
|
'foreignKey' => 'debit_entry_id',
|
||||||
|
'dependent' => true,
|
||||||
|
),
|
||||||
|
'CreditDoubleEntry' => array(
|
||||||
|
'className' => 'DoubleEntry',
|
||||||
|
'foreignKey' => 'credit_entry_id',
|
||||||
|
'dependent' => true,
|
||||||
|
),
|
||||||
|
'DoubleEntry' => array(
|
||||||
|
'foreignKey' => false,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
var $hasMany = array(
|
var $hasMany = array(
|
||||||
@@ -113,24 +127,20 @@ class LedgerEntry extends AppModel {
|
|||||||
* - Inserts new Ledger Entry into the database
|
* - Inserts new Ledger Entry into the database
|
||||||
*/
|
*/
|
||||||
function addLedgerEntry($entry, $tender = null) {
|
function addLedgerEntry($entry, $tender = null) {
|
||||||
/* pr(array('LedgerEntry::addLedgerEntry' => */
|
$this->prFunctionLevel(16);
|
||||||
/* compact('entry', 'tender'))); */
|
$this->prEnter(compact('entry', 'tender'));
|
||||||
|
|
||||||
$ret = array();
|
$ret = array('data' => $entry);
|
||||||
if (!$this->verifyLedgerEntry($entry, $tender))
|
if (!$this->verifyLedgerEntry($entry, $tender))
|
||||||
return array('error' => true) + $ret;
|
return $this->prReturn(array('error' => true) + $ret);
|
||||||
|
|
||||||
if (empty($entry['ledger_id']))
|
if (empty($entry['ledger_id']))
|
||||||
$entry['ledger_id'] =
|
$entry['ledger_id'] =
|
||||||
$this->Account->currentLedgerID($entry['account_id']);
|
$this->Account->currentLedgerID($entry['account_id']);
|
||||||
|
|
||||||
/* pr(array('LedgerEntry::addLedgerEntry' => */
|
|
||||||
/* array('checkpoint' => 'Pre-Save') */
|
|
||||||
/* + compact('entry'))); */
|
|
||||||
|
|
||||||
$this->create();
|
$this->create();
|
||||||
if (!$this->save($entry))
|
if (!$this->save($entry))
|
||||||
return array('error' => true) + $ret;
|
return $this->prReturn(array('error' => true) + $ret);
|
||||||
|
|
||||||
$ret['ledger_entry_id'] = $this->id;
|
$ret['ledger_entry_id'] = $this->id;
|
||||||
|
|
||||||
@@ -140,10 +150,10 @@ class LedgerEntry extends AppModel {
|
|||||||
$result = $this->Tender->addTender($tender);
|
$result = $this->Tender->addTender($tender);
|
||||||
$ret['Tender'] = $result;
|
$ret['Tender'] = $result;
|
||||||
if ($result['error'])
|
if ($result['error'])
|
||||||
return array('error' => true) + $ret;
|
return $this->prReturn(array('error' => true) + $ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $ret + array('error' => false);
|
return $this->prReturn($ret + array('error' => false));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
<?php
|
|
||||||
class MapsUnit extends AppModel {
|
|
||||||
|
|
||||||
var $name = 'MapsUnit';
|
|
||||||
var $validate = array(
|
|
||||||
'id' => array('numeric'),
|
|
||||||
'map_id' => array('numeric'),
|
|
||||||
'unit_id' => array('numeric'),
|
|
||||||
'pt_top' => array('numeric'),
|
|
||||||
'pt_left' => array('numeric'),
|
|
||||||
'transpose' => array('boolean')
|
|
||||||
);
|
|
||||||
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
@@ -18,11 +18,13 @@ class StatementEntry extends AppModel {
|
|||||||
'DisbursementEntry' => array(
|
'DisbursementEntry' => array(
|
||||||
'className' => 'StatementEntry',
|
'className' => 'StatementEntry',
|
||||||
'foreignKey' => 'charge_entry_id',
|
'foreignKey' => 'charge_entry_id',
|
||||||
|
'dependent' => true,
|
||||||
),
|
),
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
//var $default_log_level = array('log' => 30, 'show' => 15);
|
var $default_log_level = array('log' => 30, 'show' => 15);
|
||||||
|
var $max_log_level = 19;
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
@@ -123,13 +125,10 @@ class StatementEntry extends AppModel {
|
|||||||
function addStatementEntry($entry) {
|
function addStatementEntry($entry) {
|
||||||
$this->prEnter(compact('entry'));
|
$this->prEnter(compact('entry'));
|
||||||
|
|
||||||
$ret = array();
|
$ret = array('data' => $entry);
|
||||||
if (!$this->verifyStatementEntry($entry))
|
if (!$this->verifyStatementEntry($entry))
|
||||||
return $this->prReturn(array('error' => true, 'verify_data' => $entry) + $ret);
|
return $this->prReturn(array('error' => true, 'verify_data' => $entry) + $ret);
|
||||||
|
|
||||||
$this->pr(20, array('checkpoint' => 'Pre-Save')
|
|
||||||
+ compact('entry'));
|
|
||||||
|
|
||||||
$this->create();
|
$this->create();
|
||||||
if (!$this->save($entry))
|
if (!$this->save($entry))
|
||||||
return $this->prReturn(array('error' => true, 'save_data' => $entry) + $ret);
|
return $this->prReturn(array('error' => true, 'save_data' => $entry) + $ret);
|
||||||
@@ -155,7 +154,7 @@ class StatementEntry extends AppModel {
|
|||||||
$charge = $charge['StatementEntry'];
|
$charge = $charge['StatementEntry'];
|
||||||
|
|
||||||
if ($charge['type'] !== 'CHARGE')
|
if ($charge['type'] !== 'CHARGE')
|
||||||
INTERNAL_ERROR("Waiver item is not CHARGE.");
|
$this->INTERNAL_ERROR("Waiver item is not CHARGE.");
|
||||||
|
|
||||||
// Query the stats to get the remaining balance
|
// Query the stats to get the remaining balance
|
||||||
$stats = $this->stats($id);
|
$stats = $this->stats($id);
|
||||||
@@ -168,7 +167,6 @@ class StatementEntry extends AppModel {
|
|||||||
// Add the charge waiver
|
// Add the charge waiver
|
||||||
$waiver['Entry'][] =
|
$waiver['Entry'][] =
|
||||||
array('amount' => $stats['Charge']['balance'],
|
array('amount' => $stats['Charge']['balance'],
|
||||||
'account_id' => $this->Account->waiverAccountID(),
|
|
||||||
'comment' => null,
|
'comment' => null,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -178,89 +176,61 @@ class StatementEntry extends AppModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
* function: reversable
|
||||||
|
* - Returns true if the charge can be reversed; false otherwise
|
||||||
|
*/
|
||||||
|
function reversable($id) {
|
||||||
|
$this->prEnter(compact('id'));
|
||||||
|
|
||||||
|
// Verify the item is an actual charge
|
||||||
|
$this->id = $id;
|
||||||
|
$charge_type = $this->field('type');
|
||||||
|
if ($charge_type !== 'CHARGE')
|
||||||
|
return $this->prReturn(false);
|
||||||
|
|
||||||
|
// Determine anything reconciled against the charge
|
||||||
|
$reverse_transaction_id = $this->field('reverse_transaction_id');
|
||||||
|
if (!empty($reverse_transaction_id))
|
||||||
|
return $this->prReturn(false);
|
||||||
|
|
||||||
|
return $this->prReturn(true);
|
||||||
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
* function: reverse
|
* function: reverse
|
||||||
* - Reverses the charges
|
* - Reverses the charges
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
function reverse($id, $balance = false, $stamp = null) {
|
function reverse($id, $stamp = null) {
|
||||||
$this->prEnter(compact('id', 'balance', 'stamp'));
|
$this->prEnter(compact('id', 'stamp'));
|
||||||
|
|
||||||
$ret = array();
|
// Verify the item can be reversed
|
||||||
|
if (!$this->reversable($id))
|
||||||
|
$this->INTERNAL_ERROR("Item is not reversable.");
|
||||||
|
|
||||||
// Get the basic information about the entry to be reversed.
|
// Get the basic information about this charge
|
||||||
$this->recursive = -1;
|
$charge = $this->find('first', array('contain' => true));
|
||||||
$charge = $this->read(null, $id);
|
//$charge = $charge['StatementEntry'];
|
||||||
$charge = $charge['StatementEntry'];
|
|
||||||
|
|
||||||
if ($charge['type'] !== 'CHARGE')
|
|
||||||
INTERNAL_ERROR("Reversal item is not CHARGE.");
|
|
||||||
|
|
||||||
$voided_entry_transactions = array();
|
|
||||||
$reconciled = $this->reconciledEntries($id);
|
|
||||||
$this->pr(21, compact('reconciled'));
|
|
||||||
|
|
||||||
if ($reconciled && !$balance) {
|
|
||||||
foreach ($reconciled['entries'] AS $entry) {
|
|
||||||
if ($entry['DisbursementEntry']['type'] === 'REVERSAL')
|
|
||||||
INTERNAL_ERROR("Charge has already been reversed");
|
|
||||||
|
|
||||||
$voided_entry_transactions[$entry['DisbursementEntry']['transaction_id']]
|
|
||||||
= array_intersect_key($entry['DisbursementEntry'],
|
|
||||||
array('customer_id'=>1, 'lease_id'=>1));
|
|
||||||
|
|
||||||
$this->del($entry['DisbursementEntry']['id']);
|
|
||||||
continue;
|
|
||||||
|
|
||||||
$DE = new StatementEntry();
|
|
||||||
$DE->id = $entry['DisbursementEntry']['id'];
|
|
||||||
$DE->saveField('type', 'VOID');
|
|
||||||
$DE->saveField('charge_entry_id', null);
|
|
||||||
}
|
|
||||||
$this->pr(17, compact('voided_entry_transactions'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Query the stats to get the remaining balance
|
// Query the stats to get the remaining balance
|
||||||
$stats = $this->stats($id);
|
$stats = $this->stats($id);
|
||||||
|
$charge['paid'] = $stats['Charge']['disbursement'];
|
||||||
// Build a transaction
|
|
||||||
$reversal = array('Transaction' => array(), 'Entry' => array());
|
|
||||||
$reversal['Transaction']['stamp'] = $stamp;
|
|
||||||
$reversal['Transaction']['comment'] = "Credit Note: Charge Reversal";
|
|
||||||
|
|
||||||
// Add the charge reversal
|
|
||||||
$reversal['Entry'][] =
|
|
||||||
array('amount' => $stats['Charge']['balance'],
|
|
||||||
'account_id' => $charge['account_id'],
|
|
||||||
'comment' => 'Charge Reversal',
|
|
||||||
);
|
|
||||||
|
|
||||||
// Record the reversal transaction
|
// Record the reversal transaction
|
||||||
$result = $this->Transaction->addReversal
|
$result = $this->Transaction->addReversal
|
||||||
($reversal, $id, $charge['customer_id'], $charge['lease_id']);
|
($charge, $stamp, 'Charge Reversal');
|
||||||
$this->pr(21, compact('result'));
|
|
||||||
$ret['reversal'] = $result;
|
|
||||||
if ($result['error'])
|
|
||||||
$ret['error'] = true;
|
|
||||||
|
|
||||||
foreach ($voided_entry_transactions AS $transaction_id => $tx) {
|
if (empty($result['error'])) {
|
||||||
$result = $this->assignCredits
|
// Mark the charge as reversed
|
||||||
(null,
|
$this->id = $id;
|
||||||
$transaction_id,
|
$this->saveField('reverse_transaction_id', $result['transaction_id']);
|
||||||
null,
|
|
||||||
null,
|
|
||||||
$tx['customer_id'],
|
|
||||||
$tx['lease_id']
|
|
||||||
);
|
|
||||||
$this->pr(21, compact('result'));
|
|
||||||
$ret['assigned'][] = $result;
|
|
||||||
if ($result['error'])
|
|
||||||
$ret['error'] = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->prReturn($ret + array('error' => false));
|
return $this->prReturn($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -288,7 +258,7 @@ class StatementEntry extends AppModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function reconciledSet($set, $query = null, $unrec = false, $if_rec_include_partial = false) {
|
function reconciledSet($set, $query = null, $unrec = false, $if_rec_include_partial = false) {
|
||||||
//$this->prFunctionLevel(array('log' => 16, 'show' => 10));
|
$this->prFunctionLevel(array('log' => 16, 'show' => 10));
|
||||||
$this->prEnter(compact('set', 'query', 'unrec', 'if_rec_include_partial'));
|
$this->prEnter(compact('set', 'query', 'unrec', 'if_rec_include_partial'));
|
||||||
$lquery = $this->reconciledSetQuery($set, $query);
|
$lquery = $this->reconciledSetQuery($set, $query);
|
||||||
$result = $this->find('all', $lquery);
|
$result = $this->find('all', $lquery);
|
||||||
@@ -396,10 +366,11 @@ class StatementEntry extends AppModel {
|
|||||||
|
|
||||||
// First, find all known credits, unless this call is to make
|
// First, find all known credits, unless this call is to make
|
||||||
// credit adjustments to a specific charge
|
// credit adjustments to a specific charge
|
||||||
// REVISIT <AP>: 20090806
|
if (empty($receipt_id)) {
|
||||||
// If the theory below is correct, we should only search for
|
|
||||||
// explicit credits if we don't have a receipt_id
|
if (!empty($charge_ids))
|
||||||
if (empty($charge_ids)) {
|
$this->INTERNAL_ERROR("Charge IDs, yet no corresponding receipt");
|
||||||
|
|
||||||
$lquery = $query;
|
$lquery = $query;
|
||||||
$lquery['conditions'][] = array('StatementEntry.type' => 'SURPLUS');
|
$lquery['conditions'][] = array('StatementEntry.type' => 'SURPLUS');
|
||||||
// REVISIT <AP>: 20090804
|
// REVISIT <AP>: 20090804
|
||||||
@@ -424,20 +395,13 @@ class StatementEntry extends AppModel {
|
|||||||
"Credits Established");
|
"Credits Established");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (empty($receipt_id))
|
// Establish credit from the (newly added) receipt
|
||||||
INTERNAL_ERROR("Can't make adjustments to a charge without a receipt ID.");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Next, establish credit from the newly added receipt
|
|
||||||
$receipt_credit = null;
|
|
||||||
if (!empty($receipt_id)) {
|
|
||||||
$lquery =
|
$lquery =
|
||||||
array('link' =>
|
array('link' =>
|
||||||
array('StatementEntry',
|
array('StatementEntry',
|
||||||
'LedgerEntry' =>
|
'LedgerEntry' =>
|
||||||
array('conditions' =>
|
array('conditions' =>
|
||||||
array('LedgerEntry.account_id !=' =>
|
array('LedgerEntry.account_id <> Transaction.account_id')
|
||||||
$this->Account->accountReceivableAccountID()),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
'conditions' => array('Transaction.id' => $receipt_id),
|
'conditions' => array('Transaction.id' => $receipt_id),
|
||||||
@@ -445,15 +409,14 @@ class StatementEntry extends AppModel {
|
|||||||
);
|
);
|
||||||
$receipt_credit = $this->Transaction->find('first', $lquery);
|
$receipt_credit = $this->Transaction->find('first', $lquery);
|
||||||
if (!$receipt_credit)
|
if (!$receipt_credit)
|
||||||
INTERNAL_ERROR("Unable to locate receipt.");
|
$this->INTERNAL_ERROR("Unable to locate receipt.");
|
||||||
|
|
||||||
//$reconciled = $this->reconciledEntries($id);
|
|
||||||
|
|
||||||
$stats = $this->Transaction->stats($receipt_id);
|
$stats = $this->Transaction->stats($receipt_id);
|
||||||
$receipt_credit['balance'] =
|
$receipt_credit['balance'] = $stats['undisbursed'];
|
||||||
$receipt_credit['Transaction']['amount'] - $stats['Disbursement']['total'];
|
|
||||||
|
|
||||||
$this->pr(18, compact('receipt_credit'),
|
$receipt_credit['receipt'] = true;
|
||||||
|
$credits = array($receipt_credit);
|
||||||
|
$this->pr(18, compact('credits'),
|
||||||
"Receipt Credit Added");
|
"Receipt Credit Added");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -476,61 +439,44 @@ class StatementEntry extends AppModel {
|
|||||||
$this->pr(18, compact('dtype', 'entries'), "Outstanding Debit Entries");
|
$this->pr(18, compact('dtype', 'entries'), "Outstanding Debit Entries");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize our list of used credits
|
|
||||||
$used_credits = array();
|
|
||||||
|
|
||||||
// REVISIT <AP>: 20090806
|
|
||||||
// Testing a theory. We should never have
|
|
||||||
// explicit credits, as well as a new receipt,
|
|
||||||
// and yet have outstanding charges.
|
|
||||||
if (!empty($credits) && !empty($receipt_credit) && !empty($charges))
|
|
||||||
INTERNAL_ERROR("Explicit credits that haven't already been applied.");
|
|
||||||
|
|
||||||
// Work through all unpaid charges, applying disbursements as we go
|
// Work through all unpaid charges, applying disbursements as we go
|
||||||
foreach ($charges AS $charge) {
|
foreach ($charges AS $charge) {
|
||||||
|
|
||||||
$this->pr(20, compact('charge'),
|
$this->pr(20, compact('charge'),
|
||||||
'Process Charge');
|
'Process Charge');
|
||||||
|
|
||||||
// Check that we have available credits.
|
|
||||||
// Technically, this isn't necessary, since the loop
|
|
||||||
// will handle everything just fine. However, this
|
|
||||||
// just saves extra processing if/when there is no
|
|
||||||
// means to resolve a charge anyway.
|
|
||||||
if (empty($credits) && empty($receipt_credit['balance'])) {
|
|
||||||
$this->pr(17, 'No more available credits');
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
$charge['balance'] = $charge['StatementEntry']['balance'];
|
$charge['balance'] = $charge['StatementEntry']['balance'];
|
||||||
while ($charge['balance'] > 0 &&
|
|
||||||
(!empty($credits) || !empty($receipt_credit['balance']))) {
|
// Use explicit credits before using the new receipt credit
|
||||||
|
foreach ($credits AS &$credit) {
|
||||||
|
if (empty($charge['balance']))
|
||||||
|
break;
|
||||||
|
if ($charge['balance'] < 0)
|
||||||
|
$this->INTERNAL_ERROR("Negative Charge Balance");
|
||||||
|
|
||||||
|
if (!isset($credit['balance']))
|
||||||
|
$credit['balance'] = $credit['StatementEntry']['amount'];
|
||||||
|
|
||||||
|
if (empty($credit['balance']))
|
||||||
|
continue;
|
||||||
|
if ($credit['balance'] < 0)
|
||||||
|
$this->INTERNAL_ERROR("Negative Credit Balance");
|
||||||
|
|
||||||
$this->pr(20, compact('charge'),
|
$this->pr(20, compact('charge'),
|
||||||
'Attempt Charge Reconciliation');
|
'Attempt Charge Reconciliation');
|
||||||
|
|
||||||
// Use explicit credits before using implicit credits
|
if (empty($credit['receipt']))
|
||||||
// (Not sure it matters though).
|
|
||||||
if (!empty($credits)) {
|
|
||||||
// Peel off the first credit available
|
|
||||||
$credit =& $credits[0];
|
|
||||||
$disbursement_date = $credit['StatementEntry']['effective_date'];
|
|
||||||
$disbursement_transaction_id = $credit['StatementEntry']['transaction_id'];
|
|
||||||
$disbursement_account_id = $credit['StatementEntry']['account_id'];
|
$disbursement_account_id = $credit['StatementEntry']['account_id'];
|
||||||
|
else
|
||||||
if (!isset($credit['balance']))
|
|
||||||
$credit['balance'] = $credit['StatementEntry']['amount'];
|
|
||||||
}
|
|
||||||
elseif (!empty($receipt_credit['balance'])) {
|
|
||||||
// Use our only receipt credit
|
|
||||||
$credit =& $receipt_credit;
|
|
||||||
$disbursement_date = $credit['Transaction']['stamp'];
|
|
||||||
$disbursement_transaction_id = $credit['Transaction']['id'];
|
|
||||||
$disbursement_account_id = $credit['LedgerEntry']['account_id'];
|
$disbursement_account_id = $credit['LedgerEntry']['account_id'];
|
||||||
}
|
|
||||||
else {
|
// REVISIT <AP>: 20090811
|
||||||
die("HOW DID WE GET HERE WITH NO SURPLUS?");
|
// Need to come up with a better strategy for handling
|
||||||
}
|
// concessions. For now, just restricting concessions
|
||||||
|
// to apply only towards rent will resolve the most
|
||||||
|
// predominant (or only) needed usage case.
|
||||||
|
if ($disbursement_account_id == $this->Account->concessionAccountID() &&
|
||||||
|
$charge['StatementEntry']['account_id'] != $this->Account->rentAccountID())
|
||||||
|
continue;
|
||||||
|
|
||||||
// Set the disbursement amount to the maximum amount
|
// Set the disbursement amount to the maximum amount
|
||||||
// possible without exceeding the charge or credit balance
|
// possible without exceeding the charge or credit balance
|
||||||
@@ -543,35 +489,67 @@ class StatementEntry extends AppModel {
|
|||||||
|
|
||||||
$this->pr(20, compact('credit'),
|
$this->pr(20, compact('credit'),
|
||||||
($credit['balance'] > 0 ? 'Utilized' : 'Exhausted') .
|
($credit['balance'] > 0 ? 'Utilized' : 'Exhausted') .
|
||||||
(!empty($credits) ? ' Credit' : ' Receipt'));
|
(empty($credit['receipt']) ? ' Credit' : ' Receipt'));
|
||||||
|
|
||||||
if ($credit['balance'] < 0)
|
if (strtotime($charge['StatementEntry']['effective_date']) >
|
||||||
die("HOW DID WE END UP WITH NEGATIVE SURPLUS BALANCE?");
|
strtotime($credit['StatementEntry']['effective_date']))
|
||||||
|
$disbursement_edate = $charge['StatementEntry']['effective_date'];
|
||||||
|
else
|
||||||
|
$disbursement_edate = $credit['StatementEntry']['effective_date'];
|
||||||
|
|
||||||
// If we've exhausted the credit, get it out of the
|
if (empty($credit['receipt'])) {
|
||||||
// available credit pool (but keep track of it for later).
|
// Explicit Credit
|
||||||
if ($credit['balance'] <= 0 && !empty($credits))
|
$result = $this->Transaction->addTransactionEntries
|
||||||
$used_credits[] = array_shift($credits);
|
(array('include_ledger_entry' => true,
|
||||||
|
'include_statement_entry' => true),
|
||||||
|
array('type' => 'INVOICE',
|
||||||
|
'id' => $credit['StatementEntry']['transaction_id'],
|
||||||
|
'account_id' => $this->Account->accountReceivableAccountID(),
|
||||||
|
'crdr' => 'CREDIT',
|
||||||
|
'customer_id' => $charge['StatementEntry']['customer_id'],
|
||||||
|
'lease_id' => $charge['StatementEntry']['lease_id'],
|
||||||
|
),
|
||||||
|
array
|
||||||
|
(array('type' => $disbursement_type,
|
||||||
|
'effective_date' => $disbursement_edate,
|
||||||
|
'account_id' => $credit['StatementEntry']['account_id'],
|
||||||
|
'amount' => $disbursement_amount,
|
||||||
|
'charge_entry_id' => $charge['StatementEntry']['id'],
|
||||||
|
),
|
||||||
|
));
|
||||||
|
|
||||||
// Add a disbursement that uses the available credit to pay the charge
|
$ret['Disbursement'][] = $result;
|
||||||
$disbursement = array('type' => $disbursement_type,
|
if ($result['error'])
|
||||||
'account_id' => $disbursement_account_id,
|
$ret['error'] = true;
|
||||||
'amount' => $disbursement_amount,
|
}
|
||||||
'effective_date' => $disbursement_date,
|
else {
|
||||||
'transaction_id' => $disbursement_transaction_id,
|
// Receipt Credit
|
||||||
'customer_id' => $charge['StatementEntry']['customer_id'],
|
|
||||||
'lease_id' => $charge['StatementEntry']['lease_id'],
|
|
||||||
'charge_entry_id' => $charge['StatementEntry']['id'],
|
|
||||||
'comment' => null,
|
|
||||||
);
|
|
||||||
|
|
||||||
$this->pr(20, compact('disbursement'),
|
if (strtotime($charge['StatementEntry']['effective_date']) >
|
||||||
'New Disbursement Entry');
|
strtotime($credit['Transaction']['stamp']))
|
||||||
|
$disbursement_edate = $charge['StatementEntry']['effective_date'];
|
||||||
|
else
|
||||||
|
$disbursement_edate = $credit['Transaction']['stamp'];
|
||||||
|
|
||||||
$result = $this->addStatementEntry($disbursement);
|
// Add a disbursement that uses the available credit to pay the charge
|
||||||
$ret['Disbursement'][] = $result;
|
$disbursement =
|
||||||
if ($result['error'])
|
array('type' => $disbursement_type,
|
||||||
$ret['error'] = true;
|
'effective_date' => $disbursement_edate,
|
||||||
|
'amount' => $disbursement_amount,
|
||||||
|
'account_id' => $credit['LedgerEntry']['account_id'],
|
||||||
|
'transaction_id' => $credit['Transaction']['id'],
|
||||||
|
'customer_id' => $charge['StatementEntry']['customer_id'],
|
||||||
|
'lease_id' => $charge['StatementEntry']['lease_id'],
|
||||||
|
'charge_entry_id' => $charge['StatementEntry']['id'],
|
||||||
|
'comment' => null,
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->pr(20, compact('disbursement'), 'New Disbursement Entry');
|
||||||
|
$result = $this->addStatementEntry($disbursement);
|
||||||
|
$ret['Disbursement'][] = $result;
|
||||||
|
if ($result['error'])
|
||||||
|
$ret['error'] = true;
|
||||||
|
}
|
||||||
|
|
||||||
// Adjust the charge balance to reflect the new disbursement
|
// Adjust the charge balance to reflect the new disbursement
|
||||||
$charge['balance'] -= $disbursement_amount;
|
$charge['balance'] -= $disbursement_amount;
|
||||||
@@ -581,37 +559,47 @@ class StatementEntry extends AppModel {
|
|||||||
if ($charge['balance'] <= 0)
|
if ($charge['balance'] <= 0)
|
||||||
$this->pr(20, 'Fully Paid Charge');
|
$this->pr(20, 'Fully Paid Charge');
|
||||||
}
|
}
|
||||||
|
// Break the $credit reference to avoid future problems
|
||||||
|
unset($credit);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Partially used credits must be added to the used list
|
$this->pr(18, compact('credits'),
|
||||||
if (isset($credits[0]['applied']))
|
'Disbursements complete');
|
||||||
$used_credits[] = array_shift($credits);
|
|
||||||
|
|
||||||
$this->pr(18, compact('credits', 'used_credits', 'receipt_credit'),
|
|
||||||
'Disbursements added');
|
|
||||||
|
|
||||||
// Clean up any explicit credits that have been used
|
// Clean up any explicit credits that have been used
|
||||||
foreach ($used_credits AS $credit) {
|
foreach ($credits AS $credit) {
|
||||||
|
if (!empty($credit['receipt']))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (empty($credit['applied']))
|
||||||
|
continue;
|
||||||
|
|
||||||
if ($credit['balance'] > 0) {
|
if ($credit['balance'] > 0) {
|
||||||
$this->pr(20, compact('credit'),
|
$this->pr(20, compact('credit'),
|
||||||
'Update Credit Entry');
|
'Update Credit Entry');
|
||||||
|
|
||||||
$this->id = $credit['StatementEntry']['id'];
|
$this->id = $credit['StatementEntry']['id'];
|
||||||
$this->saveField('amount', $credit['balance']);
|
$this->saveField('amount', $credit['balance']);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$this->pr(20, compact('credit'),
|
$this->pr(20, compact('credit'),
|
||||||
'Delete Exhausted Credit Entry');
|
'Delete Exhausted Credit Entry');
|
||||||
|
|
||||||
$this->del($credit['StatementEntry']['id'], false);
|
$this->delete($credit['StatementEntry']['id'], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert non-exhausted receipt credit to an explicit one
|
// Check for any implicit receipt credits, converting
|
||||||
if (!empty($receipt_credit['balance'])) {
|
// into explicit credits if there is a remaining balance.
|
||||||
$credit =& $receipt_credit;
|
foreach ($credits AS $credit) {
|
||||||
|
if (empty($credit['receipt']))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (empty($credit['balance']))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
// See if there is an existing explicit credit
|
||||||
|
// for this transaction.
|
||||||
$explicit_credit = $this->find
|
$explicit_credit = $this->find
|
||||||
('first', array('contain' => false,
|
('first', array('contain' => false,
|
||||||
'conditions' =>
|
'conditions' =>
|
||||||
@@ -619,30 +607,31 @@ class StatementEntry extends AppModel {
|
|||||||
array('type' => 'SURPLUS')),
|
array('type' => 'SURPLUS')),
|
||||||
));
|
));
|
||||||
|
|
||||||
if (empty($explicit_credit)) {
|
if (!empty($explicit_credit)) {
|
||||||
$this->pr(18, compact('credit'),
|
// REVISIT <AP>: 20090815
|
||||||
'Create Explicit Credit');
|
// Testing whether or not this case occurs
|
||||||
|
$this->INTERNAL_ERROR('Existing explicit credit unexpected');
|
||||||
|
|
||||||
$result = $this->addStatementEntry
|
// Since there IS an existing explicit credit, we must update
|
||||||
(array('type' => 'SURPLUS',
|
// its balance instead of creating a new one, since it has
|
||||||
'account_id' => $credit['LedgerEntry']['account_id'],
|
// already been incorporated in the overall credit balance.
|
||||||
'amount' => $credit['balance'],
|
// If we were to create a new one, we would erroneously create
|
||||||
'effective_date' => $credit['Transaction']['stamp'],
|
// an excess of credit available.
|
||||||
'transaction_id' => $credit['Transaction']['id'],
|
|
||||||
'customer_id' => $customer_id,
|
|
||||||
'lease_id' => $lease_id,
|
|
||||||
));
|
|
||||||
$ret['Credit'] = $result;
|
|
||||||
if ($result['error'])
|
|
||||||
$ret['error'] = true;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$this->pr(18, compact('explicit_credit', 'credit'),
|
$this->pr(18, compact('explicit_credit', 'credit'),
|
||||||
'Update Explicit Credit');
|
'Update existing explicit credit');
|
||||||
$EC = new StatementEntry();
|
$EC = new StatementEntry();
|
||||||
$EC->id = $explicit_credit['StatementEntry']['id'];
|
$EC->id = $explicit_credit['StatementEntry']['id'];
|
||||||
$EC->saveField('amount', $credit['balance']);
|
$EC->saveField('amount', $credit['balance']);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!empty($ret['receipt_balance']))
|
||||||
|
$this->INTERNAL_ERROR('Only one receipt expected in assignCredits');
|
||||||
|
|
||||||
|
// Give caller the information necessary to create an explicit
|
||||||
|
// credit from the passed receipt, which we've not exhausted.
|
||||||
|
$this->pr(18, compact('credit'), 'Convert to explicit credit');
|
||||||
|
$ret['receipt_balance'] = $credit['balance'];
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->prReturn($ret + array('error' => false));
|
return $this->prReturn($ret + array('error' => false));
|
||||||
@@ -656,7 +645,7 @@ class StatementEntry extends AppModel {
|
|||||||
* - Returns summary data from the requested statement entry
|
* - Returns summary data from the requested statement entry
|
||||||
*/
|
*/
|
||||||
function stats($id = null, $query = null) {
|
function stats($id = null, $query = null) {
|
||||||
//$this->prFunctionLevel(array('log' => 19, 'show' => 10));
|
$this->prFunctionLevel(array('log' => 16, 'show' => 10));
|
||||||
$this->prEnter(compact('id', 'query'));
|
$this->prEnter(compact('id', 'query'));
|
||||||
|
|
||||||
$this->queryInit($query);
|
$this->queryInit($query);
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ class Tender extends AppModel {
|
|||||||
),
|
),
|
||||||
'NsfTransaction' => array(
|
'NsfTransaction' => array(
|
||||||
'className' => 'Transaction',
|
'className' => 'Transaction',
|
||||||
|
'dependent' => true,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -17,11 +18,11 @@ class Tender extends AppModel {
|
|||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
* function: beforeSave
|
* function: afterSave
|
||||||
* - Performs any work needed before the save occurs
|
* - Performs any work needed after the save occurs
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function afterSave() {
|
function afterSave($created) {
|
||||||
// Come up with a (not necessarily unique) name for the tender.
|
// Come up with a (not necessarily unique) name for the tender.
|
||||||
// For checks & money orders, this will be based on the check
|
// For checks & money orders, this will be based on the check
|
||||||
// number. For other types of tender, we'll just use the
|
// number. For other types of tender, we'll just use the
|
||||||
@@ -45,10 +46,32 @@ class Tender extends AppModel {
|
|||||||
if ($newname !== $this->field('name'))
|
if ($newname !== $this->field('name'))
|
||||||
$this->saveField('name', $newname);
|
$this->saveField('name', $newname);
|
||||||
|
|
||||||
return parent::afterSave();
|
return parent::afterSave($created);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
* function: beforeDelete
|
||||||
|
* - Performs any work needed before the delete occurs
|
||||||
|
*/
|
||||||
|
|
||||||
|
function beforeDelete($cascade = true) {
|
||||||
|
// REVISIT <AP>: 20090814
|
||||||
|
// Experimental, and incomplete mechanism to protect
|
||||||
|
// against trying to delete data that shouldn't be deleted.
|
||||||
|
|
||||||
|
$deposit_id = $this->field('deposit_transaction_id');
|
||||||
|
pr(compact('deposit_id'));
|
||||||
|
// If this tender has already been deposited, it would
|
||||||
|
// be a rats nest to figure out how to delete this tender.
|
||||||
|
if (!empty($deposit_id))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return parent::beforeDelete($cascade);
|
||||||
|
}
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
@@ -78,7 +101,7 @@ class Tender extends AppModel {
|
|||||||
function addTender($tender) {
|
function addTender($tender) {
|
||||||
$this->prEnter(compact('tender'));
|
$this->prEnter(compact('tender'));
|
||||||
|
|
||||||
$ret = array();
|
$ret = array('data' => $tender);
|
||||||
if (!$this->verifyTender($tender))
|
if (!$this->verifyTender($tender))
|
||||||
return $this->prReturn(array('error' => true) + $ret);
|
return $this->prReturn(array('error' => true) + $ret);
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -181,6 +181,16 @@ class Unit extends AppModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
**************************************************************************
|
||||||
|
* function: update
|
||||||
|
* - Update any cached or calculated fields
|
||||||
|
*/
|
||||||
|
function update($id) {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
|
|||||||
@@ -15,8 +15,8 @@ echo '<div class="account collected">' . "\n";
|
|||||||
|
|
||||||
// Reset the form
|
// Reset the form
|
||||||
function resetForm() {
|
function resetForm() {
|
||||||
<?php /* REVISIT <AP>: 20090810; Hate to do this, but first data is wrong... */ ?>
|
// Kick off the grid
|
||||||
setTimeout(updateEntriesGrid, 1000);
|
updateEntriesGrid();
|
||||||
}
|
}
|
||||||
|
|
||||||
function onGridLoadComplete() {
|
function onGridLoadComplete() {
|
||||||
@@ -40,12 +40,15 @@ function updateEntriesGrid() {
|
|||||||
|
|
||||||
$('#collected-total').html('Calculating...');
|
$('#collected-total').html('Calculating...');
|
||||||
$('#collected-entries-jqGrid').clearGridData();
|
$('#collected-entries-jqGrid').clearGridData();
|
||||||
$('#collected-entries-jqGrid').setPostDataItem('dynamic_post', serialize(dynamic_post));
|
$('#collected-entries-jqGrid').setPostDataItem('dynamic_post_replace', serialize(dynamic_post));
|
||||||
$('#collected-entries-jqGrid')
|
$('#collected-entries-jqGrid')
|
||||||
.setGridParam({ page: 1 })
|
.setGridParam({ page: 1 })
|
||||||
.trigger("reloadGrid");
|
.trigger("reloadGrid");
|
||||||
|
|
||||||
//$('#collected-entries .HeaderButton').click();
|
//$('#debug').html("<PRE>\n"+htmlEncode(dump($('#collected-entries-jqGrid').getGridParam()))+"\n</PRE>")
|
||||||
|
var gridstate = $('#collected-entries-jqGrid').getGridParam('gridstate');
|
||||||
|
if (gridstate == 'hidden')
|
||||||
|
$('#collected-entries .HeaderButton').click();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -162,12 +165,12 @@ echo $this->element('statement_entries', array
|
|||||||
'grid_div_id' => 'collected-entries',
|
'grid_div_id' => 'collected-entries',
|
||||||
'grid_div_class' => 'text-below',
|
'grid_div_class' => 'text-below',
|
||||||
'grid_events' => array('loadComplete' => 'onGridLoadComplete()'),
|
'grid_events' => array('loadComplete' => 'onGridLoadComplete()'),
|
||||||
//'grid_setup' => array('hiddengrid' => true),
|
'grid_setup' => array('hiddengrid' => true),
|
||||||
//'caption' => '<SPAN id="receipt-charges-caption"></SPAN>',
|
|
||||||
'caption' => 'Collected ' . Inflector::pluralize($account['name']),
|
'caption' => 'Collected ' . Inflector::pluralize($account['name']),
|
||||||
'filter' => array(//'StatementEntry.type' => 'DISBURSEMENT',
|
'action' => 'collected',
|
||||||
'ChargeEntry.account_id' => $account['id']),
|
'filter' => array('ChargeEntry.account_id' => $account['id']),
|
||||||
'exclude' => array('Account', 'Charge', 'Type'),
|
'include' => array('Amount'),
|
||||||
|
'exclude' => array(/*'Type',*/ 'Debit', 'Credit'),
|
||||||
),
|
),
|
||||||
));
|
));
|
||||||
|
|
||||||
@@ -202,5 +205,3 @@ echo '</div>' . "\n";
|
|||||||
echo '</div>' . "\n";
|
echo '</div>' . "\n";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<a href="#" onClick="$('#debug').html(''); return false;">Clear Debug Output</a>
|
|
||||||
|
|||||||
@@ -81,6 +81,33 @@ function resetForm() {
|
|||||||
updateCharges($("#customer-id").val());
|
updateCharges($("#customer-id").val());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateCharges(id) {
|
||||||
|
$('#charge-entries-jqGrid').clearGridData();
|
||||||
|
$("#receipt-balance").html("Calculating...");
|
||||||
|
$("#receipt-charges-caption").html("Please Wait...");
|
||||||
|
|
||||||
|
var custom = new Array();
|
||||||
|
custom['customer_id'] = id;
|
||||||
|
|
||||||
|
var dynamic_post = new Array();
|
||||||
|
dynamic_post['custom'] = custom;
|
||||||
|
|
||||||
|
$('#charge-entries-jqGrid').setPostDataItem('dynamic_post_replace', serialize(dynamic_post));
|
||||||
|
$('#charge-entries-jqGrid')
|
||||||
|
.setGridParam({ page: 1 })
|
||||||
|
.trigger("reloadGrid");
|
||||||
|
|
||||||
|
var gridstate = $('#charge-entries-jqGrid').getGridParam('gridstate');
|
||||||
|
if (gridstate == 'hidden')
|
||||||
|
$('#charge-entries .HeaderButton').click();
|
||||||
|
}
|
||||||
|
|
||||||
|
function onGridLoadComplete() {
|
||||||
|
var userdata = $('#charge-entries-jqGrid').getGridParam('userData');
|
||||||
|
$('#receipt-balance').html(fmtCurrency(userdata['balance']));
|
||||||
|
$("#receipt-charges-caption").html("Outstanding Charges");
|
||||||
|
}
|
||||||
|
|
||||||
function onRowSelect(grid_id, customer_id) {
|
function onRowSelect(grid_id, customer_id) {
|
||||||
// Set the customer id that will be returned with the form
|
// Set the customer id that will be returned with the form
|
||||||
$("#customer-id").val(customer_id);
|
$("#customer-id").val(customer_id);
|
||||||
@@ -91,7 +118,10 @@ function onRowSelect(grid_id, customer_id) {
|
|||||||
// This is not intended as a long term solution,
|
// This is not intended as a long term solution,
|
||||||
// but I need a way to enter data and then view
|
// but I need a way to enter data and then view
|
||||||
// the results. This link will help.
|
// the results. This link will help.
|
||||||
$("#receipt-customer-id").html('<A HREF="/pmgr/site/customers/view/' +
|
$("#receipt-customer-id").html('<A HREF="' +
|
||||||
|
"<?php echo $html->url(array('controller' => 'customers',
|
||||||
|
'action' => 'view')); ?>"
|
||||||
|
+ "/" +
|
||||||
$(grid_id).getCell(customer_id, 'Customer-id').replace(/^#/,'') +
|
$(grid_id).getCell(customer_id, 'Customer-id').replace(/^#/,'') +
|
||||||
'">' +
|
'">' +
|
||||||
$(grid_id).getCell(customer_id, 'Customer-id') +
|
$(grid_id).getCell(customer_id, 'Customer-id') +
|
||||||
@@ -214,48 +244,6 @@ function switchPaymentType(paymentid_base, paymentid, radioid) {
|
|||||||
$("#"+paymentid_base+"-"+paymentid+"-"+type_id).slideDown();
|
$("#"+paymentid_base+"-"+paymentid+"-"+type_id).slideDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateChargesGrid(idlist) {
|
|
||||||
var dynamic_post = new Array();
|
|
||||||
dynamic_post['idlist'] = idlist;
|
|
||||||
|
|
||||||
$('#charge-entries-jqGrid').setPostDataItem('dynamic_post_replace', serialize(dynamic_post));
|
|
||||||
$('#charge-entries-jqGrid')
|
|
||||||
.setGridParam({ page: 1 })
|
|
||||||
.trigger("reloadGrid");
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateCharges(id) {
|
|
||||||
var url = '<?php echo ($html->url(array("controller" => $this->params["controller"],
|
|
||||||
"action" => "unreconciled"))); ?>';
|
|
||||||
url += '/'+id;
|
|
||||||
|
|
||||||
$('#charge-entries-jqGrid').clearGridData();
|
|
||||||
$("#receipt-balance").html("Calculating...");
|
|
||||||
$("#receipt-charges-caption").html("Please Wait...");
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
type: "GET",
|
|
||||||
url: url,
|
|
||||||
dataType: "xml",
|
|
||||||
success: function(xml) {
|
|
||||||
var ids = new Array();
|
|
||||||
$('entry',xml).each(function(i){
|
|
||||||
ids.push($(this).attr('id'));
|
|
||||||
});
|
|
||||||
$('#receipt-balance').html(fmtCurrency($('entries',xml).attr('balance')));
|
|
||||||
$("#receipt-charges-caption").html("Outstanding Charges");
|
|
||||||
updateChargesGrid(ids);
|
|
||||||
},
|
|
||||||
error: function(XMLHttpRequest, textStatus, errorThrown) {
|
|
||||||
/* alert('ERROR'); */
|
|
||||||
/* $('#debug').html('<P>request<BR>'+escape(XMLHttpRequest)); */
|
|
||||||
/* $('#debug').append('<P>status<BR>'+escape(textStatus)); */
|
|
||||||
/* $('#debug').append('<P>error<BR>'+escape(errorThrown)); */
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
--></script>
|
--></script>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
@@ -303,17 +291,19 @@ echo ('<DIV CLASS="receipt grid-selection-text">' .
|
|||||||
|
|
||||||
|
|
||||||
echo $this->element('statement_entries', array
|
echo $this->element('statement_entries', array
|
||||||
(// Element configuration
|
(// Grid configuration
|
||||||
'account_ftype' => 'credit',
|
|
||||||
'limit' => 8,
|
|
||||||
|
|
||||||
// Grid configuration
|
|
||||||
'config' => array
|
'config' => array
|
||||||
(
|
(
|
||||||
'grid_div_id' => 'charge-entries',
|
'grid_div_id' => 'charge-entries',
|
||||||
'grid_div_class' => 'text-below',
|
'grid_div_class' => 'text-below',
|
||||||
|
'grid_events' => array('loadComplete' => 'onGridLoadComplete()'),
|
||||||
|
'grid_setup' => array('hiddengrid' => true),
|
||||||
'caption' => '<SPAN id="receipt-charges-caption"></SPAN>',
|
'caption' => '<SPAN id="receipt-charges-caption"></SPAN>',
|
||||||
'rows' => $charges,
|
'action' => 'unreconciled',
|
||||||
|
'exclude' => array('Customer', 'Type', 'Debit', 'Credit'),
|
||||||
|
'include' => array('Applied', 'Balance'),
|
||||||
|
'remap' => array('Applied' => 'Paid'),
|
||||||
|
'limit' => 8,
|
||||||
),
|
),
|
||||||
));
|
));
|
||||||
|
|
||||||
@@ -393,19 +383,18 @@ Configure::write('debug', '0');
|
|||||||
showCurrentAtPos: 0,
|
showCurrentAtPos: 0,
|
||||||
dateFormat: 'mm/dd/yy' });
|
dateFormat: 'mm/dd/yy' });
|
||||||
|
|
||||||
datepickerNow('TransactionStamp');
|
|
||||||
|
|
||||||
$("#receipt-customer-id").html("INTERNAL ERROR");
|
$("#receipt-customer-id").html("INTERNAL ERROR");
|
||||||
$("#receipt-customer-name").html("INTERNAL ERROR");
|
$("#receipt-customer-name").html("INTERNAL ERROR");
|
||||||
$("#receipt-balance").html("INTERNAL ERROR");
|
$("#receipt-balance").html("INTERNAL ERROR");
|
||||||
$("#receipt-charges-caption").html("Outstanding Charges");
|
$("#receipt-charges-caption").html("Outstanding Charges");
|
||||||
|
|
||||||
resetForm();
|
|
||||||
|
|
||||||
<?php if (isset($customer['id'])): ?>
|
<?php if (isset($customer['id'])): ?>
|
||||||
$("#customer-id").val(<?php echo $customer['id']; ?>);
|
$("#customer-id").val(<?php echo $customer['id']; ?>);
|
||||||
//$("#receipt-customer-id").html("<?php echo '#'.$customer['id']; ?>");
|
//$("#receipt-customer-id").html("<?php echo '#'.$customer['id']; ?>");
|
||||||
$("#receipt-customer-id").html('<A HREF="/pmgr/site/customers/view/' +
|
$("#receipt-customer-id").html('<A HREF="' +
|
||||||
|
"<?php echo $html->url(array('controller' => 'customers',
|
||||||
|
'action' => 'view')); ?>"
|
||||||
|
+ "/" +
|
||||||
"<?php echo $customer['id']; ?>" +
|
"<?php echo $customer['id']; ?>" +
|
||||||
'">#' +
|
'">#' +
|
||||||
"<?php echo $customer['id']; ?>" +
|
"<?php echo $customer['id']; ?>" +
|
||||||
@@ -417,6 +406,14 @@ Configure::write('debug', '0');
|
|||||||
onGridState(null, 'visible');
|
onGridState(null, 'visible');
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
resetForm();
|
||||||
|
datepickerNow('TransactionStamp');
|
||||||
|
|
||||||
|
<?php if ($this->params['dev']): ?>
|
||||||
|
$('#output-debug').html('Post Output');
|
||||||
|
$('#output-debug').show();
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
});
|
});
|
||||||
--></script>
|
--></script>
|
||||||
|
|
||||||
|
|||||||
@@ -52,8 +52,6 @@ $ledgers = array('debit' => $entry['DebitLedger'],
|
|||||||
'credit' => $entry['CreditLedger']);
|
'credit' => $entry['CreditLedger']);
|
||||||
$entries = array('debit' => $entry['DebitEntry'],
|
$entries = array('debit' => $entry['DebitEntry'],
|
||||||
'credit' => $entry['CreditEntry']);
|
'credit' => $entry['CreditEntry']);
|
||||||
$customer = $entry['Customer'];
|
|
||||||
$lease = $entry['Lease'];
|
|
||||||
$entry = $entry['DoubleEntry'];
|
$entry = $entry['DoubleEntry'];
|
||||||
|
|
||||||
$rows = array();
|
$rows = array();
|
||||||
@@ -63,21 +61,7 @@ $rows[] = array('Transaction', $html->link('#'.$transaction['id'],
|
|||||||
'action' => 'view',
|
'action' => 'view',
|
||||||
$transaction['id'])));
|
$transaction['id'])));
|
||||||
$rows[] = array('Timestamp', FormatHelper::datetime($transaction['stamp']));
|
$rows[] = array('Timestamp', FormatHelper::datetime($transaction['stamp']));
|
||||||
$rows[] = array('Effective', FormatHelper::date($entry['effective_date']));
|
$rows[] = array('Comment', $entry['comment']);
|
||||||
//$rows[] = array('Through', FormatHelper::date($entry['through_date']));
|
|
||||||
$rows[] = array('Customer', (isset($customer['name'])
|
|
||||||
? $html->link($customer['name'],
|
|
||||||
array('controller' => 'customers',
|
|
||||||
'action' => 'view',
|
|
||||||
$customer['id']))
|
|
||||||
: null));
|
|
||||||
$rows[] = array('Lease', (isset($lease['id'])
|
|
||||||
? $html->link('#'.$lease['id'],
|
|
||||||
array('controller' => 'leases',
|
|
||||||
'action' => 'view',
|
|
||||||
$lease['id']))
|
|
||||||
: null));
|
|
||||||
$rows[] = array('Comment', $entry['comment']);
|
|
||||||
|
|
||||||
echo $this->element('table',
|
echo $this->element('table',
|
||||||
array('class' => 'item ledger-entry detail',
|
array('class' => 'item ledger-entry detail',
|
||||||
@@ -132,8 +116,8 @@ foreach ($ledgers AS $type => $ledger) {
|
|||||||
array('controller' => 'ledgers',
|
array('controller' => 'ledgers',
|
||||||
'action' => 'view',
|
'action' => 'view',
|
||||||
$ledger['id'])));
|
$ledger['id'])));
|
||||||
$rows[] = array('Amount', FormatHelper::currency($entry['amount']));
|
$rows[] = array('Amount', FormatHelper::currency($entries[$type]['amount']));
|
||||||
$rows[] = array('Effect', $ledger['Account']['ftype'] == $type ? 'INCREASE' : 'DECREASE');
|
//$rows[] = array('Effect', $ledger['Account']['ftype'] == $type ? 'INCREASE' : 'DECREASE');
|
||||||
|
|
||||||
echo $this->element('table',
|
echo $this->element('table',
|
||||||
array('class' => array('item', $type, 'detail'),
|
array('class' => array('item', $type, 'detail'),
|
||||||
|
|||||||
@@ -63,7 +63,6 @@ $javascript->link('pmgr_jqGrid', false);
|
|||||||
// as part of the data fetch.
|
// as part of the data fetch.
|
||||||
$url = $html->url(array('controller' => $controller,
|
$url = $html->url(array('controller' => $controller,
|
||||||
'action' => 'gridData',
|
'action' => 'gridData',
|
||||||
'debug' => 0,
|
|
||||||
));
|
));
|
||||||
|
|
||||||
// Create extra parameters that jqGrid will pass to our
|
// Create extra parameters that jqGrid will pass to our
|
||||||
@@ -202,11 +201,11 @@ foreach (array_merge(array('loadComplete' => '', 'loadError' => ''),
|
|||||||
|
|
||||||
if ($event == 'loadComplete') {
|
if ($event == 'loadComplete') {
|
||||||
$grid_events[$event] =
|
$grid_events[$event] =
|
||||||
array('--special' => "function($params) {url=jQuery('#{$grid_id}').getGridParam('url');url=url.replace(/\/debug.*$/,'?'); pd=jQuery('#{$grid_id}').getPostData();$.each(pd,function(i){ url+=i+'='+escape(pd[i])+'&'; }); jQuery('#{$grid_id}-query').html('<A HREF=\"'+url+'\">Grid Query</A><BR>'); $statement;}");
|
array('--special' => "function($params) {url=jQuery('#{$grid_id}').getGridParam('url');url=url+'/debug:1?'; pd=jQuery('#{$grid_id}').getPostData();$.each(pd,function(i){ url+=i+'='+escape(pd[i])+'&'; }); jQuery('#{$grid_id}-query').html('<A HREF=\"'+url+'\">Grid Query</A><BR>'); $statement;}");
|
||||||
}
|
}
|
||||||
elseif ($event == 'loadError') {
|
elseif ($event == 'loadError') {
|
||||||
$grid_events[$event] =
|
$grid_events[$event] =
|
||||||
array('--special' => "function($params) {url=jQuery('#{$grid_id}').getGridParam('url');url=url.replace(/\/debug.*$/,'?'); pd=jQuery('#{$grid_id}').getPostData();$.each(pd,function(i){ url+=i+'='+escape(pd[i])+'&'; }); jQuery('#{$grid_id}-query').html('<A HREF=\"'+url+'\">Grid Error Query</A><BR>'); $statement;}");
|
array('--special' => "function($params) {url=jQuery('#{$grid_id}').getGridParam('url');url=url+'/debug:1?'; pd=jQuery('#{$grid_id}').getPostData();$.each(pd,function(i){ url+=i+'='+escape(pd[i])+'&'; }); jQuery('#{$grid_id}-query').html('<A HREF=\"'+url+'\">Grid Error Query</A><BR>'); $statement;}");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$grid_events[$event] =
|
$grid_events[$event] =
|
||||||
|
|||||||
@@ -12,9 +12,20 @@ $cols['Signed'] = array('index' => 'Lease.lease_date', 'formatter' => 'dat
|
|||||||
$cols['Move-In'] = array('index' => 'Lease.movein_date', 'formatter' => 'date');
|
$cols['Move-In'] = array('index' => 'Lease.movein_date', 'formatter' => 'date');
|
||||||
$cols['Move-Out'] = array('index' => 'Lease.moveout_date', 'formatter' => 'date');
|
$cols['Move-Out'] = array('index' => 'Lease.moveout_date', 'formatter' => 'date');
|
||||||
$cols['Closed'] = array('index' => 'Lease.close_date', 'formatter' => 'date');
|
$cols['Closed'] = array('index' => 'Lease.close_date', 'formatter' => 'date');
|
||||||
|
$cols['Paid-Thru'] = array('index' => 'Lease.paid_through_date', 'formatter' => 'date');
|
||||||
|
$cols['Status'] = array('index' => 'status', 'formatter' => 'enum', 'width' => 100);
|
||||||
$cols['Balance'] = array('index' => 'balance', 'formatter' => 'currency');
|
$cols['Balance'] = array('index' => 'balance', 'formatter' => 'currency');
|
||||||
$cols['Comment'] = array('index' => 'Lease.comment', 'formatter' => 'comment');
|
$cols['Comment'] = array('index' => 'Lease.comment', 'formatter' => 'comment');
|
||||||
|
|
||||||
|
if (!empty($this->params['action'])) {
|
||||||
|
if ($this->params['action'] === 'closed')
|
||||||
|
$grid->invalidFields(array('Paid-Thru', 'Status'));
|
||||||
|
elseif ($this->params['action'] === 'active')
|
||||||
|
$grid->invalidFields(array('Closed'));
|
||||||
|
elseif ($this->params['action'] === 'delinquent')
|
||||||
|
$grid->invalidFields(array('Closed'));
|
||||||
|
}
|
||||||
|
|
||||||
// Render the grid
|
// Render the grid
|
||||||
$grid
|
$grid
|
||||||
->columns($cols)
|
->columns($cols)
|
||||||
@@ -22,4 +33,4 @@ $grid
|
|||||||
->defaultFields(array('LeaseID', 'Lease'))
|
->defaultFields(array('LeaseID', 'Lease'))
|
||||||
->searchFields(array('Customer', 'Unit'))
|
->searchFields(array('Customer', 'Unit'))
|
||||||
->render($this, isset($config) ? $config : null,
|
->render($this, isset($config) ? $config : null,
|
||||||
array_diff(array_keys($cols), array('Comment')));
|
array_diff(array_keys($cols), array('Signed', 'Status', 'Comment')));
|
||||||
|
|||||||
@@ -21,7 +21,11 @@ $cols['Type'] = array('index' => 'StatementEntry.type', 'formatter' =>
|
|||||||
$cols['Debit'] = array('index' => 'charge', 'formatter' => 'currency');
|
$cols['Debit'] = array('index' => 'charge', 'formatter' => 'currency');
|
||||||
$cols['Credit'] = array('index' => 'disbursement', 'formatter' => 'currency');
|
$cols['Credit'] = array('index' => 'disbursement', 'formatter' => 'currency');
|
||||||
|
|
||||||
|
$cols['Amount'] = array('index' => "StatementEntry.amount", 'formatter' => 'currency');
|
||||||
$cols['Applied'] = array('index' => "applied", 'formatter' => 'currency');
|
$cols['Applied'] = array('index' => "applied", 'formatter' => 'currency');
|
||||||
|
// 'balance' is already in use as part of charge/disbursement/balance.
|
||||||
|
// 'unapplied' isn't quite the right term, but it's not customer visible.
|
||||||
|
$cols['Balance'] = array('index' => "unapplied", 'formatter' => 'currency');
|
||||||
$cols['Sub-Total'] = array('index' => 'subtotal-balance', 'formatter' => 'currency', 'sortable' => false);
|
$cols['Sub-Total'] = array('index' => 'subtotal-balance', 'formatter' => 'currency', 'sortable' => false);
|
||||||
|
|
||||||
|
|
||||||
@@ -40,6 +44,6 @@ $grid
|
|||||||
->searchFields(array('Customer', 'Unit'))
|
->searchFields(array('Customer', 'Unit'))
|
||||||
->render($this, isset($config) ? $config : null,
|
->render($this, isset($config) ? $config : null,
|
||||||
array_diff(array_keys($cols), array('Through', 'Lease',
|
array_diff(array_keys($cols), array('Through', 'Lease',
|
||||||
'Applied', 'Sub-Total',
|
'Amount', 'Applied', 'Balance', 'Sub-Total',
|
||||||
'Comment')));
|
'Comment')));
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?php /* -*- mode:PHP -*- */
|
||||||
|
if (!empty($message))
|
||||||
|
echo $message;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -24,9 +24,21 @@ class FormatHelper extends AppHelper {
|
|||||||
return '-';
|
return '-';
|
||||||
//return null;
|
//return null;
|
||||||
|
|
||||||
$currency = self::$number->currency($amount,
|
// Use of the $number->currency() function results in the clever,
|
||||||
isset($dollar_sign) ? $dollar_sign : 'USD',
|
// but problematic, use of cents for amounts less than $1. For
|
||||||
$spans ? array('before'=>'', 'after'=>'') : array());
|
// example, 50 cents is shown as '50c', not '$0.50'. We want to
|
||||||
|
// keep everything in terms of dollars, especially for the cases
|
||||||
|
// where this result is placed into a form for input. 50 cents
|
||||||
|
// will end up as 50 dollars upon submission :-(
|
||||||
|
$currency = self::$number->format
|
||||||
|
(abs($amount),
|
||||||
|
array('places' => 2,
|
||||||
|
'before' => $spans ? '' : (isset($dollar_sign) ? $dollar_sign : '$'),
|
||||||
|
'after' => $spans ? '' : null,
|
||||||
|
));
|
||||||
|
|
||||||
|
if ($amount < 0)
|
||||||
|
$currency = '(' . $currency . ')';
|
||||||
|
|
||||||
if ($spans)
|
if ($spans)
|
||||||
return ('<SPAN CLASS="dollar-sign">$</SPAN>' .
|
return ('<SPAN CLASS="dollar-sign">$</SPAN>' .
|
||||||
@@ -35,22 +47,29 @@ class FormatHelper extends AppHelper {
|
|||||||
return $currency;
|
return $currency;
|
||||||
}
|
}
|
||||||
|
|
||||||
function date($date, $age = false) {
|
function date($date, $age = false, $class = null, $time = false) {
|
||||||
if (!$date) return null;
|
if (!$date) return null;
|
||||||
|
|
||||||
$date_fmt = 'm/d/Y';
|
if (empty($class))
|
||||||
return (self::$time->format($date_fmt, $date) .
|
$class = '';
|
||||||
($age
|
|
||||||
? ' (' . self::age($date, 60*60*24) . ')'
|
if ($time)
|
||||||
: ''));
|
$date_html = self::$time->nice($date);
|
||||||
|
else
|
||||||
|
$date_html = self::$time->format('m/d/Y', $date);
|
||||||
|
|
||||||
|
$date_html = '<span class="fmt-date '.$class.'">'.$date_html.'</span>';
|
||||||
|
|
||||||
|
if ($age) {
|
||||||
|
$date_html .= ' (' . self::age($date, $class, $time ? 0 : 60*60*24) . ')';
|
||||||
|
$date_html = '<span class="fmt-dateage '.$class.'">'.$date_html.'</span>';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $date_html;
|
||||||
}
|
}
|
||||||
|
|
||||||
function datetime($datetime, $age = false) {
|
function datetime($datetime, $age = false, $class = null) {
|
||||||
if (!$datetime) return null;
|
return self::date($datetime, $age, $class, true);
|
||||||
return (self::$time->nice($datetime) .
|
|
||||||
($age
|
|
||||||
? ' (' . self::age($datetime) . ')'
|
|
||||||
: ''));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function phone($phone, $ext = null) {
|
function phone($phone, $ext = null) {
|
||||||
@@ -81,10 +100,13 @@ class FormatHelper extends AppHelper {
|
|||||||
return $comment;
|
return $comment;
|
||||||
}
|
}
|
||||||
|
|
||||||
function age($datetime, $min_span = 0) {
|
function age($datetime, $class, $min_span = 0) {
|
||||||
if (!isset($datetime))
|
if (!isset($datetime))
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
if (empty($class))
|
||||||
|
$class = '';
|
||||||
|
|
||||||
$now = time();
|
$now = time();
|
||||||
$seconds = self::$time->fromString($datetime);
|
$seconds = self::$time->fromString($datetime);
|
||||||
$backwards = ($seconds > $now);
|
$backwards = ($seconds > $now);
|
||||||
@@ -95,9 +117,11 @@ class FormatHelper extends AppHelper {
|
|||||||
|
|
||||||
//pr(compact('now', 'seconds', 'backwards', 'timefrom', 'timeto', 'span', 'min_span'));
|
//pr(compact('now', 'seconds', 'backwards', 'timefrom', 'timeto', 'span', 'min_span'));
|
||||||
|
|
||||||
// If now, just return so
|
// If now, just use 'now'
|
||||||
if ($span === 0)
|
if ($span === 0) {
|
||||||
return __('now', true);
|
$approx = 0;
|
||||||
|
$unit = 'now';
|
||||||
|
}
|
||||||
|
|
||||||
// Display seconds if under 45 seconds
|
// Display seconds if under 45 seconds
|
||||||
if ($span < 45 && $span >= $min_span) {
|
if ($span < 45 && $span >= $min_span) {
|
||||||
@@ -164,20 +188,33 @@ class FormatHelper extends AppHelper {
|
|||||||
//pr(compact('span', 'min_span', 'approx', 'unit'));
|
//pr(compact('span', 'min_span', 'approx', 'unit'));
|
||||||
|
|
||||||
if ($approx == 0) {
|
if ($approx == 0) {
|
||||||
if ($unit == 'day')
|
if ($unit == 'now')
|
||||||
return __('today', true);
|
$age = 'now';
|
||||||
|
elseif ($unit == 'day')
|
||||||
return __('this ' . $unit, true);
|
$age = 'today';
|
||||||
|
else
|
||||||
|
$age = 'this ' . $unit;
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
if (isset($relative))
|
||||||
|
$age = $relative;
|
||||||
|
elseif ($approx > $span)
|
||||||
|
$age = 'almost';
|
||||||
|
elseif ($approx < $span)
|
||||||
|
$age = 'over';
|
||||||
|
else
|
||||||
|
$age = '';
|
||||||
|
|
||||||
return (__(isset($relative)
|
$age .= ' ' . self::_n($approx, $unit);
|
||||||
? $relative
|
|
||||||
: ($approx == $span
|
if ($backwards)
|
||||||
? ''
|
$age .= ' ago';
|
||||||
: ($approx > $span ? 'almost' : 'over')), true)
|
|
||||||
. ' '
|
}
|
||||||
. self::_n($approx, $unit)
|
|
||||||
. ($backwards ? '' : __(' ago', true)));
|
$age = '<span class="fmt-age '.$class.'">'.__($age, true).'</span>';
|
||||||
|
|
||||||
|
return $age;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************
|
/*****************************
|
||||||
|
|||||||
@@ -166,9 +166,14 @@ class GridHelper extends AppHelper {
|
|||||||
$included = array_diff(array_merge($this->included, $included),
|
$included = array_diff(array_merge($this->included, $included),
|
||||||
array_merge($this->invalid, $excluded));
|
array_merge($this->invalid, $excluded));
|
||||||
|
|
||||||
// Extract the columns that correspond to the inclusion set
|
// Defined the columns, based on the inclusion set,
|
||||||
$this->jqGrid_options['jqGridColumns']
|
// remapping column names as necessary.
|
||||||
= array_intersect_key($this->columns, array_flip($included));
|
$this->jqGrid_options['jqGridColumns'] = array();
|
||||||
|
foreach (array_intersect_key($this->columns, array_flip($included)) AS $name => $col) {
|
||||||
|
if (!empty($config['remap'][$name]))
|
||||||
|
$name = $config['remap'][$name];
|
||||||
|
$this->jqGrid_options['jqGridColumns'][$name] = $col;
|
||||||
|
}
|
||||||
|
|
||||||
// Make sure search fields are all part of the inclusion set
|
// Make sure search fields are all part of the inclusion set
|
||||||
$this->jqGrid_options['search_fields']
|
$this->jqGrid_options['search_fields']
|
||||||
@@ -224,4 +229,4 @@ class GridHelper extends AppHelper {
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -64,14 +64,20 @@ function showResponse(responseText, statusText) {
|
|||||||
|
|
||||||
if (!$("#repeat").attr("checked")) {
|
if (!$("#repeat").attr("checked")) {
|
||||||
window.location.href =
|
window.location.href =
|
||||||
|
<?php if (empty($movein)): ?>
|
||||||
"<?php echo $html->url(array('controller' => 'leases',
|
"<?php echo $html->url(array('controller' => 'leases',
|
||||||
'action' => 'view')); ?>"
|
'action' => 'view')); ?>"
|
||||||
+ "/" + $("#lease-id").val();
|
+ "/" + $("#lease-id").val();
|
||||||
|
<?php else: ?>
|
||||||
|
"<?php echo $html->url(array('controller' => 'customers',
|
||||||
|
'action' => 'receipt')); ?>"
|
||||||
|
+ "/" + $("#lease-id").val();
|
||||||
|
<?php endif; ?>
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// get a clean slate
|
// get a clean slate
|
||||||
//resetForm();
|
resetForm();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$('#results').html('<H2>Failed to save invoice!</H2>');
|
$('#results').html('<H2>Failed to save invoice!</H2>');
|
||||||
@@ -99,7 +105,10 @@ function onRowSelect(grid_id, lease_id) {
|
|||||||
// This is not intended as a long term solution,
|
// This is not intended as a long term solution,
|
||||||
// but I need a way to enter data and then view
|
// but I need a way to enter data and then view
|
||||||
// the results. This link will help.
|
// the results. This link will help.
|
||||||
$("#invoice-lease").html('<A HREF="/pmgr/site/leases/view/' +
|
$("#invoice-lease").html('<A HREF="' +
|
||||||
|
"<?php echo $html->url(array('controller' => 'leases',
|
||||||
|
'action' => 'view')); ?>"
|
||||||
|
+ "/" +
|
||||||
$(grid_id).getCell(lease_id, 'Lease-id').replace(/^#/,'') +
|
$(grid_id).getCell(lease_id, 'Lease-id').replace(/^#/,'') +
|
||||||
'">' +
|
'">' +
|
||||||
$(grid_id).getCell(lease_id, 'Lease-number') +
|
$(grid_id).getCell(lease_id, 'Lease-number') +
|
||||||
@@ -198,23 +207,24 @@ function addChargeSource(flash) {
|
|||||||
// Re-Enable warnings
|
// Re-Enable warnings
|
||||||
Configure::write('debug', $saved_debug_state);
|
Configure::write('debug', $saved_debug_state);
|
||||||
|
|
||||||
echo $this->element('leases', array
|
if (empty($movein))
|
||||||
('config' => array
|
echo $this->element('leases', array
|
||||||
('grid_div_id' => 'leases-list',
|
('config' => array
|
||||||
'grid_div_class' => 'text-below',
|
('grid_div_id' => 'leases-list',
|
||||||
'caption' => ('<A HREF="#" ONCLICK="$(\'#leases-list .HeaderButton\').click();'.
|
'grid_div_class' => 'text-below',
|
||||||
' return false;">Select Lease</A>'),
|
'caption' => ('<A HREF="#" ONCLICK="$(\'#leases-list .HeaderButton\').click();'.
|
||||||
'grid_setup' => array('hiddengrid' => isset($lease['id'])),
|
' return false;">Select Lease</A>'),
|
||||||
'grid_events' => array('onSelectRow' =>
|
'grid_setup' => array('hiddengrid' => isset($lease['id'])),
|
||||||
array('ids' =>
|
'grid_events' => array('onSelectRow' =>
|
||||||
'if (ids != null){onRowSelect("#"+$(this).attr("id"), ids);}'),
|
array('ids' =>
|
||||||
'onHeaderClick' =>
|
'if (ids != null){onRowSelect("#"+$(this).attr("id"), ids);}'),
|
||||||
array('gridstate' =>
|
'onHeaderClick' =>
|
||||||
'onGridState("#"+$(this).attr("id"), gridstate)'),
|
array('gridstate' =>
|
||||||
),
|
'onGridState("#"+$(this).attr("id"), gridstate)'),
|
||||||
'nolinks' => true,
|
),
|
||||||
'limit' => 10,
|
'nolinks' => true,
|
||||||
)));
|
'limit' => 10,
|
||||||
|
)));
|
||||||
|
|
||||||
echo ('<DIV CLASS="invoice grid-selection-text">' .
|
echo ('<DIV CLASS="invoice grid-selection-text">' .
|
||||||
|
|
||||||
@@ -266,10 +276,13 @@ echo $this->element('form_table',
|
|||||||
|
|
||||||
/* echo '</fieldset>' . "\n"; */
|
/* echo '</fieldset>' . "\n"; */
|
||||||
|
|
||||||
echo "<BR>\n";
|
if (empty($movein)) {
|
||||||
echo $form->input('repeat', array('type' => 'checkbox',
|
echo "<BR>\n";
|
||||||
'id' => 'repeat',
|
echo $form->input('repeat', array('type' => 'checkbox',
|
||||||
'label' => 'Enter Multiple Invoices')) . "\n";
|
'id' => 'repeat',
|
||||||
|
'label' => 'Enter Multiple Invoices')) . "\n";
|
||||||
|
}
|
||||||
|
|
||||||
echo $form->submit('Generate Invoice') . "\n";
|
echo $form->submit('Generate Invoice') . "\n";
|
||||||
?>
|
?>
|
||||||
|
|
||||||
@@ -331,6 +344,7 @@ Configure::write('debug', '0');
|
|||||||
' value="<?php echo date('m/d/Y', $movein['time']); ?>">');
|
' value="<?php echo date('m/d/Y', $movein['time']); ?>">');
|
||||||
$("#TransactionComment").val('Move-In Charges');
|
$("#TransactionComment").val('Move-In Charges');
|
||||||
|
|
||||||
|
<?php if ($movein['deposit'] != 0): ?>
|
||||||
id = addChargeSource(false);
|
id = addChargeSource(false);
|
||||||
$('#Entry'+id+'Form').removeCol(2);
|
$('#Entry'+id+'Form').removeCol(2);
|
||||||
$('#Entry'+id+'Form input, #Entry'+id+'Form select').attr('disabled', true);
|
$('#Entry'+id+'Form input, #Entry'+id+'Form select').attr('disabled', true);
|
||||||
@@ -351,7 +365,7 @@ Configure::write('debug', '0');
|
|||||||
' value="<?php echo FormatHelper::currency($movein['deposit']); ?>">');
|
' value="<?php echo FormatHelper::currency($movein['deposit']); ?>">');
|
||||||
//$('#Entry'+id+'Comment').val('Move-In Security Deposit');
|
//$('#Entry'+id+'Comment').val('Move-In Security Deposit');
|
||||||
$('#Entry'+id+'Comment').removeAttr('disabled');
|
$('#Entry'+id+'Comment').removeAttr('disabled');
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
id = addChargeSource(false);
|
id = addChargeSource(false);
|
||||||
$('#Entry'+id+'Form').removeCol(2);
|
$('#Entry'+id+'Form').removeCol(2);
|
||||||
@@ -376,8 +390,7 @@ Configure::write('debug', '0');
|
|||||||
('<input type="hidden"' +
|
('<input type="hidden"' +
|
||||||
' name="data[Entry]['+id+'][amount]"' +
|
' name="data[Entry]['+id+'][amount]"' +
|
||||||
' value="<?php echo FormatHelper::currency($movein['prorated_rent']); ?>">');
|
' value="<?php echo FormatHelper::currency($movein['prorated_rent']); ?>">');
|
||||||
$('#Entry'+id+'Comment').val('Move-In Rent'
|
$('#Entry'+id+'Comment').val("<?php echo($movein['prorated'] ? 'Move-In Rent (Prorated)' : ''); ?>");
|
||||||
<?php if ($movein['prorated']) echo "+ ' (Prorated)'" ?>);
|
|
||||||
$('#Entry'+id+'Comment').removeAttr('disabled');
|
$('#Entry'+id+'Comment').removeAttr('disabled');
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
@@ -386,7 +399,10 @@ Configure::write('debug', '0');
|
|||||||
<?php if (isset($lease['id'])): ?>
|
<?php if (isset($lease['id'])): ?>
|
||||||
$("#lease-id").val(<?php echo $lease['id']; ?>);
|
$("#lease-id").val(<?php echo $lease['id']; ?>);
|
||||||
//$("#invoice-lease").html("<?php echo '#'.$lease['number']; ?>");
|
//$("#invoice-lease").html("<?php echo '#'.$lease['number']; ?>");
|
||||||
$("#invoice-lease").html('<A HREF="/pmgr/site/leases/view/' +
|
$("#invoice-lease").html('<A HREF="' +
|
||||||
|
"<?php echo $html->url(array('controller' => 'leases',
|
||||||
|
'action' => 'view')); ?>"
|
||||||
|
+ "/" +
|
||||||
"<?php echo $lease['id']; ?>" +
|
"<?php echo $lease['id']; ?>" +
|
||||||
'">#' +
|
'">#' +
|
||||||
"<?php echo $lease['number']; ?>" +
|
"<?php echo $lease['number']; ?>" +
|
||||||
@@ -400,6 +416,12 @@ Configure::write('debug', '0');
|
|||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
onGridState(null, 'visible');
|
onGridState(null, 'visible');
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if ($this->params['dev']): ?>
|
||||||
|
$('#output-debug').html('Post Output');
|
||||||
|
$('#output-debug').show();
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
});
|
});
|
||||||
--></script>
|
--></script>
|
||||||
|
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ if ($move_type !== 'out') {
|
|||||||
),
|
),
|
||||||
'include' => array('Deposit'),
|
'include' => array('Deposit'),
|
||||||
'exclude' => array('Balance'),
|
'exclude' => array('Balance'),
|
||||||
'action' => 'unoccupied',
|
'action' => 'vacant',
|
||||||
'nolinks' => true,
|
'nolinks' => true,
|
||||||
'limit' => 10,
|
'limit' => 10,
|
||||||
)));
|
)));
|
||||||
|
|||||||
@@ -39,7 +39,6 @@ $rows[] = array('Notice Received', FormatHelper::date($lease['notice_received_d
|
|||||||
$rows[] = array('Closed', FormatHelper::date($lease['close_date'], true));
|
$rows[] = array('Closed', FormatHelper::date($lease['close_date'], true));
|
||||||
$rows[] = array('Deposit', FormatHelper::currency($lease['deposit']));
|
$rows[] = array('Deposit', FormatHelper::currency($lease['deposit']));
|
||||||
$rows[] = array('Rent', FormatHelper::currency($lease['rent']));
|
$rows[] = array('Rent', FormatHelper::currency($lease['rent']));
|
||||||
$rows[] = array('Paid Through', FormatHelper::date($lease['paid_through'], true));
|
|
||||||
$rows[] = array('Comment', $lease['comment']);
|
$rows[] = array('Comment', $lease['comment']);
|
||||||
|
|
||||||
|
|
||||||
@@ -58,6 +57,9 @@ echo '<div class="infobox">' . "\n";
|
|||||||
$rows = array();
|
$rows = array();
|
||||||
$rows[] = array('Security Deposit:', FormatHelper::currency($outstandingDeposit));
|
$rows[] = array('Security Deposit:', FormatHelper::currency($outstandingDeposit));
|
||||||
$rows[] = array('Balance Owed:', FormatHelper::currency($outstandingBalance));
|
$rows[] = array('Balance Owed:', FormatHelper::currency($outstandingBalance));
|
||||||
|
$rows[] = array('Paid Through:', FormatHelper::date($lease['paid_through_date'], false));
|
||||||
|
if ($lease['delinquent'])
|
||||||
|
$rows[] = array('Delinquent:', FormatHelper::age($lease['paid_through_date'], 'delinquent'));
|
||||||
echo $this->element('table',
|
echo $this->element('table',
|
||||||
array('class' => 'summary',
|
array('class' => 'summary',
|
||||||
'rows' => $rows,
|
'rows' => $rows,
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ $ledger = $entry['Ledger'];
|
|||||||
$account = $ledger['Account'];
|
$account = $ledger['Account'];
|
||||||
$tender = $entry['Tender'];
|
$tender = $entry['Tender'];
|
||||||
$matching = $entry['MatchingEntry'];
|
$matching = $entry['MatchingEntry'];
|
||||||
|
$double = $entry['DoubleEntry'];
|
||||||
$entry = $entry['LedgerEntry'];
|
$entry = $entry['LedgerEntry'];
|
||||||
|
|
||||||
$rows = array();
|
$rows = array();
|
||||||
@@ -43,6 +44,10 @@ $rows[] = array('Cr/Dr', ($entry['crdr'] .
|
|||||||
'action' => 'view',
|
'action' => 'view',
|
||||||
$matching['id'])) .
|
$matching['id'])) .
|
||||||
')'));
|
')'));
|
||||||
|
$rows[] = array('Double Entry', $html->link('#'.$double['id'],
|
||||||
|
array('controller' => 'double_entries',
|
||||||
|
'action' => 'view',
|
||||||
|
$double['id'])));
|
||||||
$rows[] = array('Comment', $entry['comment']);
|
$rows[] = array('Comment', $entry['comment']);
|
||||||
|
|
||||||
echo $this->element('table',
|
echo $this->element('table',
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ $customer = $entry['Customer'];
|
|||||||
$lease = $entry['Lease'];
|
$lease = $entry['Lease'];
|
||||||
$entry = $entry['StatementEntry'];
|
$entry = $entry['StatementEntry'];
|
||||||
|
|
||||||
$Ttype = ucfirst(strtolower($transaction['type']));
|
$Ttype = ucwords(strtolower(str_replace('_', ' ', $transaction['type'])));
|
||||||
|
|
||||||
$rows = array();
|
$rows = array();
|
||||||
$rows[] = array('ID', $entry['id']);
|
$rows[] = array('ID', $entry['id']);
|
||||||
@@ -113,9 +113,9 @@ echo $this->element('statement_entries', array
|
|||||||
|
|
||||||
// Grid configuration
|
// Grid configuration
|
||||||
'config' => array
|
'config' => array
|
||||||
('caption' => 'Entries Applied',
|
('caption' => $applied_caption,
|
||||||
//'filter' => array('id' => $entry['id']),
|
//'filter' => array('id' => $entry['id']),
|
||||||
'exclude' => array('Entry'),
|
'exclude' => array('Transaction'),
|
||||||
)));
|
)));
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,8 @@ foreach ($depositTypes AS $type) {
|
|||||||
'separator' => '<BR>',
|
'separator' => '<BR>',
|
||||||
'onclick' => "switchSelection({$type['id']})",
|
'onclick' => "switchSelection({$type['id']})",
|
||||||
'legend' => false,
|
'legend' => false,
|
||||||
'value' => $type['stats']['undeposited'] > 0 ? 'all' : 'none',
|
// REVISIT <AP>: 20080811; Make opt-in, or opt-out?
|
||||||
|
'value' => $type['stats']['undeposited'] > 0 ? 'none' : 'none',
|
||||||
'disabled' => $type['stats']['undeposited'] <= 0,
|
'disabled' => $type['stats']['undeposited'] <= 0,
|
||||||
'options' => $radioOptions,
|
'options' => $radioOptions,
|
||||||
));
|
));
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ if (empty($this->data['Tender']))
|
|||||||
INTERNAL_ERROR('Creation of new Tender not allowed.');
|
INTERNAL_ERROR('Creation of new Tender not allowed.');
|
||||||
|
|
||||||
echo $form->input('tender_type_id',
|
echo $form->input('tender_type_id',
|
||||||
array('div' => 'tender',
|
array('div' => 'tender input',
|
||||||
// REVISIT <AP>: 20090810
|
// REVISIT <AP>: 20090810
|
||||||
// We're not ready to allow changing the type
|
// We're not ready to allow changing the type
|
||||||
// of a tender, since it will force us to deal
|
// of a tender, since it will force us to deal
|
||||||
@@ -59,7 +59,6 @@ foreach ($types AS $type) {
|
|||||||
|
|
||||||
for ($i=1; $i<=4; ++$i) {
|
for ($i=1; $i<=4; ++$i) {
|
||||||
if (!empty($type["data{$i}_name"])) {
|
if (!empty($type["data{$i}_name"])) {
|
||||||
echo ("<!-- data{$i}_name -->\n");
|
|
||||||
echo $form->input("type.{$type['id']}.data$i",
|
echo $form->input("type.{$type['id']}.data$i",
|
||||||
array('label' => $type["data{$i}_name"],
|
array('label' => $type["data{$i}_name"],
|
||||||
'div' => 'input text tender',
|
'div' => 'input text tender',
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ echo $this->element('form_table',
|
|||||||
"amount" => array('prefix' => 'Entry.0',
|
"amount" => array('prefix' => 'Entry.0',
|
||||||
'opts' =>
|
'opts' =>
|
||||||
array('value' =>
|
array('value' =>
|
||||||
FormatHelper::currency($balance, false, ''),
|
FormatHelper::currency($balance),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
"account_id" => array('prefix' => 'Entry.0',
|
"account_id" => array('prefix' => 'Entry.0',
|
||||||
|
|||||||
@@ -11,13 +11,14 @@ echo '<div class="transaction view">' . "\n";
|
|||||||
|
|
||||||
$account = $transaction['Account'];
|
$account = $transaction['Account'];
|
||||||
$ledger = $transaction['Ledger'];
|
$ledger = $transaction['Ledger'];
|
||||||
|
$nsf_tender = $transaction['NsfTender'];
|
||||||
|
|
||||||
if (isset($transaction['Transaction']))
|
if (isset($transaction['Transaction']))
|
||||||
$transaction = $transaction['Transaction'];
|
$transaction = $transaction['Transaction'];
|
||||||
|
|
||||||
$rows = array();
|
$rows = array();
|
||||||
$rows[] = array('ID', $transaction['id']);
|
$rows[] = array('ID', $transaction['id']);
|
||||||
$rows[] = array('Type', $transaction['type']);
|
$rows[] = array('Type', str_replace('_', ' ', $transaction['type']));
|
||||||
$rows[] = array('Timestamp', FormatHelper::datetime($transaction['stamp']));
|
$rows[] = array('Timestamp', FormatHelper::datetime($transaction['stamp']));
|
||||||
$rows[] = array('Amount', FormatHelper::currency($transaction['amount']));
|
$rows[] = array('Amount', FormatHelper::currency($transaction['amount']));
|
||||||
$rows[] = array('Account', $html->link($account['name'],
|
$rows[] = array('Account', $html->link($account['name'],
|
||||||
@@ -28,7 +29,11 @@ $rows[] = array('Ledger', $html->link($ledger['name'],
|
|||||||
array('controller' => 'ledgers',
|
array('controller' => 'ledgers',
|
||||||
'action' => 'view',
|
'action' => 'view',
|
||||||
$ledger['id'])));
|
$ledger['id'])));
|
||||||
$rows[] = array('Comment', $transaction['comment']);
|
if (!empty($nsf_tender['id']))
|
||||||
|
$rows[] = array('NSF Tender', $html->link($nsf_tender['name'],
|
||||||
|
array('controller' => 'tenders',
|
||||||
|
'action' => 'view',
|
||||||
|
$nsf_tender['id'])));
|
||||||
|
|
||||||
echo $this->element('table',
|
echo $this->element('table',
|
||||||
array('class' => 'item transaction detail',
|
array('class' => 'item transaction detail',
|
||||||
@@ -79,7 +84,8 @@ if ($transaction['type'] === 'INVOICE' ||
|
|||||||
'caption' => 'Statement Entries',
|
'caption' => 'Statement Entries',
|
||||||
'filter' => array('Transaction.id' => $transaction['id'],
|
'filter' => array('Transaction.id' => $transaction['id'],
|
||||||
'type !=' => 'VOID'),
|
'type !=' => 'VOID'),
|
||||||
'exclude' => array('Transaction', 'Account'),
|
'exclude' => array('Transaction', 'Debit', 'Credit'),
|
||||||
|
'include' => array('Amount'),
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -81,12 +81,14 @@ if (isset($current_lease['id'])) {
|
|||||||
'config' => array
|
'config' => array
|
||||||
(
|
(
|
||||||
'caption' =>
|
'caption' =>
|
||||||
('Current Lease Account ('
|
('Current Lease Statement ('
|
||||||
. $current_lease['Customer']['name']
|
. $current_lease['Customer']['name']
|
||||||
. ')'),
|
. ')'),
|
||||||
'filter' => array('Lease.id' => $current_lease['id']),
|
'filter' => array('Lease.id' => $current_lease['id']),
|
||||||
'include' => array('Through'),
|
'include' => array('Through'),
|
||||||
'exclude' => array('Customer', 'Lease', 'Unit'),
|
'exclude' => array('Customer', 'Lease', 'Unit'),
|
||||||
|
'sort_column' => 'Effective',
|
||||||
|
'sort_order' => 'DESC',
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,6 +32,13 @@ div.item.list { margin-bottom: 1.5em; }
|
|||||||
table.item.list { margin-bottom: 1.5em; }
|
table.item.list { margin-bottom: 1.5em; }
|
||||||
|
|
||||||
|
|
||||||
|
/************************************************************
|
||||||
|
************************************************************
|
||||||
|
* Date formats
|
||||||
|
*/
|
||||||
|
span.fmt-age.delinquent { color: #f00; }
|
||||||
|
|
||||||
|
|
||||||
/************************************************************
|
/************************************************************
|
||||||
************************************************************
|
************************************************************
|
||||||
* Cell configuration
|
* Cell configuration
|
||||||
@@ -198,7 +205,7 @@ table.list.ledger td.evnrow { background: #f4f4f4; }
|
|||||||
* Receipt Entry / Tender Edit
|
* Receipt Entry / Tender Edit
|
||||||
*/
|
*/
|
||||||
|
|
||||||
input.payment, div.tender input, div.tender select {
|
input.payment, div.tender.input input, div.tender.input select {
|
||||||
width: 10em;
|
width: 10em;
|
||||||
}
|
}
|
||||||
label.payment {
|
label.payment {
|
||||||
@@ -208,11 +215,11 @@ label.payment {
|
|||||||
/* display: block; */
|
/* display: block; */
|
||||||
}
|
}
|
||||||
|
|
||||||
div.tender {
|
div.tender.edit div.tender.input {
|
||||||
padding-bottom: 0.1em;
|
padding-bottom: 0.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.tender label {
|
div.tender.edit div.tender.input label {
|
||||||
float: left;
|
float: left;
|
||||||
width: 12em;
|
width: 12em;
|
||||||
padding-right: 0.5em;
|
padding-right: 0.5em;
|
||||||
|
|||||||
47
todo.notes
47
todo.notes
@@ -4,20 +4,6 @@ was in early (VERY early) implementations. At that time, I
|
|||||||
had to a use temporary variable to keep a running total. It
|
had to a use temporary variable to keep a running total. It
|
||||||
worked, but was MySQL specific.
|
worked, but was MySQL specific.
|
||||||
|
|
||||||
Sorting by Customer ID is broken. It must think it's already
|
|
||||||
sorted by ID because the first click shows the arrow as
|
|
||||||
DESC even though the sort is ASC. Subsequent clicks don't
|
|
||||||
change anything. You must sort on a different column first
|
|
||||||
then everything works.
|
|
||||||
|
|
||||||
Seems like security deposit is suddenly broken. I believe
|
|
||||||
the customer/lease infobox used to report only PAID
|
|
||||||
security deposits, but it now seems like it's reporting ALL
|
|
||||||
security deposits charged.
|
|
||||||
|
|
||||||
Customer Selection on the Receipt Page is broken.
|
|
||||||
(Selecting a row and waiting for the update).
|
|
||||||
|
|
||||||
Invoice
|
Invoice
|
||||||
- Have some sort of rent-proration tool
|
- Have some sort of rent-proration tool
|
||||||
|
|
||||||
@@ -28,14 +14,6 @@ Get Petty Cash working. We'll need to add one or more expense
|
|||||||
accounts. We'll also need to implement purchase order
|
accounts. We'll also need to implement purchase order
|
||||||
functionality, or at least simple an expense page.
|
functionality, or at least simple an expense page.
|
||||||
|
|
||||||
Automatic assessment of rents, or at least for now, one
|
|
||||||
click manual mechanism to assess rents correctly for all
|
|
||||||
tenants.
|
|
||||||
|
|
||||||
Automatic assessment of late fees, or at least for now, one
|
|
||||||
click manual mechanism to assess late fees correctly for all
|
|
||||||
tenants.
|
|
||||||
|
|
||||||
Update unit status between OCCUPIED / LATE / LOCKED depending
|
Update unit status between OCCUPIED / LATE / LOCKED depending
|
||||||
on the current situation.
|
on the current situation.
|
||||||
|
|
||||||
@@ -138,3 +116,28 @@ both of these should be displayed on the Lease view page.
|
|||||||
|
|
||||||
20090729: New Ledger doesn't seem to give a balance forward entry.
|
20090729: New Ledger doesn't seem to give a balance forward entry.
|
||||||
|
|
||||||
|
Sorting by Customer ID is broken. It must think it's already
|
||||||
|
sorted by ID because the first click shows the arrow as
|
||||||
|
DESC even though the sort is ASC. Subsequent clicks don't
|
||||||
|
change anything. You must sort on a different column first
|
||||||
|
then everything works.
|
||||||
|
- Not actually fixed in the app, although it's solved by
|
||||||
|
using jqGrid 3.5
|
||||||
|
|
||||||
|
Seems like security deposit is suddenly broken. I believe
|
||||||
|
the customer/lease infobox used to report only PAID
|
||||||
|
security deposits, but it now seems like it's reporting ALL
|
||||||
|
security deposits charged.
|
||||||
|
|
||||||
|
Customer Selection on the Receipt Page is broken.
|
||||||
|
(Selecting a row and waiting for the update).
|
||||||
|
|
||||||
|
Automatic assessment of rents, or at least for now, one
|
||||||
|
click manual mechanism to assess rents correctly for all
|
||||||
|
tenants.
|
||||||
|
|
||||||
|
Automatic assessment of late fees, or at least for now, one
|
||||||
|
click manual mechanism to assess late fees correctly for all
|
||||||
|
tenants.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user