File tree 5 files changed +15
-9
lines changed 5 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"profiles" : {
3
3
"Lab Billing WinForms UI" : {
4
- "commandName" : " Project"
4
+ "commandName" : " Project" ,
5
+ "commandLineArgs" : " /TEST"
5
6
}
6
7
}
7
8
}
Original file line number Diff line number Diff line change 6
6
[ assembly: System . Reflection . AssemblyCompanyAttribute ( "Lab Patient Accounting" ) ]
7
7
[ assembly: System . Reflection . AssemblyCopyrightAttribute ( "Copyright 2020-2024" ) ]
8
8
[ assembly: System . Reflection . AssemblyDescriptionAttribute ( "..." ) ]
9
- [ assembly: System . Reflection . AssemblyFileVersionAttribute ( "2024.8.5.926 " ) ]
10
- [ assembly: System . Reflection . AssemblyInformationalVersionAttribute ( "2024.8.5.926 " ) ]
9
+ [ assembly: System . Reflection . AssemblyFileVersionAttribute ( "2024.8.6.585 " ) ]
10
+ [ assembly: System . Reflection . AssemblyInformationalVersionAttribute ( "2024.8.6.585 " ) ]
11
11
[ assembly: System . Reflection . AssemblyProductAttribute ( "..." ) ]
12
12
[ assembly: System . Reflection . AssemblyTitleAttribute ( "Lab Patient Accounting" ) ]
13
- [ assembly: AssemblyVersion ( "2024.8.5.926 " ) ]
13
+ [ assembly: AssemblyVersion ( "2024.8.6.585 " ) ]
14
14
Original file line number Diff line number Diff line change @@ -290,6 +290,7 @@ public static class Dictionaries
290
290
{ "59" , "Distinct Procedural Service" } ,
291
291
{ "90" , "Reference (Outside) Laboratory" } ,
292
292
{ "91" , "Repeat Test" } ,
293
+ { "GZ" , "No ABN obtained" } ,
293
294
{ "QW" , "CLIA Waived Test" }
294
295
} ;
295
296
}
Original file line number Diff line number Diff line change @@ -1726,7 +1726,7 @@ private List<string> ValidateLMRP(Account account)
1726
1726
if ( ruleDef == null )
1727
1727
continue ;
1728
1728
1729
- bool dxIsValid = ruleDef . DxIsValid == 0 ? false : true ;
1729
+ bool dxIsValid = ruleDef . DxIsValid != 0 ;
1730
1730
bool dxSupported = false ;
1731
1731
1732
1732
foreach ( var dx in account . Pat . Diagnoses )
@@ -1741,7 +1741,11 @@ private List<string> ValidateLMRP(Account account)
1741
1741
1742
1742
if ( ! dxSupported )
1743
1743
{
1744
- errorList . Add ( $ "LMRP Violation - No dx codes support medical necessity for cpt { cpt4 } .") ;
1744
+ //check if charge has a GZ modifier
1745
+ if ( ! account . BillableCharges . Any ( x => x . ChrgDetails . Where ( y => y . Cpt4 == cpt4 ) . Any ( z => z . Modifier == "GZ" || z . Modifier2 == "GZ" ) ) )
1746
+ {
1747
+ errorList . Add ( $ "LMRP Violation - No dx codes support medical necessity for cpt { cpt4 } .") ;
1748
+ }
1745
1749
}
1746
1750
}
1747
1751
uow . Commit ( ) ;
Original file line number Diff line number Diff line change 255
255
{
256
256
"Name" = "8:Microsoft Visual Studio"
257
257
"ProductName" = "8:LabBillingJobsSetup"
258
- "ProductCode" = "8:{DB7141FE-404A-4D80-8563-64FC86B4F18E }"
259
- "PackageCode" = "8:{4AC3A8A1-34E6-4337-B309-78857081BB40 }"
258
+ "ProductCode" = "8:{7BFA7CA3-6E7B-46BB-8449-78ACAC933FB9 }"
259
+ "PackageCode" = "8:{C510493E-C840-497B-A10B-4F550C01DDC7 }"
260
260
"UpgradeCode" = "8:{947B5E93-9B8F-4A8A-80E4-E50848C461B9}"
261
261
"AspNetVersion" = "8:2.0.50727.0"
262
262
"RestartWWWService" = "11:FALSE"
263
263
"RemovePreviousVersions" = "11:TRUE"
264
264
"DetectNewerInstalledVersion" = "11:TRUE"
265
265
"InstallAllUsers" = "11:TRUE"
266
- "ProductVersion" = "8:1.0.0 "
266
+ "ProductVersion" = "8:1.0.1 "
267
267
"Manufacturer" = "8:WTH"
268
268
"ARPHELPTELEPHONE" = "8:"
269
269
"ARPHELPLINK" = "8:"
You can’t perform that action at this time.
0 commit comments