blankev wrote on Wednesday, April 15, 2009:
Rod, TNX for the advise.
Now I found the following:
// IPPF: (What is IPPF???)
$code_types = array(
‘ICD9’ => array(‘id’ => 2, ‘fee’ => 0, ‘mod’ => 0, ‘just’ => ‘’, ‘rel’ => 0, ‘nofs’ => 0),
‘MA’ => array(‘id’ => 12, ‘fee’ => 1, ‘mod’ => 0, ‘just’ => ‘’, ‘rel’ => 1, ‘nofs’ => 0),
‘IPPF’ => array(‘id’ => 11, ‘fee’ => 0, ‘mod’ => 0, ‘just’ => ‘’, ‘rel’ => 0, ‘nofs’ => 1),
‘CPT4’ => array(‘id’ => 1, ‘fee’ => 0, ‘mod’ => 0, ‘just’ => ‘’, ‘rel’ => 0, ‘nofs’ => 1),
‘ACCT’ => array(‘id’ => 13, ‘fee’ => 0, ‘mod’ => 0, ‘just’ => ‘’, ‘rel’ => 0, ‘nofs’ => 1),
What do us supposed to be done with ‘mod’ and what effects does this have on trhe rest of OpenEMR?
‘just’=>’ ’ is for justification, but what code and where do I find the result of this justification?
‘rel’ => ’ ’ seems so logic that I can’t find the relevance and effects that it might have in our Fee structure on Curacao?
, ‘nofs’ => 0 or 1 and when do you want a code, but don’t want o see it in the Fee sheet?
And please give me some info on what connections are made between CPT4 and ICD9 and HCPCS
else {
// USA Clinics:
$code_types = array(
‘REK’ => array(‘id’ => 2, ‘fee’ => 0, ‘mod’ => 2, ‘just’ => ‘’ , ‘rel’ => 0, ‘nofs’ => 0),
‘SVB’ => array(‘id’ => 1, ‘fee’ => 1, ‘mod’ => 2, ‘just’ => ‘REK’, ‘rel’ => 0, ‘nofs’ => 0),
‘BZV’ => array(‘id’ => 3, ‘fee’ => 1, ‘mod’ => 2, ‘just’ => ‘REK’, ‘rel’ => 0, ‘nofs’ => 0),
I changed this part into my wanted Fee schedules, would this do the job if there are no connections between the different fee schedules?
Tnx in advance, Pimm