|
|
|
@ -66,9 +66,7 @@ public class CheckListActivity extends BaseActivity implements CheckListAdapter.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void initRequest(String state) {
|
|
|
|
|
OkGo.<MyResult>post(url + "/inspection/selectTask")
|
|
|
|
|
.params("state", state)
|
|
|
|
|
.execute(new MyRecultCall(dialog, this) {
|
|
|
|
|
OkGo.<MyResult>post(url + "/inspection/selectTask").params("state", state).execute(new MyRecultCall(dialog, this) {
|
|
|
|
|
@SuppressLint("NotifyDataSetChanged")
|
|
|
|
|
@Override
|
|
|
|
|
public void onSuccess(Response<MyResult> response) {
|
|
|
|
@ -90,9 +88,7 @@ public class CheckListActivity extends BaseActivity implements CheckListAdapter.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void check_start(View view) {
|
|
|
|
|
OkGo.<MyResult>post(url + "/xj/createTask")
|
|
|
|
|
.params("user", SharedPreferencesUtils.getstring("user", ""))
|
|
|
|
|
.execute(new MyRecultCall(dialog, this) {
|
|
|
|
|
OkGo.<MyResult>post(url + "/xj/createTask").params("user", SharedPreferencesUtils.getstring("user", "")).execute(new MyRecultCall(dialog, this) {
|
|
|
|
|
@Override
|
|
|
|
|
public void onSuccess(Response<MyResult> response) {
|
|
|
|
|
super.onSuccess(response);
|
|
|
|
@ -116,7 +112,9 @@ public class CheckListActivity extends BaseActivity implements CheckListAdapter.
|
|
|
|
|
intent.putExtra("backIndex", index);
|
|
|
|
|
startActivityForResult(intent, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int skipIndex;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void clickItemSkip(int index) {
|
|
|
|
|
skipIndex = index;
|
|
|
|
@ -140,10 +138,7 @@ private int skipIndex;
|
|
|
|
|
@Override
|
|
|
|
|
public void inPutDialogReculi(String name) {
|
|
|
|
|
CheckTaskInfo checkTaskInfo = list.get(skipIndex);
|
|
|
|
|
OkGo.<MyResult>post(url + "/inspection/skipTask")
|
|
|
|
|
.params("remark", name)
|
|
|
|
|
.params("tableId", checkTaskInfo.getId())
|
|
|
|
|
.execute(new MyRecultCall(dialog, this) {
|
|
|
|
|
OkGo.<MyResult>post(url + "/inspection/skipTask").params("remark", name).params("tableId", checkTaskInfo.getId()).execute(new MyRecultCall(dialog, this) {
|
|
|
|
|
@SuppressLint("NotifyDataSetChanged")
|
|
|
|
|
@Override
|
|
|
|
|
public void onSuccess(Response<MyResult> response) {
|
|
|
|
|