This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ git checkout ojs-stable-2_4 | |
| Branch ojs-stable-2_4 set up to track remote branch ojs-stable-2_4 from upstream. | |
| Switched to a new branch 'ojs-stable-2_4' | |
| $ git merge upstream/ojs-stable-2_4 | |
| Already up-to-date. | |
| $ git push | |
| ERROR: Permission to pkp/ojs.git denied to USER. | |
| fatal: Could not read from remote repository. | |
| Please make sure you have the correct access rights |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| array( | |
| 'Shift' => array( | |
| 'user_id' => '1', | |
| 'date' => '2011-12-01', | |
| 'shifts_type_id' => '1' | |
| ) | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- phpMyAdmin SQL Dump | |
| -- version 3.4.11.1deb1 | |
| -- http://www.phpmyadmin.net | |
| -- | |
| -- Host: localhost | |
| -- Generation Time: Feb 03, 2013 at 11:23 PM | |
| -- Server version: 5.5.29 | |
| -- PHP Version: 5.4.6-1ubuntu1.1 | |
| SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function over21($member = null) { | |
| $isOver21 = true; | |
| return $isOver21; | |
| } | |
| function memberExists($member = null) { | |
| $memberExists = true; | |
| return $memberExists; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| App::uses('AppModel', 'Model'); | |
| /** | |
| * Billing Model | |
| * | |
| * @property BillingsItem $BillingsItem | |
| */ | |
| class Billing extends AppModel { | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $conditions = array_merge($conditions, array( | |
| 'Profile.cb_ohip' => $healthcare_provider, | |
| )); | |
| return $this->User->Profile->find('all', array( | |
| 'contain' => array( | |
| 'Shift' => array( | |
| 'fields' => array('id', 'date'), | |
| 'conditions' => array( | |
| 'Shift.date >=' => $start_date, | |
| 'Shift.date <=' => $end_date, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Provider,Service date,Unique patients seen | |
| 10800,2007-12-03,1 | |
| 10800,2008-03-21,9 | |
| 10800,2008-04-16,3 | |
| 10800,2008-04-18,6 | |
| 11451,2008-06-27,24 | |
| 11451,2008-07-10,1 | |
| 11451,2008-07-14,31 | |
| 11451,2008-07-15,6 | |
| 12980,2008-06-17,24 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| array( | |
| (int) 1 => array( | |
| 'Billing' => array( | |
| 'patient_birthdate' => '19530624', | |
| 'payment_program' => 'HCP', | |
| 'payee' => 'P', | |
| 'referring' => '010065', | |
| 'healthcare_provider' => '010800' | |
| ), | |
| 'BillingsItem' => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| array( | |
| (int) 1 => array( | |
| 'Billing' => array( | |
| 'patient_birthdate' => '19200625', | |
| 'payment_program' => 'HCP', | |
| 'payee' => 'P', | |
| 'referring' => '010065', | |
| 'healthcare_provider' => '010800', | |
| (int) 0 => array( | |
| 'BillingsItem' => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| App::uses('AppModel', 'Model'); | |
| /** | |
| * BillingsItem Model | |
| * | |
| * @property Billings $Billings | |
| */ | |
| class BillingsItem extends AppModel { | |
| /** |