ICD10 codes in post payments

Been using OpenEMR for years upgraded to 5.0 and can not post payments. Why are ICD10 diag codes appearing in post payments screen, they have no fees and are diag only. They are using to many input variables, takes way to long to get onscreen and the payment will not post if max_input_vars is set to low, mine is at 6000 already, WTF. What do I do, any ideas.

Hi Kim ,

Can you please share your screen shot ?
Also check your apache error log to find the error message.

Visolve

is this a windows upgrade?

I can not understand why this topic has never been mentioned. I have
been using OpenEMR since 2012 and serving it with Windows Server,
currently it is Windows Server 2016 Standard, PHP 7.1 on a Intel I5
Platform. My data files are very large, this patient has a visit every 2
weeks since 2012 and requires a max_input_vars of 9000 to even post.
These extra ICD10 codes are causing way to many input fields to be
generated and put a strain on system resources let alone the speed.
Understand that I am a Windows system level programmer for 35 plus years
and usually just go in and fix this myself but wanted to call this to
everyone’s attention. I currently am programming a F.H.I.R application
that integrates with OpenEMR and run a HISP service for several
hospitals and many doctors in the area. This system is a new install and
is not part of my data center so here is screen shot.

It is like 10 page ups to the top, note the encounter 34k+. I have lots
of FHIR code that I could contribute.

Not sure what you are asking, it was a clean install of 2016 Server,
IIS10 and PHP 7.1. MySql 5.6 with original OpenEMR data base migrated
over and upgraded from 4.0 to 5.0. Data base was created back in 2011
sometime and upgraded many times.

thinking that it may be related to this post, V5.0.0 too slow on Windows
since v5.0 uses innodb storage engine in mysql now may need to adjust settings for better performance

Hi @Kim_Weesner ,
That’s an impressive screenshot(makes the layout engine editor ui max_input_vars issue seem like child’s play). Plan to play around with this a bit. Is the ui that shows this at Fees->Posting?
thanks,
-brady

simple fix :slight_smile: not sure how this ICD9 rebel escaped the imperial troopers

there’s also an ICD 9 reference on line 185 of this file

pull request coming soon to a repo near you

Thank you so much. I will edit this is and let you know.
My next one is era payments is not working, fails bringing up window, I am not sure how to fix this one, PHP 7.1 problem? :
function OnloadAction()
{//Displays message after upload action,and popups the details.
after_value=document.getElementById(‘after_value’).value;
if(after_value!=’’)
{
alert(after_value);
}

<?php if ($_FILES['form_erafile']['size']) { ?>
  var f = document.forms[0];
  var debug = <?php echo htmlspecialchars($_REQUEST['form_without']*1);?> ;
  var paydate = f.check_date.value;
  var post_to_date = f.post_to_date.value;
  var deposit_date = f.deposit_date.value;
  window.open('sl_eob_process.php?&eraname=<?php echo htmlspecialchars($eraname); ?>&debug=' +   debug + '&paydate=' + paydate + '&post_to_date=' + post_to_date + '&deposit_date=' + deposit_date + '&original=original' + '&InsId=<?php echo htmlspecialchars(formData('hidden_type_code')); ?>' , '_blank');
  return false;
<?php } ?>

Not sure what’s wrong here.
Thank you again.

I am going to owe you guys some FHIR code. Worked great, thank you.

you’re welcome, glad to help. do you have anything in your php error log that looks incriminating?