-
Notifications
You must be signed in to change notification settings - Fork 6
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 #512 from opensrp/509-missing-task-gen
Implement functionlaty to return missing tasks for plan
- Loading branch information
Showing
30 changed files
with
949 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package org.opensrp.domain; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
public class PlanTaskCount implements Serializable { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private String planIdentifier; | ||
|
||
private List<TaskCount> taskCounts; | ||
|
||
public String getPlanIdentifier() { | ||
return planIdentifier; | ||
} | ||
|
||
public void setPlanIdentifier(String planIdentifier) { | ||
this.planIdentifier = planIdentifier; | ||
} | ||
|
||
public List<TaskCount> getTaskCounts() { | ||
return taskCounts; | ||
} | ||
|
||
public void setTaskCounts(List<TaskCount> taskCounts) { | ||
this.taskCounts = taskCounts; | ||
} | ||
} |
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,47 @@ | ||
package org.opensrp.domain; | ||
|
||
import java.io.Serializable; | ||
|
||
public class TaskCount implements Serializable { | ||
private static final long serialVersionUID = 1L; | ||
|
||
private String code; | ||
|
||
private long actualCount; | ||
|
||
private long expectedCount; | ||
|
||
private long missingCount; | ||
|
||
public String getCode() { | ||
return code; | ||
} | ||
|
||
public void setCode(String code) { | ||
this.code = code; | ||
} | ||
|
||
public long getActualCount() { | ||
return actualCount; | ||
} | ||
|
||
public void setActualCount(long actualCount) { | ||
this.actualCount = actualCount; | ||
} | ||
|
||
public long getExpectedCount() { | ||
return expectedCount; | ||
} | ||
|
||
public void setExpectedCount(long expectedCount) { | ||
this.expectedCount = expectedCount; | ||
} | ||
|
||
public long getMissingCount() { | ||
return missingCount; | ||
} | ||
|
||
public void setMissingCount(long missingCount) { | ||
this.missingCount = missingCount; | ||
} | ||
} |
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
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
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
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
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
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
Oops, something went wrong.