Skip to content

Commit

Permalink
Merge pull request #6619 from hmislk/Issue#6617
Browse files Browse the repository at this point in the history
Issue#6617 Closes #6617
  • Loading branch information
DeshaniPubudu authored Jul 27, 2024
2 parents 5dfc5be + f637b91 commit ee877ab
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/counter.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
2
1 change: 1 addition & 0 deletions nb-configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ Any value defined here will override the pom.xml file value but is only applicab
<org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>pfv5ee8</org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>
<org-netbeans-modules-maven-j2ee.netbeans_2e_deploy_2e_on_2e_save>false</org-netbeans-modules-maven-j2ee.netbeans_2e_deploy_2e_on_2e_save>
<netbeans.compile.on.save>none</netbeans.compile.on.save>

</properties>
</project-shared-configuration>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>vfs</artifactId>
<version>3.0.0</version>
<packaging>war</packaging>
<name>sethmademo</name>
<name>vfs</name>

<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/com/divudi/bean/common/PatientController.java
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,16 @@ public String navigateToReceiveDepositsFromPatientProfile() {
JsfUtil.addErrorMessage("No patient selected");
return "";
}

if(current.getHasAnAccount() == null){
JsfUtil.addErrorMessage("Patient has No Account");
return "";
}
if(!current.getHasAnAccount()){
JsfUtil.addErrorMessage("Patient has No Account");
return "";
}

paymentMethodData = new PaymentMethodData();
bill = new Bill();
billItem = new BillItem();
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0.20240727.2
3.0.0.20240727.2

0 comments on commit ee877ab

Please sign in to comment.