Skip to content

Commit

Permalink
fee sheet bug fix from Terry
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Apr 4, 2017
1 parent eee08a0 commit b985739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/FeeSheet.class.php
Expand Up @@ -116,7 +116,7 @@ function __construct($pid=0, $encounter=0) {
"WHERE fe.pid = ? AND fe.encounter = ? LIMIT 1", array($this->pid, $this->encounter) );
$this->visit_date = substr($visit_row['date'], 0, 10);
$this->provider_id = $visit_row['provider_id'];
if (empty($this->provider_id)) $this->provider_id = findProvider();
if (empty($this->provider_id)) $this->provider_id = $this->findProvider();
$this->supervisor_id = $visit_row['supervisor_id'];
// This flag is specific to IPPF validation at form submit time. It indicates
// that most contraceptive services and products should match up on the fee sheet.
Expand Down

0 comments on commit b985739

Please sign in to comment.