Skip to content

Commit 19cff80

Browse files
Merge branch 'dev'
2 parents d48b5a7 + 75689f4 commit 19cff80

8 files changed

Lines changed: 29 additions & 8 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>cc.altius.FASP.rest.webservice</groupId>
1212
<artifactId>FASP</artifactId>
13-
<version>2.124[5824]</version>
13+
<version>2.125[5827]</version>
1414
<name>QAT</name>
1515
<description>Quantification Analytics Tool</description>
1616
<packaging>jar</packaging>

src/main/java/cc/altius/FASP/dao/impl/ErpLinkingDaoImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1820,7 +1820,7 @@ public List<NotificationSummaryDTO> getNotificationSummary(CustomUserDetails cur
18201820
+ " COUNT(DISTINCT(n.`NOTIFICATION_ID`)) as NOTIFICATION_COUNT "
18211821
+ " FROM rm_erp_notification n "
18221822
+ " LEFT JOIN rm_shipment_linking sl ON sl.SHIPMENT_LINKING_ID=n.SHIPMENT_LINKING_ID "
1823-
+ " LEFT JOIN vw_program p ON p.`PROGRAM_ID`=s.`PROGRAM_ID` "
1823+
+ " LEFT JOIN vw_program p ON p.`PROGRAM_ID`=sl.`PROGRAM_ID` "
18241824
+ " left join rm_shipment s on s.SHIPMENT_ID=sl.CHILD_SHIPMENT_ID "
18251825
+ " left join rm_shipment_trans st on st.SHIPMENT_ID=s.SHIPMENT_ID and st.VERSION_ID=s.MAX_VERSION_ID "
18261826
+ " left join rm_program_planning_unit ppu on ppu.PROGRAM_ID = sl.PROGRAM_ID AND ppu.PLANNING_UNIT_ID=st.PLANNING_UNIT_ID "

src/main/resources/application.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ syncExpiresOn=15
3131

3232
info.app.name=QAT
3333
info.app.description=Quantification Analytics Tool
34-
info.app.version=2.124[5824]
35-
info.app.frontEndVersion=[13938]
34+
info.app.version=2.125[5827]
35+
info.app.frontEndVersion=[13942]
3636
management.endpoints.web.exposure.include=*
3737
management.info.env.enabled = true
3838
management.endpoint.sessions.enabled=true
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
INSERT INTO `fasp`.`ap_label`(`LABEL_ID`,`LABEL_EN`,`LABEL_FR`,`LABEL_SP`,`LABEL_PR`,`CREATED_BY`,`CREATED_DATE`,`LAST_MODIFIED_BY`,`LAST_MODIFIED_DATE`,`SOURCE_ID`) VALUES ( NULL,'SP - View Stock Status Snapshort (Global) Report ',NULL,NULL,NULL,'1',NOW(),'1',NOW(),'1');
2+
SELECT MAX(l.LABEL_ID) INTO @MAX FROM ap_label l ;
3+
INSERT INTO `fasp`.`us_business_function`(`BUSINESS_FUNCTION_ID`,`LABEL_ID`,`CREATED_BY`,`CREATED_DATE`,`LAST_MODIFIED_BY`,`LAST_MODIFIED_DATE`) VALUES ( 'ROLE_BF_STOCK_STATUS_SNAPSHOT_GLOBAL_REPORT',@MAX,'1',NOW(),'1',NOW());
4+
5+
INSERT INTO `fasp`.`us_role_business_function`(`ROLE_BUSINESS_FUNCTION_ID`,`ROLE_ID`,`BUSINESS_FUNCTION_ID`,`CREATED_BY`,`CREATED_DATE`,`LAST_MODIFIED_BY`,`LAST_MODIFIED_DATE`) VALUES ( NULL,'ROLE_TRAINER_ADMIN','ROLE_BF_STOCK_STATUS_SNAPSHOT_GLOBAL_REPORT','1',NOW(),'1',NOW());
6+
INSERT INTO `fasp`.`us_role_business_function`(`ROLE_BUSINESS_FUNCTION_ID`,`ROLE_ID`,`BUSINESS_FUNCTION_ID`,`CREATED_BY`,`CREATED_DATE`,`LAST_MODIFIED_BY`,`LAST_MODIFIED_DATE`) VALUES ( NULL,'ROLE_INTERNAL_USER','ROLE_BF_STOCK_STATUS_SNAPSHOT_GLOBAL_REPORT','1',NOW(),'1',NOW());
7+
INSERT INTO `fasp`.`us_role_business_function`(`ROLE_BUSINESS_FUNCTION_ID`,`ROLE_ID`,`BUSINESS_FUNCTION_ID`,`CREATED_BY`,`CREATED_DATE`,`LAST_MODIFIED_BY`,`LAST_MODIFIED_DATE`) VALUES ( NULL,'ROLE_REALM_ADMIN','ROLE_BF_STOCK_STATUS_SNAPSHOT_GLOBAL_REPORT','1',NOW(),'1',NOW());
8+
INSERT INTO `fasp`.`us_role_business_function`(`ROLE_BUSINESS_FUNCTION_ID`,`ROLE_ID`,`BUSINESS_FUNCTION_ID`,`CREATED_BY`,`CREATED_DATE`,`LAST_MODIFIED_BY`,`LAST_MODIFIED_DATE`) VALUES ( NULL,'ROLE_PROGRAM_USER','ROLE_BF_STOCK_STATUS_SNAPSHOT_GLOBAL_REPORT','1',NOW(),'1',NOW());
9+
INSERT INTO `fasp`.`us_role_business_function`(`ROLE_BUSINESS_FUNCTION_ID`,`ROLE_ID`,`BUSINESS_FUNCTION_ID`,`CREATED_BY`,`CREATED_DATE`,`LAST_MODIFIED_BY`,`LAST_MODIFIED_DATE`) VALUES ( NULL,'ROLE_REPORT_USER','ROLE_BF_STOCK_STATUS_SNAPSHOT_GLOBAL_REPORT','1',NOW(),'1',NOW());
10+
INSERT INTO `fasp`.`us_role_business_function`(`ROLE_BUSINESS_FUNCTION_ID`,`ROLE_ID`,`BUSINESS_FUNCTION_ID`,`CREATED_BY`,`CREATED_DATE`,`LAST_MODIFIED_BY`,`LAST_MODIFIED_DATE`) VALUES ( NULL,'ROLE_PROGRAM_ADMIN','ROLE_BF_STOCK_STATUS_SNAPSHOT_GLOBAL_REPORT','1',NOW(),'1',NOW());
11+
12+
UPDATE `fasp`.`ap_security` SET `BF` = 'ROLE_BF_STOCK_STATUS_REPORT' WHERE (`SECURITY_ID` = '565');
13+
UPDATE `fasp`.`ap_security` SET `BF` = 'ROLE_BF_STOCK_STATUS_REPORT' WHERE (`SECURITY_ID` = '566');
14+
UPDATE `fasp`.`ap_security` SET `BF` = 'ROLE_BF_STOCK_STATUS_SNAPSHOT_GLOBAL_REPORT' WHERE (`SECURITY_ID` = '568');
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20260330-QAT-6317.sql
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
20260125-QAT-6036.sql
2-
20260326-QAT-6307.sql
1+
20260330-QAT-6317.sql
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# To change this license header, choose License Headers in Project Properties.
22
# To change this template file, choose Tools | Templates
33
# and open the template in the editor.
4-
version.major=2.124
5-
version.minor=5824
4+
version.major=2.125
5+
version.minor=5827

src/main/resources/versionInfo.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
APP Version: 2.124.5824
2+
Front End Version: 13942
3+
Date: 2026-03-31
4+
QAT-6298
5+
QAT-6307
6+
QAT-6317
7+
18
APP Version: 2.124.5824
29
Front End Version: 13938
310
Date: 2026-03-27

0 commit comments

Comments
 (0)