-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2020 from opensrp/lmh1-194
LMH1-194: fix due count not matching due family children
- Loading branch information
Showing
5 changed files
with
40 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...rp-chw/src/main/java/org/smartregister/chw/interactor/ChildUpcomingServiceInteractor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package org.smartregister.chw.interactor; | ||
|
||
import android.content.Context; | ||
|
||
import org.smartregister.chw.anc.domain.MemberObject; | ||
import org.smartregister.chw.anc.model.BaseUpcomingService; | ||
import org.smartregister.chw.core.interactor.CoreChildUpcomingServiceInteractor; | ||
|
||
import java.util.List; | ||
|
||
public class ChildUpcomingServiceInteractor extends CoreChildUpcomingServiceInteractor { | ||
|
||
public final List<BaseUpcomingService> getUpcomingServices(final MemberObject memberObject, final Context ctx){ | ||
return getMemberServices(ctx, memberObject); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters