git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605/site@159 97e9348a-65ac-dc4b-aefc-98561f571b83
189 lines
5.8 KiB
PHP
189 lines
5.8 KiB
PHP
<?php
|
|
class Customer extends AppModel {
|
|
|
|
var $name = 'Customer';
|
|
var $validate = array(
|
|
'id' => array('numeric'),
|
|
'name' => array('notempty'),
|
|
);
|
|
|
|
var $belongsTo = array(
|
|
'Account',
|
|
'PrimaryContact' => array(
|
|
'className' => 'Contact',
|
|
),
|
|
);
|
|
|
|
var $hasMany = array(
|
|
'CurrentLease' => array(
|
|
'className' => 'Lease',
|
|
'conditions' => 'CurrentLease.close_date IS NULL',
|
|
),
|
|
'Lease',
|
|
'Transaction',
|
|
);
|
|
|
|
var $hasAndBelongsToMany = array(
|
|
'Contact',
|
|
);
|
|
|
|
|
|
/**************************************************************************
|
|
**************************************************************************
|
|
**************************************************************************
|
|
* function: findSecurityDeposits
|
|
* - Returns an array of security deposit entries
|
|
*/
|
|
function findSecurityDeposits($id, $link = null) {
|
|
/* pr(array('function' => 'Customer::findSecurityDeposits', */
|
|
/* 'args' => compact('id', 'link'), */
|
|
/* )); */
|
|
|
|
$customer = $this->find('first',
|
|
array('contain' =>
|
|
array('Lease' => array('fields' => array('id'))),
|
|
'fields' => array('account_id'),
|
|
'conditions' => array(array('Customer.id' => $id))));
|
|
|
|
$entries = $this->Account->findLedgerEntriesRelatedToAccount
|
|
($customer['Customer']['account_id'],
|
|
$this->Account->securityDepositAccountID(),
|
|
true, null, $link);
|
|
|
|
foreach ($customer['Lease'] AS $lease) {
|
|
$ledger_entries = $this->Lease->findSecurityDeposits($lease['id'], $link);
|
|
$this->statsMerge($entries['summary'], $ledger_entries['summary']);
|
|
$entries['Entries'] = array_merge($entries['Entries'],
|
|
$ledger_entries['Entries']);
|
|
}
|
|
|
|
/* pr(array('function' => 'Customer::findSecurityDeposits', */
|
|
/* 'args' => compact('id', 'link'), */
|
|
/* 'vars' => compact('customer'), */
|
|
/* 'return' => compact('entries'), */
|
|
/* )); */
|
|
|
|
return $entries;
|
|
}
|
|
|
|
|
|
/**************************************************************************
|
|
**************************************************************************
|
|
**************************************************************************
|
|
* function: findUnreconciledLedgerEntries
|
|
* - Returns ledger entries that are not yet reconciled
|
|
* (such as charges not paid).
|
|
*/
|
|
|
|
function findUnreconciledLedgerEntries($id = null) {
|
|
$customer = $this->find('first',
|
|
array('contain' =>
|
|
array('Lease' => array('fields' => array('id'))),
|
|
'fields' => array('account_id'),
|
|
'conditions' => array(array('Customer.id' => $id))));
|
|
|
|
$unreconciled = $this->Account->findUnreconciledLedgerEntries
|
|
($customer['Customer']['account_id']);
|
|
|
|
foreach ($customer['Lease'] AS $lease) {
|
|
$lease_unrec = $this->Lease->findUnreconciledLedgerEntries($lease['id']);
|
|
$unreconciled['debits'] = array_merge($unreconciled['debits'],
|
|
$lease_unrec['debits']);
|
|
$unreconciled['credits'] = array_merge($unreconciled['credits'],
|
|
$lease_unrec['credits']);
|
|
}
|
|
|
|
return $unreconciled;
|
|
}
|
|
|
|
|
|
/**************************************************************************
|
|
**************************************************************************
|
|
**************************************************************************
|
|
* function: details
|
|
* - Returns detail information for the customer
|
|
*/
|
|
|
|
function details($id = null) {
|
|
// Query the DB for need information.
|
|
$customer = $this->find
|
|
('first', array
|
|
('contain' => array
|
|
(// Models
|
|
'Contact' =>
|
|
array(// Models
|
|
'ContactPhone',
|
|
'ContactEmail',
|
|
'ContactAddress',
|
|
),
|
|
'Account',
|
|
'Lease' =>
|
|
array('Unit' =>
|
|
array('order' => array('sort_order'),
|
|
'fields' => array('id', 'name'),
|
|
),
|
|
),
|
|
),
|
|
|
|
'conditions' => array('Customer.id' => $id),
|
|
));
|
|
|
|
// Add the lease balance to each lease.
|
|
foreach ($customer['Lease'] AS &$lease) {
|
|
$stats = $this->Lease->stats($lease['id']);
|
|
$lease['balance'] = $stats['Account']['Ledger']['balance'];
|
|
}
|
|
|
|
// Figure out the outstanding balance of the current lease.
|
|
$customer['stats'] = $this->stats($id);
|
|
|
|
// Figure out the total security deposit for the current lease.
|
|
$customer['deposits'] = $this->findSecurityDeposits($id);
|
|
|
|
// Add statistics into the customer account.
|
|
$customer['Account'] = array_merge($customer['Account'],
|
|
$customer['stats']['Account']['Ledger']);
|
|
|
|
return $customer;
|
|
}
|
|
|
|
|
|
/**************************************************************************
|
|
**************************************************************************
|
|
**************************************************************************
|
|
* function: stats
|
|
* - Returns summary data from the requested customer.
|
|
*/
|
|
|
|
function stats($id = null) {
|
|
if (!$id)
|
|
return null;
|
|
|
|
// Get the basic information necessary
|
|
$customer = $this->find('first',
|
|
array('contain' =>
|
|
array('Account' => array
|
|
('fields' => array('Account.id')),
|
|
|
|
'Lease' => array
|
|
('fields' => array('Lease.id'))
|
|
),
|
|
'conditions' => array
|
|
(array('Customer.id' => $id))));
|
|
|
|
// Get stats from the customer account, and each lease
|
|
$stats['Account'] = $this->Account->stats($customer['Account']['id']);
|
|
foreach ($customer['Lease'] AS $lease) {
|
|
$this->statsMerge($stats['Lease'], $this->Lease->stats($lease['id']));
|
|
}
|
|
|
|
// Merge the stats from both the customer specific account, as
|
|
// well as the leases. This will provide current customer standing.
|
|
$this->statsMerge($stats, $stats['Account']['Ledger']);
|
|
$this->statsMerge($stats, $stats['Lease']['Account']['Ledger']);
|
|
|
|
return $stats;
|
|
}
|
|
|
|
}
|
|
?>
|