I am in the near the end of building a soap not review modification. The billing department wants to know that the physician has reviewed the soap note written by the nurse. So, I am adding a block at the end of the SOAP note that says ‘Electronically Signed by Doctor’.
The problem I ran into is getting this to display.
I built this function in FormSOAP.class.php.
function set_signed($sd){
if(!empty($sd)){
$this->signed = $sd;
}
}
function get_signed(){
if($this->sig === 1){
return $this->signed;
}
}
But if you have a working system sub 1. you need to get advise from a more experienced person to change the Forms for input, view and print. (Can’t help you with this) Do a search on the WIKI pages and in the Forums where you might find solutions for your extra fields.