Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bda18fc78a | ||
|
|
d903fcb9e3 | ||
|
|
01a6984a53 | ||
|
|
30fdc10648 | ||
|
|
87d6d93493 | ||
|
|
11a9ca903b | ||
|
|
0d59351341 | ||
|
|
13f62edbd7 | ||
|
|
ec0363325c | ||
|
|
e08afdd8b1 | ||
|
|
8249ecc5cd | ||
|
|
f50db1a34b | ||
|
|
f85481c7ec | ||
|
|
75c635a5ea | ||
|
|
4cc81c2ebc | ||
|
|
20df22a002 | ||
|
|
49a379d799 | ||
|
|
98d9849914 |
@@ -1,25 +1,20 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine on
|
||||
RewriteRule ^$ webroot/ [L]
|
||||
RewriteRule (.*) webroot/$1 [L]
|
||||
RewriteEngine on
|
||||
|
||||
RewriteRule ^$ webroot/ [L]
|
||||
|
||||
# Need this prevent a 400 error without trailing /
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule (.*) webroot/$1 [L]
|
||||
|
||||
</IfModule>
|
||||
|
||||
# Lets deny everyone -- its a clean slate!
|
||||
order deny,allow
|
||||
deny from all
|
||||
|
||||
# Now allow local access
|
||||
# Localhost
|
||||
# allow from 127.0.0
|
||||
# Local subnet
|
||||
# allow from 192.168.7
|
||||
# Need to make sure directories can't be listed, since the rewrite
|
||||
# rule excludes rewriting when an actual directory is requested
|
||||
Options -Indexes
|
||||
|
||||
# Provide a mechanism for user authentication
|
||||
AuthType Digest
|
||||
AuthName "Property Manager"
|
||||
AuthUserFile "D:/Website/auth/pmgr.htpasswd"
|
||||
AuthType Basic
|
||||
AuthName "Valley Storage"
|
||||
AuthUserFile "/home/perki2/valley_storage.pmgr.htpasswd"
|
||||
Require valid-user
|
||||
|
||||
# Instead of satisfy all (too restrictive)
|
||||
# This allows EITHER local domain OR authenticated user
|
||||
satisfy any
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
class AppController extends Controller {
|
||||
var $uses = array('Option', 'Permission');
|
||||
var $helpers = array('Html', 'Form', 'Javascript', 'Format', 'Time', 'Grid');
|
||||
var $components = array('DebugKit.Toolbar');
|
||||
//var $components = array('DebugKit.Toolbar');
|
||||
|
||||
var $sidemenu = array('areas' => array('SITE' => false, 'REPORT' => false, 'CONTROLLER' => false, 'ACTION' => false, 'SANDBOX' => false));
|
||||
var $std_area = 10;
|
||||
@@ -200,6 +200,9 @@ class AppController extends Controller {
|
||||
$this->addSideMenuLink('Units',
|
||||
array('controller' => 'units', 'action' => 'index'), null,
|
||||
'SITE');
|
||||
$this->addSideMenuLink('Locks',
|
||||
array('controller' => 'locks', 'action' => 'index'), null,
|
||||
'SITE');
|
||||
$this->addSideMenuLink('Leases',
|
||||
array('controller' => 'leases', 'action' => 'index'), null,
|
||||
'SITE');
|
||||
@@ -272,25 +275,25 @@ class AppController extends Controller {
|
||||
$this->addSideMenuLink('Unpaid Charges',
|
||||
array('controller' => 'statement_entries', 'action' => 'unpaid'), null,
|
||||
'REPORT');
|
||||
$this->addSideMenuLink('Lease Up',
|
||||
array('controller' => 'leases', 'action' => 'overview'), null,
|
||||
'REPORT');
|
||||
$this->addSideMenuLink('Unit Summary',
|
||||
array('controller' => 'units', 'action' => 'overview'), null,
|
||||
'REPORT');
|
||||
$this->addSideMenuLink('Lease Up',
|
||||
array('controller' => 'leases', 'action' => 'overview'), null,
|
||||
'REPORT');
|
||||
/* $this->addSideMenuLink('Monthly Income', */
|
||||
/* array('controller' => 'statement_entries', 'action' => 'incomebymonth'), null, */
|
||||
/* 'REPORT'); */
|
||||
/* $this->addSideMenuLink('Monthly Expenses', */
|
||||
/* array('controller' => 'statement_entries', 'action' => 'expensebymonth'), null, */
|
||||
/* 'REPORT'); */
|
||||
$this->addSideMenuLink('Quickbook Invoice',
|
||||
array('controller' => 'statement_entries', 'action' => 'incomebymonth', 4, 1), null,
|
||||
'REPORT');
|
||||
$this->addSideMenuLink('Quickbook Credits',
|
||||
array('controller' => 'statement_entries', 'action' => 'expensebymonth', 4, 0), null,
|
||||
'REPORT');
|
||||
$this->addSideMenuLink('Monthly Net',
|
||||
/* $this->addSideMenuLink('Quickbook Invoice', */
|
||||
/* array('controller' => 'statement_entries', 'action' => 'incomebymonth', 4, 1), null, */
|
||||
/* 'REPORT'); */
|
||||
/* $this->addSideMenuLink('Quickbook Credits', */
|
||||
/* array('controller' => 'statement_entries', 'action' => 'expensebymonth', 4, 0), null, */
|
||||
/* 'REPORT'); */
|
||||
$this->addSideMenuLink('Monthly Income',
|
||||
array('controller' => 'statement_entries', 'action' => 'netbymonth'), null,
|
||||
'REPORT');
|
||||
}
|
||||
@@ -464,7 +467,8 @@ class AppController extends Controller {
|
||||
App::import('Helper', 'Html');
|
||||
$url = HtmlHelper::url($url, true);
|
||||
|
||||
if (headers_sent()) {
|
||||
if (headers_sent() ||
|
||||
($this->dev() && $this->Option->enabled('dev'))) {
|
||||
// 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
|
||||
@@ -538,6 +542,9 @@ class AppController extends Controller {
|
||||
// Retreive the appropriate subset of data
|
||||
$records = $this->gridDataRecords($params, $model, $pagination);
|
||||
|
||||
// If subtotaling, figure out the running total before pagination...
|
||||
$this->gridDataRecordsRunningSubtotal($params, $model, $pagination);
|
||||
|
||||
// Post process the records
|
||||
$this->gridDataPostProcess($params, $model, $records);
|
||||
|
||||
@@ -651,6 +658,9 @@ class AppController extends Controller {
|
||||
$query = array_intersect_key($this->gridDataCountTableSet($params, $model),
|
||||
array('link'=>1, 'contain'=>1));
|
||||
|
||||
// Conditions for the count
|
||||
$query['fields'] = array($this->gridDataCountField($params, $model));
|
||||
|
||||
// Conditions for the count
|
||||
$query['conditions'] = $this->gridDataCountConditionSet($params, $model);
|
||||
|
||||
@@ -680,6 +690,10 @@ class AppController extends Controller {
|
||||
array('link'=>1, 'contain'=>1));
|
||||
}
|
||||
|
||||
function gridDataCountField(&$params, &$model) {
|
||||
return "COUNT(DISTINCT `".$model->alias.'`.`'.$model->primaryKey."`) AS 'count'";
|
||||
}
|
||||
|
||||
function gridDataCountConditions(&$params, &$model) {
|
||||
// Same conditions for counting as for retreiving
|
||||
return $this->gridDataConditions($params, $model);
|
||||
@@ -1034,6 +1048,53 @@ class AppController extends Controller {
|
||||
return $model->find($type, $query);
|
||||
}
|
||||
|
||||
function gridDataRecordsRunningSubtotal(&$params, $model, $pagination) {
|
||||
|
||||
// REVISIT <AP>: 20090722
|
||||
// Horrible solution to something that should be done
|
||||
// in SQL. Doesn't really work, but for a grid that contains
|
||||
// ALL records, and is sorted on the correct field, it does
|
||||
// actually work.
|
||||
//
|
||||
// If this function worked correctly, this mechanism would also
|
||||
// work for grids that did not contain ALL records.
|
||||
|
||||
$subtotals = array();
|
||||
foreach ($params['post']['fields'] AS $field) {
|
||||
if (preg_match('/subtotal-(.*)$/', $field, $matches))
|
||||
$subtotals[] = array('field' => $matches[1],
|
||||
'name' => $field,
|
||||
'amount' => 0);
|
||||
}
|
||||
|
||||
// This part, if functioning, should do a sub-total off all records
|
||||
// that are not part of the grid, instead of starting at zero, so that
|
||||
// the totals come out correctly for the each record entry.
|
||||
|
||||
/* $pagination['start'] = $pagination['start'] + $pagination['limit']; */
|
||||
/* $pagination['limit'] = 10000000; */
|
||||
|
||||
/* // Retreive the appropriate subset of data */
|
||||
/* $params_copy = $params; */
|
||||
/* $records = $this->gridDataRecords($params_copy, $model, $pagination); */
|
||||
|
||||
/* foreach ($records AS &$record) { */
|
||||
/* foreach ($subtotals AS &$subtotal) { */
|
||||
/* $field = $subtotal['field']; */
|
||||
/* if (preg_match("/\./", $field)) { */
|
||||
/* list($tbl, $col) = explode(".", $field); */
|
||||
/* $record['subtotal-'.$tbl][$col] = */
|
||||
/* ($subtotal['amount'] += $record[$tbl][$col]); */
|
||||
/* } */
|
||||
/* else { */
|
||||
/* $record[$model->alias]['subtotal-'.$field] = */
|
||||
/* ($subtotal['amount'] += $record[$model->alias][$field]); */
|
||||
/* } */
|
||||
/* } */
|
||||
/* } */
|
||||
|
||||
$params['subtotals'] = $subtotals;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
@@ -1084,15 +1145,11 @@ class AppController extends Controller {
|
||||
|
||||
// REVISIT <AP>: 20090722
|
||||
// Horrible solution to something that should be done
|
||||
// in SQL. But, it works for now, so what the heck...
|
||||
// in SQL. Doesn't really work, but for a grid that contains
|
||||
// ALL records, and is sorted on the correct field, it does
|
||||
// actually work.
|
||||
|
||||
$subtotals = array();
|
||||
foreach ($params['post']['fields'] AS $field) {
|
||||
if (preg_match('/subtotal-(.*)$/', $field, $matches))
|
||||
$subtotals[] = array('field' => $matches[1],
|
||||
'name' => $field,
|
||||
'amount' => 0);
|
||||
}
|
||||
$subtotals = $params['subtotals'];
|
||||
|
||||
foreach ($records AS &$record) {
|
||||
foreach ($subtotals AS &$subtotal) {
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
@echo off
|
||||
mysqldump --user=pmgr --password=pmgruser --opt property_manager > H:\pmgr_dev.sql
|
||||
mysql --user=pmgr --password=pmgruser --database=pmgr_dev < H:\pmgr_dev.sql
|
||||
del H:\pmgr_dev.sql
|
||||
echo Build Complete!
|
||||
@@ -1,5 +0,0 @@
|
||||
@echo off
|
||||
mysqldump --user=pmgr --password=pmgruser --opt property_manager > H:\pmgr_sand.sql
|
||||
mysql --user=pmgr --password=pmgruser --database=pmgr_sand < H:\pmgr_sand.sql
|
||||
del H:\pmgr_sand.sql
|
||||
echo Build Complete!
|
||||
@@ -5,17 +5,17 @@ class DATABASE_CONFIG {
|
||||
'driver' => 'mysql',
|
||||
'persistent' => false,
|
||||
'host' => 'localhost',
|
||||
'login' => 'pmgr',
|
||||
'password' => 'pmgruser',
|
||||
'database' => 'property_manager',
|
||||
'prefix' => 'pmgr_',
|
||||
'login' => 'perki2_pmgruser',
|
||||
'password' => 'pmgrauth',
|
||||
'database' => 'perki2_pmgr',
|
||||
'prefix' => '',
|
||||
);
|
||||
|
||||
function __construct() {
|
||||
if (devbox())
|
||||
$this->default['database'] = 'pmgr_dev';
|
||||
$this->default['database'] = 'perki2_pmgr_dev';
|
||||
if (sandbox())
|
||||
$this->default['database'] = 'pmgr_sand';
|
||||
$this->default['database'] = 'perki2_pmgr_sand';
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -334,15 +334,6 @@ class LeasesController extends AppController {
|
||||
* - Closes a lease to any further action
|
||||
*/
|
||||
|
||||
// REVISIT <AP>: 20090809
|
||||
// While cleaning up the sitelink data, then delete reldep()
|
||||
function reldep($id) {
|
||||
$this->Lease->id = $id;
|
||||
$stamp = $this->Lease->field('moveout_date');
|
||||
$this->Lease->releaseSecurityDeposits($id, $stamp);
|
||||
$this->redirect(array('action'=>'view', $id));
|
||||
}
|
||||
|
||||
function close($id) {
|
||||
// REVISIT <AP>: 20090708
|
||||
// We should probably seek confirmation first...
|
||||
@@ -355,6 +346,21 @@ class LeasesController extends AppController {
|
||||
$this->redirect(array('action'=>'view', $id));
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* action: open
|
||||
* - Re-opens a lease for further action
|
||||
*/
|
||||
|
||||
function open($id) {
|
||||
// REVISIT <AP>: 20131204
|
||||
// We should probably seek confirmation first, since this wipes out
|
||||
// the old close date, with no way to restore that date.
|
||||
$this->Lease->reopen($id);
|
||||
$this->redirect(array('action'=>'view', $id));
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
@@ -574,13 +580,18 @@ class LeasesController extends AppController {
|
||||
$this->addSideMenuLink('Write-Off',
|
||||
array('action' => 'bad_debt', $id), null,
|
||||
'ACTION');
|
||||
|
||||
if ($this->Lease->closeable($id))
|
||||
$this->addSideMenuLink('Close',
|
||||
array('action' => 'close', $id), null,
|
||||
'ACTION');
|
||||
}
|
||||
|
||||
if ($this->Lease->closeable($id))
|
||||
$this->addSideMenuLink('Close',
|
||||
array('action' => 'close', $id), null,
|
||||
'ACTION');
|
||||
|
||||
if ($this->Lease->isClosed($id))
|
||||
$this->addSideMenuLink('Re-Open',
|
||||
array('action' => 'open', $id), null,
|
||||
'ACTION');
|
||||
|
||||
// Prepare to render
|
||||
$title = 'Lease: #' . $lease['Lease']['id'];
|
||||
$this->set(compact('lease', 'title',
|
||||
|
||||
216
site/controllers/locks_controller.php
Normal file
216
site/controllers/locks_controller.php
Normal file
@@ -0,0 +1,216 @@
|
||||
<?php
|
||||
|
||||
class LocksController extends AppController {
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* override: addGridViewSideMenuLinks
|
||||
* - Adds grid view navigation side menu links
|
||||
*/
|
||||
|
||||
function addGridViewSideMenuLinks() {
|
||||
parent::addGridViewSideMenuLinks();
|
||||
|
||||
$this->addSideMenuLink('List',
|
||||
array('controller' => 'locks', 'action' => 'all'), null,
|
||||
'CONTROLLER');
|
||||
$this->addSideMenuLink('Add',
|
||||
array('controller' => 'locks', 'action' => 'add'), null,
|
||||
'CONTROLLER');
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* action: index / all
|
||||
* - Generate a listing of locks
|
||||
*/
|
||||
|
||||
function index() { $this->all(); }
|
||||
function all() { $this->gridView('Locks', 'all'); }
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* virtuals: gridData
|
||||
* - With the application controller handling the gridData action,
|
||||
* these virtual functions ensure that the correct data is passed
|
||||
* to jqGrid.
|
||||
*/
|
||||
|
||||
/* function gridDataCountTables(&$params, &$model) { */
|
||||
/* return array('link' => array('Unit')); */
|
||||
/* } */
|
||||
|
||||
function gridDataTables(&$params, &$model) {
|
||||
$tables = parent::gridDataTables($params, $model);
|
||||
$tables['link']['LocksUnit'] = array();
|
||||
return $tables;
|
||||
}
|
||||
|
||||
function gridDataFields(&$params, &$model) {
|
||||
$fields = parent::gridDataFields($params, $model);
|
||||
$fields[] = 'COUNT(LocksUnit.id) AS inuse';
|
||||
$fields[] = 'IF(Lock.qty > COUNT(LocksUnit.id), Lock.qty - COUNT(LocksUnit.id), 0) AS avail';
|
||||
return $fields;
|
||||
}
|
||||
|
||||
function gridDataPostProcessLinks(&$params, &$model, &$records, $links) {
|
||||
$links['Lock'] = array('name');
|
||||
return parent::gridDataPostProcessLinks($params, $model, $records, $links);
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* action: view
|
||||
* - Displays information about a specific entry
|
||||
*/
|
||||
|
||||
function view($id = null) {
|
||||
if (!$id) {
|
||||
$this->Session->setFlash(__('Invalid Item.', true));
|
||||
$this->redirect(array('controller' => 'locks', 'action'=>'index'));
|
||||
}
|
||||
|
||||
// Get the lock and related fields
|
||||
$this->Lock->id = $id;
|
||||
$lock = $this->Lock->find
|
||||
('first', array
|
||||
('contain' => array(),
|
||||
));
|
||||
//$lock['Lock'] = $lock[0] + $lock['lock'];
|
||||
//unset($lock[0]);
|
||||
|
||||
$this->addSideMenuLink('Edit',
|
||||
array('action' => 'edit', $id), null,
|
||||
'ACTION');
|
||||
|
||||
$this->addSideMenuLink('Delete',
|
||||
array('action' => 'delete', $id), null,
|
||||
'ACTION');
|
||||
|
||||
$this->set(compact('lock'));
|
||||
|
||||
// Prepare to render.
|
||||
$title = "Lock : {$lock['Lock']['name']}";
|
||||
$this->set(compact('title'));
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* action: edit
|
||||
* - Edit customer information
|
||||
*/
|
||||
|
||||
function edit($id = null) {
|
||||
if (isset($this->data)) {
|
||||
// Check to see if the operation was cancelled.
|
||||
if (isset($this->params['form']['cancel'])) {
|
||||
if (isset($this->data['Lock']['id']))
|
||||
$this->redirect(array('action'=>'view', $this->data['Lock']['id']));
|
||||
|
||||
$this->redirect(array('action'=>'index'));
|
||||
}
|
||||
|
||||
// Save the lock and all associated data
|
||||
if (!$this->Lock->saveLock($this->data)) {
|
||||
$this->Session->setFlash("LOCK SAVE FAILED", true);
|
||||
pr("LOCK SAVE FAILED");
|
||||
}
|
||||
|
||||
// View the lock by redirect
|
||||
$this->redirect(array('action'=>'view', $this->Lock->id));
|
||||
}
|
||||
|
||||
if ($id) {
|
||||
// Get details on this customer, its contacts and leases
|
||||
$lock = $this->Lock->find
|
||||
('first', array
|
||||
('conditions' => array('Lock.id' => $id),
|
||||
));
|
||||
|
||||
$this->data = $lock;
|
||||
$title = 'Lock: ' . $this->data['Lock']['name'] . " : Edit";
|
||||
}
|
||||
else {
|
||||
$title = "Enter New Lock Information";
|
||||
$this->data = array();
|
||||
}
|
||||
|
||||
// Prepare to render.
|
||||
//pr($this->data);
|
||||
$this->set(compact('title'));
|
||||
$this->render('edit');
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* action: add
|
||||
* - Add a new lock
|
||||
*/
|
||||
|
||||
function add() {
|
||||
$this->edit();
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* action: delete
|
||||
* - Deletes an old lock
|
||||
*/
|
||||
function delete($id) {
|
||||
if (isset($this->data)) {
|
||||
// Check to see if the operation was cancelled.
|
||||
if (isset($this->params['form']['cancel'])) {
|
||||
if (isset($this->data['Lock']['id']))
|
||||
$this->redirect(array('action'=>'view', $this->data['Lock']['id']));
|
||||
|
||||
$this->redirect(array('action'=>'index'));
|
||||
}
|
||||
|
||||
// Delete the lock and all associated data
|
||||
if (!$this->Lock->destroy($this->data['Lock']['id'])) {
|
||||
$this->Session->setFlash(__('Failed to delete lock.', true));
|
||||
$this->redirect(array('action'=>'view', $this->data['Lock']['id']));
|
||||
}
|
||||
|
||||
// It's gone. Go back to the list of locks
|
||||
$this->redirect(array('controller' => 'locks', 'action'=>'index'));
|
||||
}
|
||||
|
||||
// User must specify an ID.
|
||||
if (!$id) {
|
||||
$this->Session->setFlash(__('Invalid Item.', true));
|
||||
$this->redirect(array('controller' => 'locks', 'action'=>'index'));
|
||||
}
|
||||
|
||||
// Get the lock and related fields
|
||||
$this->Lock->id = $id;
|
||||
$lock = $this->Lock->find
|
||||
('first', array
|
||||
('contain' => array('Unit'),
|
||||
));
|
||||
|
||||
// Make sure the lock isn't in use.
|
||||
if (isset($lock['Unit']) && count($lock['Unit']) > 0) {
|
||||
$this->Session->setFlash(__('Lock currently on units. Cannot be deleted!', true));
|
||||
$this->redirect(array('action'=>'view', $id));
|
||||
}
|
||||
|
||||
// Prepare to render.
|
||||
$this->data = $lock;
|
||||
$title = "Delete Lock : {$lock['Lock']['name']}";
|
||||
$this->set(compact('title'));
|
||||
}
|
||||
|
||||
}
|
||||
@@ -297,7 +297,7 @@ class StatementEntriesController extends AppController {
|
||||
'conditions' => array('LedgerEntry.account_id' => $this->StatementEntry->Account->securityDepositAccountID(),
|
||||
"effective_date >= $datefrom",
|
||||
"effective_date <= $dateto",
|
||||
'StatementEntry.id = (SELECT MIN(id) FROM pmgr_statement_entries WHERE transaction_id = `Transaction`.id)'
|
||||
'StatementEntry.id = (SELECT MIN(id) FROM statement_entries WHERE transaction_id = `Transaction`.id)'
|
||||
),
|
||||
'group' => array('YEAR(effective_date)', 'MONTH(effective_date)', 'Account.id'),
|
||||
'order' => array('YEAR(effective_date) DESC', 'MONTH(effective_date) DESC', 'Account.type', 'Account.name'),
|
||||
|
||||
@@ -93,7 +93,8 @@ class TransactionsController extends AppController {
|
||||
$fields[] = ("IF(Transaction.type = 'DEPOSIT'," .
|
||||
" COUNT(DepositTender.id)," .
|
||||
" COUNT(StatementEntry.id)) AS entries");
|
||||
return $fields;
|
||||
return array_merge($fields,
|
||||
$this->Transaction->LedgerEntry->debitCreditFields(false, true, 'Transaction'));
|
||||
}
|
||||
|
||||
function gridDataConditions(&$params, &$model) {
|
||||
@@ -503,8 +504,8 @@ class TransactionsController extends AppController {
|
||||
foreach ($deposit['types'] AS $type)
|
||||
$deposit_total += $type['total'];
|
||||
|
||||
if ($deposit['Transaction']['amount'] != $deposit_total)
|
||||
$this->INTERNAL_ERROR("Deposit items do not add up to deposit slip total");
|
||||
if (abs($deposit['Transaction']['amount'] - $deposit_total) >= .001)
|
||||
$this->INTERNAL_ERROR("Deposit items ($deposit_total) do not add up to deposit slip total (".$deposit['Transaction']['amount'].")");
|
||||
|
||||
$this->addSideMenuLink('View',
|
||||
array('action' => 'view', $id), null,
|
||||
|
||||
@@ -91,8 +91,8 @@ class UnitSizesController extends AppController {
|
||||
$fields[] = 'SUM(IF(' . $this->UnitSize->Unit->conditionUnavailable() . ', 1, 0)) AS unavailable';
|
||||
$fields[] = 'SUM(IF(' . $this->UnitSize->Unit->conditionAvailable() . ', 1, 0)) AS available';
|
||||
$fields[] = 'SUM(IF(' . $this->UnitSize->Unit->conditionOccupied() . ', 1, 0)) AS occupied';
|
||||
$fields[] = 'SUM(IF(' . $this->UnitSize->Unit->conditionOccupied() . ', 0, 1)) / COUNT(unit.id) AS vacancy';
|
||||
$fields[] = 'SUM(IF(' . $this->UnitSize->Unit->conditionOccupied() . ', 1, 0)) / COUNT(unit.id) AS occupancy';
|
||||
$fields[] = 'SUM(IF(' . $this->UnitSize->Unit->conditionOccupied() . ', 0, 1)) / COUNT(Unit.id) AS vacancy';
|
||||
$fields[] = 'SUM(IF(' . $this->UnitSize->Unit->conditionOccupied() . ', 1, 0)) / COUNT(Unit.id) AS occupancy';
|
||||
|
||||
return $fields;
|
||||
}
|
||||
|
||||
@@ -83,6 +83,7 @@ class UnitsController extends AppController {
|
||||
function gridDataTables(&$params, &$model) {
|
||||
$link = $this->gridDataCountTables($params, $model);
|
||||
$link['link']['CurrentLease']['StatementEntry'] = array('fields' => array());
|
||||
$link['link']['Lock'];
|
||||
return $link;
|
||||
}
|
||||
|
||||
@@ -213,7 +214,7 @@ class UnitsController extends AppController {
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* action: lock/unlock
|
||||
* action: lock/unlock/lien
|
||||
* - Transitions the unit into / out of the LOCKED state
|
||||
*/
|
||||
|
||||
@@ -221,8 +222,73 @@ class UnitsController extends AppController {
|
||||
$this->Unit->updateStatus($id, $status, true);
|
||||
$this->redirect(array('action' => 'view', $id));
|
||||
}
|
||||
function lock($id) { $this->status($id, 'LOCKED'); }
|
||||
function unlock($id) { $this->status($id, 'OCCUPIED'); }
|
||||
|
||||
function lock($id) {
|
||||
if (isset($this->data)) {
|
||||
$id = $this->id = $this->data['Unit']['id'];
|
||||
|
||||
// Check to see if the operation was cancelled.
|
||||
if (isset($this->params['form']['cancel'])) {
|
||||
if (isset($id))
|
||||
$this->redirect(array('action'=>'view', $id));
|
||||
|
||||
$this->redirect(array('action'=>'index'));
|
||||
}
|
||||
|
||||
// Figure out which locks the user put on
|
||||
$locks = array();
|
||||
if (isset($this->data['Lock']) && is_array($this->data['Lock'])) {
|
||||
foreach ($this->data['Lock'] AS $lock) {
|
||||
$locks[] = $lock['id'];
|
||||
}
|
||||
}
|
||||
|
||||
// Save the lock and all associated data
|
||||
if (!$this->Unit->lockUnit($id, $locks)) {
|
||||
$this->Session->setFlash("UNIT LOCK FAILED", true);
|
||||
pr("UNIT LOCK FAILED");
|
||||
}
|
||||
|
||||
// If it's no longer locked, change status to OCCUPIED
|
||||
// Could still be liened... but that would be odd.
|
||||
if (count($locks) == 0)
|
||||
$this->status($id, 'OCCUPIED');
|
||||
|
||||
// If we're not liened, we must now just be locked
|
||||
if (!$this->Unit->liened(intval($id)))
|
||||
$this->status($id, 'LOCKED');
|
||||
|
||||
// Otherwise, don't change anything.
|
||||
$this->redirect(array('action' => 'view', $id));
|
||||
}
|
||||
|
||||
if (!$id)
|
||||
$this->INTERNAL_ERROR("$id cannot be NULL");
|
||||
|
||||
// Get all locks on this unit
|
||||
$this->data = $this->Unit->find
|
||||
('first',
|
||||
array('contain' => array('Lock' => array('id')),
|
||||
'fields' => array('id', 'name'),
|
||||
'conditions' => array('Unit.id' => $id)
|
||||
));
|
||||
|
||||
$locks = $this->Unit->Lock->lockList();
|
||||
/* $locksold = $locks; */
|
||||
/* foreach ($locksold AS $name) { */
|
||||
/* $locks[$name] = $name; */
|
||||
/* } */
|
||||
$this->set(compact('locks'));
|
||||
|
||||
// Prepare to render.
|
||||
//pr($this->data);
|
||||
$this->set(compact('title'));
|
||||
// $this->render('lock');
|
||||
}
|
||||
|
||||
|
||||
function unlock($id) { $this->lock($id); }
|
||||
function lien($id) { $this->status($id, 'LIENED'); }
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
@@ -306,6 +372,7 @@ class UnitsController extends AppController {
|
||||
array('contain' =>
|
||||
array(// Models
|
||||
'UnitSize',
|
||||
'Lock',
|
||||
'Lease' => array('Customer'),
|
||||
'CurrentLease' => array('Customer')
|
||||
),
|
||||
@@ -331,23 +398,16 @@ class UnitsController extends AppController {
|
||||
$outstanding_deposit = $this->Unit->Lease->securityDepositBalance($unit['CurrentLease']['id']);
|
||||
}
|
||||
|
||||
// If the unit is occupied, but not locked, provide a
|
||||
// mechanism to do so. This doesn't have to be restricted
|
||||
// to past due customers. There are times we need to
|
||||
// overlock customers in good standing, such as if their
|
||||
// lock breaks, is cut, or missing for any reason.
|
||||
if ($this->Unit->occupied($unit['Unit']['status']) &&
|
||||
!$this->Unit->locked($unit['Unit']['status']))
|
||||
$this->addSideMenuLink('Lock',
|
||||
array('action' => 'Lock', $id), null,
|
||||
'ACTION');
|
||||
// Add a mechanism to lock ANY unit, regardless of status
|
||||
$this->addSideMenuLink($this->Unit->lockCount($id) == 0 ? 'Lock' : 'Relock/Unlock',
|
||||
array('action' => 'lock', $id), null,
|
||||
'ACTION');
|
||||
|
||||
// If the unit is locked, provide an option to unlock it,
|
||||
// unless it's locked due to lien, which is not so simple.
|
||||
// If the unit is locked, but not liened, give option to lien.
|
||||
if ($this->Unit->locked($unit['Unit']['status']) &&
|
||||
!$this->Unit->liened($unit['Unit']['status']))
|
||||
$this->addSideMenuLink('Unlock',
|
||||
array('action' => 'unlock', $id), null,
|
||||
$this->addSideMenuLink('Lien',
|
||||
array('action' => 'lien', $id), null,
|
||||
'ACTION');
|
||||
|
||||
// If there is a current lease on this unit, then provide
|
||||
|
||||
@@ -4,31 +4,6 @@ class UtilController extends AppController {
|
||||
|
||||
var $uses = array();
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* function: reset_data
|
||||
* - Development function. TO BE DELETED
|
||||
*/
|
||||
|
||||
function reset_data() {
|
||||
$this->layout = null;
|
||||
$this->autoLayout = false;
|
||||
$this->autoRender = false;
|
||||
Configure::write('debug', '0');
|
||||
$script = $_SERVER['DOCUMENT_ROOT'] . '/pmgr/build.cmd';
|
||||
echo "<P>" . date('r') . "\n";
|
||||
//echo "<P>Script: $script" . "\n";
|
||||
$handle = popen($script . ' 2>&1', 'r');
|
||||
//echo "<P>Handle: $handle; " . gettype($handle) . "\n";
|
||||
echo "<P><PRE>\n";
|
||||
while (($read = fread($handle, 2096))) {
|
||||
echo $read;
|
||||
}
|
||||
echo "</PRE>\n";
|
||||
pclose($handle);
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
@@ -40,21 +15,20 @@ class UtilController extends AppController {
|
||||
$this->autoLayout = false;
|
||||
$this->autoRender = false;
|
||||
Configure::write('debug', '0');
|
||||
$script = preg_replace('%/webroot/index.php$%',
|
||||
'/build_'.$type.'box.cmd',
|
||||
$_SERVER['SCRIPT_FILENAME']);
|
||||
|
||||
// REVISIT <AP>: 20090828
|
||||
// Just use system call
|
||||
$handle = popen($script . ' 2>&1', 'r');
|
||||
$usrpass = '--user=perki2_pmgruser --password=pmgrauth';
|
||||
$boxdb = 'perki2_pmgr_' . $type;
|
||||
|
||||
$handle = popen("mysqldump $usrpass --opt perki2_pmgr" .
|
||||
" | mysql $usrpass --database=$boxdb", 'r');
|
||||
while (($read = fread($handle, 2096))) {
|
||||
// Do nothing
|
||||
}
|
||||
pclose($handle);
|
||||
|
||||
$url = $_SERVER['HTTP_REFERER'];
|
||||
if (empty($url))
|
||||
$url = "/";
|
||||
if (empty($url) || $url == 'undefined')
|
||||
$url = "/$type";
|
||||
|
||||
$this->redirect($url);
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ class Contact extends AppModel {
|
||||
|
||||
// If the user has entered all new data, we need to
|
||||
// save that as a brand new entry.
|
||||
if (!isset($item['id'])) {
|
||||
if (!isset($item['id']) || $item['source'] == 'new') {
|
||||
$I = new $class();
|
||||
$I->create();
|
||||
if (!$I->save($item, false)) {
|
||||
|
||||
@@ -728,6 +728,53 @@ class Lease extends AppModel {
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* function: reopen
|
||||
* - Re-Opens the lease for further action
|
||||
*/
|
||||
|
||||
function reopen($id) {
|
||||
$this->prEnter(compact('id'));
|
||||
|
||||
if (!$this->isClosed($id))
|
||||
return $this->prReturn(false);
|
||||
|
||||
// Reset the data
|
||||
$this->create();
|
||||
$this->id = $id;
|
||||
|
||||
// Set the close date
|
||||
$this->data['Lease']['close_date'] = null;
|
||||
|
||||
// Save it!
|
||||
$this->save($this->data, false);
|
||||
|
||||
// Update the current lease count for the customer
|
||||
$this->Customer->updateLeaseCount($this->field('customer_id'));
|
||||
|
||||
return $this->prReturn(true);
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* function: isClosed
|
||||
* - Checks to see if the lease is closed
|
||||
*/
|
||||
|
||||
function isClosed($id) {
|
||||
$this->prEnter(compact('id'));
|
||||
|
||||
$this->recursive = -1;
|
||||
$this->read(null, $id);
|
||||
|
||||
return $this->prReturn(!empty($this->data['Lease']['close_date']));
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
|
||||
110
site/models/lock.php
Normal file
110
site/models/lock.php
Normal file
@@ -0,0 +1,110 @@
|
||||
<?php
|
||||
class Lock extends AppModel {
|
||||
|
||||
var $name = 'Lock';
|
||||
var $validate = array(
|
||||
'id' => array('numeric'),
|
||||
'name' => array('notempty'),
|
||||
'key' => array('notempty')
|
||||
);
|
||||
|
||||
var $hasMany = array(
|
||||
'LocksUnits'
|
||||
);
|
||||
|
||||
var $hasAndBelongsToMany = array(
|
||||
'Unit'
|
||||
);
|
||||
|
||||
var $default_log_level = array('log' => 30, 'show' => 15);
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* function: saveLock
|
||||
* - save data about a new or existing lock
|
||||
*/
|
||||
|
||||
function saveLock($data) {
|
||||
$this->prEnter(compact('data'));
|
||||
$id = $data['Lock']['id'];
|
||||
|
||||
if ($id) {
|
||||
$this->id = $id;
|
||||
|
||||
// Save the old key
|
||||
$oldkey = $this->field('key');
|
||||
$this->pr(5, compact('oldkey'));
|
||||
|
||||
if ($this->field('key') != $data['Lock']['key']) {
|
||||
$data['Lock']['key_last'] = $this->field('key');
|
||||
$data['Lock']['key_ts'] = date('Y-m-d G:i:s');
|
||||
}
|
||||
|
||||
/* // Find the number of outstanding locks in use */
|
||||
/* $locks = $this->find('first', */
|
||||
/* array('link' => array('Unit' => array('fields' => array('Unit.id'))), */
|
||||
/* 'fields' => 'SUM(Unit.id) AS inuse', */
|
||||
/* 'conditions' => array('Lock.id' => $id), */
|
||||
/* )); */
|
||||
/* $this->pr(5, compact('locks')); */
|
||||
|
||||
/* // Can't reduce the locks if there are all in use */
|
||||
/* if ($locks[0]['inuse'] > $data['Lock']['qty']) */
|
||||
/* return $this->prReturn(false); */
|
||||
}
|
||||
else {
|
||||
// Brand new lock
|
||||
}
|
||||
|
||||
if (!$data['Lock']['qty'])
|
||||
$data['Lock']['qty'] = 1;
|
||||
|
||||
// Everything looks good... save it!
|
||||
return $this->prReturn($this->save($data, false));
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* function: destroy
|
||||
* - destroys a lock
|
||||
*/
|
||||
|
||||
function destroy($id) {
|
||||
$this->prEnter(compact('id'));
|
||||
|
||||
// Can't delete a lock that's in use... check.
|
||||
$this->id = $id;
|
||||
$lock = $this->find
|
||||
('first', array
|
||||
('contain' => array('Unit'),
|
||||
));
|
||||
|
||||
// If it's in use, bail with error
|
||||
$this->pr(1, $lock);
|
||||
if (isset($lock['Unit']) && count($lock['Unit']) > 0)
|
||||
return $this->prReturn(false);
|
||||
|
||||
// Otherwise, attempt to delete the lock from the database
|
||||
return $this->prReturn($this->delete());
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* function: lockList
|
||||
* - list of all locks in the system
|
||||
*/
|
||||
|
||||
function lockList() {
|
||||
return $this->find('list',
|
||||
array('order' =>
|
||||
array('name'),
|
||||
));
|
||||
}
|
||||
|
||||
}
|
||||
11
site/models/locks_unit.php
Normal file
11
site/models/locks_unit.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
class LocksUnit extends AppModel {
|
||||
var $primaryKey = false;
|
||||
|
||||
var $belongsTo = array(
|
||||
'Lock',
|
||||
'Unit',
|
||||
);
|
||||
|
||||
}
|
||||
?>
|
||||
@@ -25,6 +25,11 @@ class Unit extends AppModel {
|
||||
|
||||
var $hasMany = array(
|
||||
'Lease',
|
||||
'LocksUnit'
|
||||
);
|
||||
|
||||
var $hasAndBelongsToMany = array(
|
||||
'Lock'
|
||||
);
|
||||
|
||||
//var $default_log_level = array('log' => 30, 'show' => 15);
|
||||
@@ -209,6 +214,57 @@ class Unit extends AppModel {
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* function: lockUnit
|
||||
* - Put lock on unit
|
||||
*/
|
||||
function lockUnit($id, $lock_ids) {
|
||||
$this->prEnter(compact('id', 'lock_ids'));
|
||||
$this->id = $id;
|
||||
|
||||
// Remove any exising locks for this unit
|
||||
$this->LocksUnit->deleteAll
|
||||
(array('unit_id' => $id), false);
|
||||
|
||||
// We'll proceed forward as much as possible, even
|
||||
// if we encounter an error. For now, we'll assume
|
||||
// the operation will succeed.
|
||||
$ret = true;
|
||||
|
||||
// Go through each lock, and put them on the unit
|
||||
foreach ($lock_ids AS $lock_id) {
|
||||
$pair['unit_id'] = $id;
|
||||
$pair['lock_id'] = $lock_id;
|
||||
|
||||
// Save the relationship between lock and unit
|
||||
$LU = new LocksUnit();
|
||||
if (!$LU->save($pair, false))
|
||||
$ret = false;
|
||||
}
|
||||
|
||||
return $this->prReturn($ret);
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
* function: lockCount
|
||||
* - Number of locks on a unit
|
||||
*/
|
||||
function lockCount($id) {
|
||||
$this->prEnter(compact('id'));
|
||||
return $this->prReturn($this->find
|
||||
('count', array
|
||||
('fields' => array("COUNT(Lock.id) AS count"),
|
||||
'link' => array('Lock'),
|
||||
'conditions' => array('Unit.id' => $id),
|
||||
)));
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
**************************************************************************
|
||||
**************************************************************************
|
||||
|
||||
@@ -163,7 +163,7 @@ class ToolbarComponent extends Object {
|
||||
trigger_error(sprintf(__('Could not load DebugToolbar panel %s', true), $panel), E_USER_WARNING);
|
||||
continue;
|
||||
}
|
||||
$panelObj =& new $className();
|
||||
$panelObj = new $className();
|
||||
if (is_subclass_of($panelObj, 'DebugPanel') || is_subclass_of($panelObj, 'debugpanel')) {
|
||||
$this->panels[$panel] =& $panelObj;
|
||||
}
|
||||
@@ -456,7 +456,7 @@ class LogPanel extends DebugPanel {
|
||||
* @return array
|
||||
*/
|
||||
function _parseFile($filename) {
|
||||
$file =& new File($filename);
|
||||
$file = new File($filename);
|
||||
$contents = $file->read();
|
||||
$timePattern = '/(\d{4}-\d{2}\-\d{2}\s\d{1,2}\:\d{1,2}\:\d{1,2})/';
|
||||
$chunks = preg_split($timePattern, $contents, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
|
||||
|
||||
@@ -30,14 +30,14 @@ $timers = DebugKitDebugger::getTimers();
|
||||
?>
|
||||
<h2><?php __('Timers'); ?></h2>
|
||||
<p class="request-time">
|
||||
<?php $totalTime = sprintf(__('%s (seconds)', true), $number->precision(DebugKitDebugger::requestTime(), 6)); ?>
|
||||
<?php $totalTime = sprintf(__('%.6s (seconds)', true), DebugKitDebugger::requestTime()); ?>
|
||||
<?php echo $toolbar->message(__('Total Request Time:', true), $totalTime)?>
|
||||
</p>
|
||||
|
||||
<?php foreach ($timers as $timerName => $timeInfo):
|
||||
$rows[] = array(
|
||||
$timeInfo['message'],
|
||||
$number->precision($timeInfo['time'], 6)
|
||||
sprintf(__('%.6s', true), $timeInfo['time'])
|
||||
);
|
||||
$headers = array(__('Message', true), __('time in seconds', true));
|
||||
endforeach;
|
||||
|
||||
9
site/valley_storage.pmgr.htpasswd
Normal file
9
site/valley_storage.pmgr.htpasswd
Normal file
@@ -0,0 +1,9 @@
|
||||
abijah:Property Manager:a2369e3cc9e231ea6f02ce799a8b9970
|
||||
anja:Property Manager:4539d5a6e58dd5895f2f3891d29705b0
|
||||
kevin:Property Manager:f01accc9f5e5cdfc028dcf0cca837cf1
|
||||
adam:Property Manager:ae6835569bb2fc0a0a4a773580ac8cda
|
||||
shirley:Property Manager:e7e9d674c700796c99cdbf3cf105e739
|
||||
admin:Property Manager:bab2226685d9b4b66220db8df80f1822
|
||||
dev:Property Manager:e5c27b3c025e47239a45daceea2c0a00
|
||||
vasst:Property Manager:523abc6c2b8458b463d5a9baa4f58f2e
|
||||
answerfirst:Property Manager:6ac128447fab8be985c74ba7539c39b3
|
||||
@@ -68,7 +68,7 @@ function contactMethodDiv($obj, $type, $legend, $values = null) {
|
||||
'</DIV>' . "\n" .
|
||||
|
||||
// BEGIN method-div
|
||||
'<div id="'.$type.'-%{id}-method-div"' . "\n" .
|
||||
'<div id="'.$type.'-%{id}-method-div"' . '>' . "\n" .
|
||||
|
||||
$obj->element
|
||||
('form_table',
|
||||
@@ -131,14 +131,18 @@ function contactMethodTypeDiv($obj, $type, $stype, $values = null) {
|
||||
elseif ($stype === 'new') {
|
||||
$fields = array
|
||||
('type' => array('label_attributes' => array('class' => 'required'),
|
||||
'opts' => array('options' => $obj->varstore['phoneTypes']),
|
||||
'opts' => array('autocomplete' => 'off',
|
||||
'options' => $obj->varstore['phoneTypes']),
|
||||
'after' => "Physical type of the phone."),
|
||||
'phone' => array('label_attributes' => array('class' => 'required empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Required: Phone number."),
|
||||
'ext' => array('name' => "Extension",
|
||||
'label_attributes' => array('class' => 'optional empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Optional: Extension number."),
|
||||
'comment' => array('label_attributes' => array('class' => 'optional empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Optional: Comments about this phone number."),
|
||||
);
|
||||
}
|
||||
@@ -167,17 +171,23 @@ function contactMethodTypeDiv($obj, $type, $stype, $values = null) {
|
||||
elseif ($stype === 'new') {
|
||||
$fields = array
|
||||
('address' => array('label_attributes' => array('class' => 'required empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Required: First line of mailing address."),
|
||||
'city' => array('label_attributes' => array('class' => 'required empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Required."),
|
||||
'state' => array('label_attributes' => array('class' => 'required empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Required."),
|
||||
'postcode' => array('name' => 'Zip Code',
|
||||
'label_attributes' => array('class' => 'required empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Required."),
|
||||
'country' => array('label_attributes' => array('class' => 'optional empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Optional: USA is presumed."),
|
||||
'comment' => array('label_attributes' => array('class' => 'optional empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Optional: Comments about this mailing address."),
|
||||
);
|
||||
}
|
||||
@@ -208,8 +218,10 @@ function contactMethodTypeDiv($obj, $type, $stype, $values = null) {
|
||||
elseif ($stype === 'new') {
|
||||
$fields = array
|
||||
('email' => array('label_attributes' => array('class' => 'required empty'),
|
||||
'after' => "Required: E-mail address."),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Required: E-mail address."),
|
||||
'comment' => array('label_attributes' => array('class' => 'optional empty'),
|
||||
'opts' => array('autocomplete' => 'off'),
|
||||
'after' => "Optional: Comments about this email address."),
|
||||
);
|
||||
}
|
||||
|
||||
@@ -301,7 +301,7 @@ echo $this->element('customers', array
|
||||
),
|
||||
'action' => 'current',
|
||||
'nolinks' => true,
|
||||
'limit' => 10,
|
||||
'limit' => 20,
|
||||
)));
|
||||
|
||||
echo ('<DIV CLASS="receipt grid-selection-text">' .
|
||||
|
||||
@@ -157,13 +157,14 @@ echo $this->element('contacts', array
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
* Customer Account History
|
||||
* Customer Statement History
|
||||
*/
|
||||
|
||||
echo $this->element('statement_entries', array
|
||||
(// Grid configuration
|
||||
'config' => array
|
||||
('caption' => 'Customer Statement',
|
||||
'grid_setup' => array('hiddengrid' => true),
|
||||
'filter' => array('Customer.id' => $customer['Customer']['id'],
|
||||
'type !=' => 'VOID'),
|
||||
//'include' => array('Sub-Total'),
|
||||
@@ -171,6 +172,28 @@ echo $this->element('statement_entries', array
|
||||
)));
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
* Customer Transaction History
|
||||
*/
|
||||
|
||||
echo $this->element('transactions', array
|
||||
(// Grid configuration
|
||||
'config' => array
|
||||
('caption' => 'Balance History',
|
||||
'limit' => 10000,
|
||||
'limitOptions' => array('10000'),
|
||||
'sort_column' => 'Timestamp',
|
||||
'sort_order' => 'ASC',
|
||||
'grid_setup' => array('hiddengrid' => true),
|
||||
'filter' => array('Customer.id' => $customer['Customer']['id']),
|
||||
'include' => array('Comment', 'PosNeg', 'Balance'),
|
||||
'exclude' => array('Amount', 'Entries'),
|
||||
'remap' => array(//'ID' => 'Invoice',
|
||||
'PosNeg' => 'Amount',
|
||||
//'Entries' => 'Charges',
|
||||
),
|
||||
)));
|
||||
|
||||
/* End "detail supporting" div */
|
||||
echo '</div>' . "\n";
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
// Define the table columns
|
||||
$cols = array();
|
||||
$cols['Customer'] = array('index' => 'Customer.id', 'formatter' => 'id');
|
||||
$cols['Relationship'] = array('index' => 'ContactsCustomer.type', 'formatter' => 'enum');
|
||||
$cols['Name'] = array('index' => 'Customer.name', 'formatter' => 'longname');
|
||||
$cols['Last Name'] = array('index' => 'PrimaryContact.last_name', 'formatter' => 'name');
|
||||
|
||||
@@ -113,7 +113,7 @@ foreach ($fields AS $field => $config) {
|
||||
if (isset($config['with_value_after']))
|
||||
$value = $value . $config['with_value_after'];
|
||||
elseif (isset($with_value_after))
|
||||
$value = $valeu . $with_value_after;
|
||||
$value = $value . $with_value_after;
|
||||
$cells[] = $value;
|
||||
|
||||
if ($include_after) {
|
||||
|
||||
@@ -130,12 +130,12 @@ foreach ($jqGridColumns AS $header => &$col) {
|
||||
elseif ($col['formatter'] === 'currency') {
|
||||
// Use our custom formatting for currency
|
||||
$col['formatter'] = array('--special' => 'currencyFormatter');
|
||||
$default['width'] = 85;
|
||||
$default['width'] = 65;
|
||||
$default['align'] = 'right';
|
||||
}
|
||||
elseif ($col['formatter'] === 'date') {
|
||||
$default['formatoptions'] = array('newformat' => 'm/d/Y');
|
||||
$default['width'] = 95;
|
||||
$default['width'] = 90;
|
||||
$default['align'] = 'center';
|
||||
}
|
||||
elseif (preg_match("/^(long|short)?name$/",
|
||||
|
||||
20
site/views/elements/locks.ctp
Normal file
20
site/views/elements/locks.ctp
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php /* -*- mode:PHP -*- */
|
||||
|
||||
// Define the table columns
|
||||
$cols = array();
|
||||
$cols['Name'] = array('index' => 'name', 'formatter' => 'name');
|
||||
$cols['Comment'] = array('index' => 'comment', 'formatter' => 'comment');
|
||||
$cols['Key/Combo'] = array('index' => 'key', 'formatter' => 'number');
|
||||
$cols['Previous Key'] = array('index' => 'key_last', 'formatter' => 'number');
|
||||
$cols['Quantity'] = array('index' => 'qty', 'formatter' => 'number');
|
||||
$cols['In Use'] = array('index' => 'inuse', 'formatter' => 'number');
|
||||
$cols['Available'] = array('index' => 'avail', 'formatter' => 'number');
|
||||
|
||||
// Render the grid
|
||||
$grid
|
||||
->columns($cols)
|
||||
->sortField('Name')
|
||||
->defaultFields(array('Name'))
|
||||
->searchFields(array('Name'))
|
||||
->render($this, isset($config) ? $config : null,
|
||||
array_diff(array_keys($cols), array('Previous Key')));
|
||||
@@ -5,7 +5,7 @@ $cols = array();
|
||||
$cols['Date'] = array('index' => 'Transaction.stamp', 'formatter' => 'date');
|
||||
$cols['Customer'] = array('index' => 'Customer.name', 'formatter' => 'longname');
|
||||
$cols['Item'] = array('index' => 'Tender.name', 'formatter' => 'longname');
|
||||
$cols['Type'] = array('index' => 'TenderType.name', 'formatter' => 'name');
|
||||
$cols['Type'] = array('index' => 'TenderType.name', 'formatter' => 'shortname');
|
||||
$cols['Comment'] = array('index' => 'Tender.comment', 'formatter' => 'comment');
|
||||
$cols['Amount'] = array('index' => 'LedgerEntry.amount', 'formatter' => 'currency');
|
||||
$cols['Sub-Total'] = array('index' => 'subtotal-LedgerEntry.amount', 'formatter' => 'currency');
|
||||
|
||||
@@ -11,9 +11,11 @@ $cols['ID'] = array('index' => 'Transaction.id', 'formatter' =
|
||||
$cols['Type'] = array('index' => 'Transaction.type', 'formatter' => 'enum');
|
||||
$cols['Customer'] = array('index' => 'Customer.name', 'formatter' => 'longname');
|
||||
$cols['Timestamp'] = array('index' => 'Transaction.stamp', 'formatter' => 'date');
|
||||
$cols['Comment'] = array('index' => 'Transaction.comment', 'formatter' => 'comment', 'sortable' => false);
|
||||
$cols['Entries'] = array('index' => 'entries', 'formatter' => 'number');
|
||||
$cols['Amount'] = array('index' => 'Transaction.amount', 'formatter' => 'currency');
|
||||
$cols['Comment'] = array('index' => 'Transaction.comment', 'formatter' => 'comment');
|
||||
$cols['PosNeg'] = array('index' => 'balance', 'formatter' => 'currency');
|
||||
$cols['Balance'] = array('index' => 'subtotal-balance', 'formatter' => 'currency', 'sortable' => false);
|
||||
|
||||
// Render the grid
|
||||
$grid
|
||||
@@ -22,4 +24,4 @@ $grid
|
||||
->defaultFields(array('ID', 'Timestamp'))
|
||||
->searchFields(array('Type', 'Comment'))
|
||||
->render($this, isset($config) ? $config : null,
|
||||
array_merge($include, array_diff(array_keys($cols), array('Customer', 'Comment'))));
|
||||
array_merge($include, array_diff(array_keys($cols), array('Customer', 'PosNeg', 'Balance', 'Comment'))));
|
||||
|
||||
18
site/views/locks/delete.ctp
Normal file
18
site/views/locks/delete.ctp
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php /* -*- mode:PHP -*- */
|
||||
; // alignment
|
||||
|
||||
/**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
* Lock Delete
|
||||
*/
|
||||
|
||||
echo '<div class="lock delete">' . "\n";
|
||||
|
||||
echo $form->create('Lock', array('action' => 'delete')) . "\n";
|
||||
echo $form->input('id') . "\n";
|
||||
echo $form->submit('Delete Lock') . "\n";
|
||||
echo $form->submit('Cancel', array('name' => 'cancel')) . "\n";
|
||||
echo $form->end() . "\n";
|
||||
echo '</div>' . "\n";
|
||||
48
site/views/locks/edit.ctp
Normal file
48
site/views/locks/edit.ctp
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php /* -*- mode:PHP -*- */
|
||||
|
||||
//pr($this->data);
|
||||
?>
|
||||
|
||||
<script type="text/javascript"><!--
|
||||
|
||||
// Reset the form
|
||||
function newKey(dig) {
|
||||
$('#LockKey').val(("000000000" + Math.floor(Math.random()*(Math.pow(10,dig)))) . slice(-1*dig));
|
||||
}
|
||||
|
||||
--></script>
|
||||
|
||||
<?php
|
||||
; // alignment
|
||||
|
||||
/**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
* Lock Edit
|
||||
*/
|
||||
|
||||
echo '<div class="lock edit">' . "\n";
|
||||
|
||||
echo $form->create('Lock', array('action' => 'edit')) . "\n";
|
||||
echo $form->input('id') . "\n";
|
||||
|
||||
echo($this->element
|
||||
('form_table',
|
||||
array('class' => 'item lock detail',
|
||||
'caption' => isset($this->data['Lock']) ? 'Edit Lock' : 'New Lock',
|
||||
'fields' => array
|
||||
('name' => array('label_attributes' => array('class' => 'empty'),
|
||||
'after' => ("Name of the Lock Set")),
|
||||
'qty' => array('label_attributes' => array('class' => 'empty'),
|
||||
'after' => ("Quantity")),
|
||||
'key' => array('label_attributes' => array('class' => 'empty'),
|
||||
'after' => ('(<A HREF="#" ONCLICK="newKey(4); return false;">New</A>) Key Code / Combination')),
|
||||
'comment' => array('label_attributes' => array('class' => 'optional empty'),
|
||||
'after' => 'Optional: Comments about this lock set.'),
|
||||
))) . "\n");
|
||||
|
||||
echo $form->submit(isset($this->data['Lock']) ? 'Update' : 'Add New Lock') . "\n";
|
||||
echo $form->submit('Cancel', array('name' => 'cancel')) . "\n";
|
||||
echo $form->end() . "\n";
|
||||
echo '</div>' . "\n";
|
||||
60
site/views/locks/view.ctp
Normal file
60
site/views/locks/view.ctp
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php /* -*- mode:PHP -*- */
|
||||
|
||||
echo '<div class="lock view">' . "\n";
|
||||
|
||||
/**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
* Lock Detail Main Section
|
||||
*/
|
||||
|
||||
$lock = $lock['Lock'];
|
||||
|
||||
$rows = array();
|
||||
$rows[] = array('Name', $lock['name']);
|
||||
if ($lock['qty'] > 1)
|
||||
$rows[] = array('Quantity', $lock['qty']);
|
||||
$rows[] = array('Key', $lock['key']);
|
||||
if (!empty($lock['key_last'])) {
|
||||
$rows[] = array('Previous Key', $lock['key_last'] . " (Changed on " . FormatHelper::datetime($lock['key_ts']) . ")");
|
||||
}
|
||||
$rows[] = array('Comment', $lock['comment']);
|
||||
|
||||
echo $this->element('table',
|
||||
array('class' => 'item lock detail',
|
||||
'caption' => 'Lock Information',
|
||||
'rows' => $rows,
|
||||
'column_class' => array('field', 'value')));
|
||||
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
* Supporting Elements Section
|
||||
*/
|
||||
|
||||
echo '<div CLASS="detail supporting">' . "\n";
|
||||
|
||||
/**********************************************************************
|
||||
* Unit Entries
|
||||
*/
|
||||
|
||||
echo $this->element('units', array
|
||||
(// Grid configuration
|
||||
'config' => array
|
||||
('caption' => "Units locked by " . $lock['name'],
|
||||
'filter' => array('Lock.id' => $lock['id']),
|
||||
'include' => array('Comment'),
|
||||
'exclude' => array('Size', 'Area', 'Rent'),
|
||||
)));
|
||||
|
||||
|
||||
/* End "detail supporting" div */
|
||||
echo '</div>' . "\n";
|
||||
|
||||
/* End page div */
|
||||
echo '</div>' . "\n";
|
||||
|
||||
@@ -64,6 +64,7 @@ else {
|
||||
'config' => array
|
||||
(
|
||||
'caption' => 'Deposited Items',
|
||||
'sort_column' => 'Item',
|
||||
'filter' => array('deposit_transaction_id'
|
||||
=> $deposit['Transaction']['id'],
|
||||
),
|
||||
|
||||
@@ -68,7 +68,7 @@ echo '<div CLASS="detail supporting">' . "\n";
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
* Ledger Entries
|
||||
* Unit Entries
|
||||
*/
|
||||
|
||||
echo $this->element('units', array
|
||||
|
||||
132
site/views/units/lock.ctp
Normal file
132
site/views/units/lock.ctp
Normal file
@@ -0,0 +1,132 @@
|
||||
<?php /* -*- mode:PHP -*- */
|
||||
|
||||
/**********************************************************************
|
||||
* Because we make use of functions here,
|
||||
* we need to put our top level variables somewhere
|
||||
* we can access them.
|
||||
*/
|
||||
$this->varstore = compact('locks');
|
||||
|
||||
function lockDiv($obj) {
|
||||
|
||||
$div =
|
||||
// BEGIN lock-div
|
||||
'<DIV>' . "\n" .
|
||||
// BEGIN lock-fieldset
|
||||
'<FIELDSET CLASS="lock subset">' . "\n" .
|
||||
'<LEGEND>Lock #%{id} (%{remove})</LEGEND>' . "\n" .
|
||||
|
||||
// BEGIN lock-n-div
|
||||
'<div id="lock-%{id}-div">' . "\n" .
|
||||
|
||||
$obj->element
|
||||
('form_table',
|
||||
array('class' => "item lock entry",
|
||||
'field_prefix' => 'Lock.%{id}',
|
||||
'fields' => array
|
||||
(
|
||||
'id' => array('name' => 'Select Lock',
|
||||
'opts' => array('options' => $obj->varstore['locks'])),
|
||||
))) . "\n" .
|
||||
|
||||
// END lock-n-div
|
||||
'</div>' . "\n" .
|
||||
|
||||
// END lock-fieldset
|
||||
'</FIELDSET>' . "\n" .
|
||||
// END lock-div
|
||||
'</DIV>'
|
||||
;
|
||||
|
||||
return $div;
|
||||
}
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
* Javascript
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<script type="text/javascript"><!--
|
||||
|
||||
function addLock(flash) {
|
||||
addDiv('lock-entry-id', 'lock', 'locks', flash, <?php
|
||||
echo FormatHelper::phpVarToJavascript
|
||||
(lockDiv($this),
|
||||
null,
|
||||
' ');
|
||||
?>
|
||||
);
|
||||
}
|
||||
|
||||
// Reset the form
|
||||
function resetForm() {
|
||||
$('#locks').html('');
|
||||
$('#lock-entry-id').val(1);
|
||||
|
||||
<?php foreach ($this->data['Lock'] AS $lock): ?>
|
||||
addDiv('lock-entry-id', 'lock', 'locks', false, <?php
|
||||
echo FormatHelper::phpVarToJavascript
|
||||
(lockDiv($this),
|
||||
null,
|
||||
' ');
|
||||
?>
|
||||
);
|
||||
$('#Lock'+($('#lock-entry-id').val()-1)+'Id').val(<?php echo $lock['id'] ?>);
|
||||
<?php endforeach; ?>
|
||||
|
||||
if ($("#lock-entry-id").val() == 1) {
|
||||
addDiv('lock-entry-id', 'lock', 'locks', false, <?php
|
||||
echo FormatHelper::phpVarToJavascript
|
||||
(lockDiv($this),
|
||||
null,
|
||||
' ');
|
||||
?>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
resetForm();
|
||||
});
|
||||
|
||||
--></script>
|
||||
|
||||
<?php
|
||||
; // alignment
|
||||
|
||||
/**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
**********************************************************************
|
||||
* Unit-Lock Edit
|
||||
*/
|
||||
|
||||
echo '<div class="unit-lock edit">' . "\n";
|
||||
|
||||
echo $form->create('Unit', array('action' => 'lock')) . "\n";
|
||||
echo $form->hidden('id') . "\n";
|
||||
|
||||
?>
|
||||
|
||||
<div CLASS="dynamic-set">
|
||||
<h3>Set Locks on Unit <?php echo $this->data['Unit']['name']; ?></h3>
|
||||
<input type="hidden" id="lock-entry-id" value="0">
|
||||
<div id="locks"></div>
|
||||
<fieldset> <legend>
|
||||
<a href="#" onClick="addLock(true); return false;">Add a Lock</a>
|
||||
</legend> </fieldset>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
; // Alignment
|
||||
|
||||
echo $form->submit('Update Locks') . "\n";
|
||||
echo $form->submit('Cancel', array('name' => 'cancel')) . "\n";
|
||||
echo $form->end() . "\n";
|
||||
echo '</div>' . "\n";
|
||||
|
||||
@@ -13,12 +13,25 @@ $leases = $unit['Lease'];
|
||||
$current_lease = $unit['CurrentLease'];
|
||||
$unit_size = $unit['UnitSize'];
|
||||
|
||||
if (isset($unit['Lock']))
|
||||
$locks = $unit['Lock'];
|
||||
|
||||
if (isset($unit['Unit']))
|
||||
$unit = $unit['Unit'];
|
||||
|
||||
$rows = array();
|
||||
$rows[] = array('Name', $unit['name']);
|
||||
$rows[] = array('Status', $unit['status']);
|
||||
if (count($locks) > 0) {
|
||||
$links = array();
|
||||
foreach ($locks AS $lock) {
|
||||
$links[] = $html->link($lock['name'],
|
||||
array('controller' => 'locks',
|
||||
'action' => 'view',
|
||||
$lock['id']));
|
||||
}
|
||||
$rows[] = array('Locks', count($locks) . ": " . implode(", ", $links));
|
||||
}
|
||||
$rows[] = array('Size', $html->link($unit_size['name'],
|
||||
array('controller' => 'unit_sizes',
|
||||
'action' => 'view',
|
||||
|
||||
@@ -55,7 +55,7 @@
|
||||
*
|
||||
*/
|
||||
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
|
||||
define('CAKE_CORE_INCLUDE_PATH', 'D:\Website\localhost\CakePHP');
|
||||
define('CAKE_CORE_INCLUDE_PATH', ROOT . DS . APP_DIR . DS . 'CakePHP');
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user