Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Giz ANC branch #749

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
30df989
make number of contacts schedule displayed on summary configurable
Apr 6, 2020
a500ed1
fix null GA
Apr 8, 2020
45d6334
updated code to tests native forms performance improvement
Apr 9, 2020
3063c0e
code cleanup
Apr 12, 2020
2537fe1
fix gibberish text and crash in ct
Apr 12, 2020
7deff81
update to local snapshot
May 14, 2020
f430666
update code with latest optimization code
May 21, 2020
0c8f1b6
update popStack
May 29, 2020
dd5c4c3
add contact sequencing logic
Jun 24, 2020
bdc4954
remove due check strategy config
Jun 24, 2020
b72675e
make anc profile activity configurable
Jun 24, 2020
3f54903
update snapshot version
Jun 25, 2020
8c27ed4
Merge branch 'develop' of github.com:OpenSRP/opensrp-client-anc into …
Jun 25, 2020
aa26c46
remove unneeded column
Jun 25, 2020
7e088f6
update null check for event details
Jun 26, 2020
1055065
fix next contact update
Jun 29, 2020
d37270c
update/fix tests
Jun 29, 2020
1f300bf
added tests
Jun 29, 2020
30c223b
fix tests
Jul 1, 2020
5932f3d
update opensrp url to anc
Jul 14, 2020
645a680
add anc maternity transfer logic
Jul 23, 2020
af330b4
update anc maternity transfer logic
Jul 23, 2020
b6ef73d
update logic sor AncMaternityTransferProcessor
Jul 23, 2020
4c5b152
update anc death processing & transfer processor
Aug 20, 2020
918e77a
code cleanup
Sep 2, 2020
c1b7010
fix tests
Sep 2, 2020
0c2fb1b
add tests
Sep 2, 2020
a6aac1d
fix codacy issue
Sep 2, 2020
806543f
fix tests
Sep 3, 2020
7496074
remove update of key in repeating grp
Sep 4, 2020
0189abf
add test
Sep 8, 2020
48b73d0
migrate to latest core
Sep 8, 2020
96ae2c5
add 41 weeks limit
Sep 11, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opensrp-anc/build.gradle
Original file line number Diff line number Diff line change
@@ -143,7 +143,7 @@ dependencies {

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation('org.smartregister:opensrp-client-native-form:1.9.2-r116-OPTIMIZED-LOCAL-SNAPSHOT@aar') {
implementation('org.smartregister:opensrp-client-native-form:1.9.2-r117-OPTIMIZED-LOCAL-SNAPSHOT@aar') {
transitive = true
exclude group: 'com.android.support', module: 'recyclerview-v7'
exclude group: 'com.android.support', module: 'appcompat-v7'
Original file line number Diff line number Diff line change
@@ -18,7 +18,6 @@
import org.robolectric.Robolectric;
import org.robolectric.RuntimeEnvironment;
import org.robolectric.android.controller.ActivityController;
import org.robolectric.util.ReflectionHelpers;
import org.smartregister.anc.library.R;
import org.smartregister.anc.library.contract.RegisterContract;
import org.smartregister.anc.library.domain.AttentionFlag;
@@ -33,7 +32,6 @@
import org.smartregister.anc.library.util.ConstantsUtils;
import org.smartregister.anc.library.util.DBConstantsUtils;
import org.smartregister.commonregistry.CommonPersonObjectClient;
import org.smartregister.configurableviews.ConfigurableViewsLibrary;
import org.smartregister.configurableviews.model.Field;
import org.smartregister.domain.FetchStatus;

@@ -58,6 +56,7 @@ public class BaseHomeRegisterActivityTest extends BaseActivityUnitTest {

@Mock
private List<Field> filterList;

@Mock
private Field sortField;

Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ public class RegisterInteractorTest extends BaseUnitTest {
private ArgumentCaptor<Long> longArgumentCaptor;

@Mock
AncLibrary ancLibrary;
private AncLibrary ancLibrary;

@Before
public void setUp() {