Skip to content

Commit

Permalink
Merge pull request #7471 from stephenwaite/bf-rel-702
Browse files Browse the repository at this point in the history
Bug fixes rel 702
  • Loading branch information
stephenwaite committed Jun 10, 2024
2 parents 452becc + e9c08af commit f104cf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion interface/main/messages/messages.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
$datetime = isset($_POST['form_datetime']) ? DateTimeToYYYYMMDDHHMMSS($_POST['form_datetime']) : '';
foreach ($assigned_to_list as $assigned_to) {
if ($noteid && $assigned_to != '-patient-') {
if (checkPnotesNoteId($note_id, $_SESSION['authUser'])) {
if (checkPnotesNoteId($noteid, $_SESSION['authUser'])) {
updatePnote($noteid, $note, $form_note_type, $assigned_to, $form_message_status, $datetime);
$noteid = '';
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/Billing/X125010837I.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static function generateX12837I($pid, $encounter, $x12_partner, &$log, $u
"*" . trim($claim->x12gs03()) .
"*" . date('Ymd', $today) .
"*" . date('Hi', $today) .
"*" . BillingClaimBatchControlNumber::getGs06();
"*" . BillingClaimBatchControlNumber::getGs06() .
"*X" .
// "*" . $claim->x12gsversionstring() .
"*" . "005010X223A2" .
Expand Down

0 comments on commit f104cf7

Please sign in to comment.