Skip to content

Commit

Permalink
made some reports confidential. issue #2245
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Jan 4, 2024
1 parent f5f2991 commit 4c2e821
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified j-lawyer-client/lib/j-lawyer-cloud/j-lawyer-cloud.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ public ReportingPanel() {
revenuePerCustomer.setReportId(Reports.RPT_REVENUE_BYCUSTOMER);
revenuePerCustomer.setTypeChart(false);
revenuePerCustomer.setTypeTable(true);
revenuePerCustomer.setSecurityType(Report.SECURITY_COMMON);
revenuePerCustomer.setSecurityType(Report.SECURITY_CONFIDENTIAL);
fromDate=new Date();
fromDate.setMonth(0);
fromDate.setDate(1);
Expand Down Expand Up @@ -798,7 +798,7 @@ public ReportingPanel() {
casesEarnings.setReportId(Reports.RPT_ACCOUNTS_EARNINGS);
casesEarnings.setTypeChart(false);
casesEarnings.setTypeTable(true);
casesEarnings.setSecurityType(Report.SECURITY_COMMON);
casesEarnings.setSecurityType(Report.SECURITY_CONFIDENTIAL);
fromDate=new Date();
fromDate.setMonth(0);
fromDate.setDate(1);
Expand Down
Binary file modified j-lawyer-server/j-lawyer-server-ejb/lib/j-lawyer-cloud.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -726,10 +726,10 @@ public ReportResult invokeReport(String reportId, Object... params) throws Excep

reportPrivs.put(Reports.RPT_CASES_BYSIZE, PRIVILEGE_COMMON);

reportPrivs.put(Reports.RPT_REVENUE_BYCUSTOMER, PRIVILEGE_COMMON);
reportPrivs.put(Reports.RPT_REVENUE_BYCUSTOMER, PRIVILEGE_CONFIDENTIAL);

reportPrivs.put(Reports.RPT_ACCOUNTS_ESCROW, PRIVILEGE_COMMON);
reportPrivs.put(Reports.RPT_ACCOUNTS_EARNINGS, PRIVILEGE_COMMON);
reportPrivs.put(Reports.RPT_ACCOUNTS_EARNINGS, PRIVILEGE_CONFIDENTIAL);



Expand Down

0 comments on commit 4c2e821

Please sign in to comment.