Skip to content

Commit f58b229

Browse files
committed
Merge remote-tracking branch 'ORIGIN/release26.3-SNAPSHOT' into 26.3_fb_lovcombo_timeofday_1266
2 parents 2cf2610 + b711db7 commit f58b229

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

wnprc_billing/resources/queries/wnprc_billing/perDiemFeeRates.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,5 @@
5858
(CAST(pdt.adate AS DATE) <= cr1.enddate OR cr1.enddate IS NULL))
5959
LEFT JOIN ehr_billing.chargeableItems ci1 ON ci1.rowid = cr1.chargeId) pdr
6060
WHERE (pdr.item = 'Per diems' AND pdr.project.projectType IS NULL) --Excluding research projects from reduce perDiem
61-
OR (pdr.item = 'Special Animal Per Diem' AND pdr.project.projectType = 'Marmoset U24') --Only assigning reduce perDiem to U24 projects
61+
OR (pdr.item = 'Special Animal Per Diem' AND pdr.project.projectType = 'Marmoset U24') --Only assigning reduce perDiem to U24 projects
62+
OR (pdr.item = 'BSL3 Per diems' AND pdr.project.projectType = 'BSL3')

wnprc_billing/src/org/labkey/wnprc_billing/table/WNPRC_BillingCustomizer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ private void customizeChargeableItems(AbstractTableInfo ti)
8080
" THEN 'Yes'" +
8181
" WHEN " + ExprColumn.STR_TABLE_ALIAS + ".name = 'Special Animal Per Diem'" +
8282
" THEN 'Yes'" +
83+
" WHEN " + ExprColumn.STR_TABLE_ALIAS + ".name = 'BSL3 Per diems'" +
84+
" THEN 'Yes'" +
8385
" ELSE ''" +
8486
" END)" +
8587
")";

0 commit comments

Comments
 (0)