|
|
|
@ -66,44 +66,40 @@ 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) {
|
|
|
|
|
@SuppressLint("NotifyDataSetChanged")
|
|
|
|
|
@Override
|
|
|
|
|
public void onSuccess(Response<MyResult> response) {
|
|
|
|
|
super.onSuccess(response);
|
|
|
|
|
MyResult body = response.body();
|
|
|
|
|
if (body.getCode() == 0) {
|
|
|
|
|
createState.set(false);
|
|
|
|
|
list = gson.fromJson(body.getData().toString(), new TypeToken<List<CheckTaskInfo>>() {
|
|
|
|
|
}.getType());
|
|
|
|
|
adapter.setList(list);
|
|
|
|
|
adapter.notifyDataSetChanged();
|
|
|
|
|
} else {
|
|
|
|
|
createState.set(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
OkGo.<MyResult>post(url + "/inspection/selectTask").params("state", state).execute(new MyRecultCall(dialog, this) {
|
|
|
|
|
@SuppressLint("NotifyDataSetChanged")
|
|
|
|
|
@Override
|
|
|
|
|
public void onSuccess(Response<MyResult> response) {
|
|
|
|
|
super.onSuccess(response);
|
|
|
|
|
MyResult body = response.body();
|
|
|
|
|
if (body.getCode() == 0) {
|
|
|
|
|
createState.set(false);
|
|
|
|
|
list = gson.fromJson(body.getData().toString(), new TypeToken<List<CheckTaskInfo>>() {
|
|
|
|
|
}.getType());
|
|
|
|
|
adapter.setList(list);
|
|
|
|
|
adapter.notifyDataSetChanged();
|
|
|
|
|
} else {
|
|
|
|
|
createState.set(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void check_start(View view) {
|
|
|
|
|
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);
|
|
|
|
|
var body = response.body();
|
|
|
|
|
if (body.getCode() == 0) {
|
|
|
|
|
// initRequest();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Toast.makeText(CheckListActivity.this, body.getMsg(), Toast.LENGTH_SHORT).show();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
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);
|
|
|
|
|
var body = response.body();
|
|
|
|
|
if (body.getCode() == 0) {
|
|
|
|
|
// initRequest();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Toast.makeText(CheckListActivity.this, body.getMsg(), Toast.LENGTH_SHORT).show();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -116,10 +112,12 @@ public class CheckListActivity extends BaseActivity implements CheckListAdapter.
|
|
|
|
|
intent.putExtra("backIndex", index);
|
|
|
|
|
startActivityForResult(intent, 1);
|
|
|
|
|
}
|
|
|
|
|
private int skipIndex;
|
|
|
|
|
|
|
|
|
|
private int skipIndex;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void clickItemSkip(int index) {
|
|
|
|
|
skipIndex=index;
|
|
|
|
|
skipIndex = index;
|
|
|
|
|
inputDialog.show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -140,22 +138,19 @@ 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) {
|
|
|
|
|
@SuppressLint("NotifyDataSetChanged")
|
|
|
|
|
@Override
|
|
|
|
|
public void onSuccess(Response<MyResult> response) {
|
|
|
|
|
super.onSuccess(response);
|
|
|
|
|
MyResult body = response.body();
|
|
|
|
|
if (body.getCode() == 0) {
|
|
|
|
|
checkTaskInfo.setTaskState("跳过");
|
|
|
|
|
adapter.notifyDataSetChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
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) {
|
|
|
|
|
super.onSuccess(response);
|
|
|
|
|
MyResult body = response.body();
|
|
|
|
|
if (body.getCode() == 0) {
|
|
|
|
|
checkTaskInfo.setTaskState("跳过");
|
|
|
|
|
adapter.notifyDataSetChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
inputDialog.dismiss();
|
|
|
|
|
}
|
|
|
|
|
}
|