|
|
|
@ -31,20 +31,21 @@ public class CheckListActivity extends BaseActivity implements AdapterClickCall
|
|
|
|
|
private CheckListAdapter adapter;
|
|
|
|
|
private List<CheckTaskInfo> list;
|
|
|
|
|
private ObservableBoolean createState;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
ActivityCheckListBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_check_list);
|
|
|
|
|
adapter = new CheckListAdapter(this,this);
|
|
|
|
|
adapter = new CheckListAdapter(this, this);
|
|
|
|
|
binding.setAdapter(adapter);
|
|
|
|
|
createState=new ObservableBoolean();
|
|
|
|
|
createState = new ObservableBoolean();
|
|
|
|
|
createState.set(false);
|
|
|
|
|
binding.setState(createState);
|
|
|
|
|
initRequest();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void initRequest() {
|
|
|
|
|
OkGo.<MyResult>post(url+"/inspection/selectTask")
|
|
|
|
|
OkGo.<MyResult>post(url + "/inspection/selectTask")
|
|
|
|
|
.params("user", SharedPreferencesUtils.getstring("user", ""))
|
|
|
|
|
.execute(new MyRecultCall(dialog, this) {
|
|
|
|
|
@SuppressLint("NotifyDataSetChanged")
|
|
|
|
@ -52,12 +53,13 @@ public class CheckListActivity extends BaseActivity implements AdapterClickCall
|
|
|
|
|
public void onSuccess(Response<MyResult> response) {
|
|
|
|
|
super.onSuccess(response);
|
|
|
|
|
MyResult body = response.body();
|
|
|
|
|
if (body.getCode()==0){
|
|
|
|
|
if (body.getCode() == 0) {
|
|
|
|
|
createState.set(false);
|
|
|
|
|
list=gson.fromJson(body.getData().toString(),new TypeToken<List<CheckTaskInfo>>(){}.getType());
|
|
|
|
|
list = gson.fromJson(body.getData().toString(), new TypeToken<List<CheckTaskInfo>>() {
|
|
|
|
|
}.getType());
|
|
|
|
|
adapter.setList(list);
|
|
|
|
|
adapter.notifyDataSetChanged();
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
createState.set(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -74,27 +76,42 @@ public class CheckListActivity extends BaseActivity implements AdapterClickCall
|
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
public void clickItem(int index) {
|
|
|
|
|
Intent intent=new Intent(this,CheckActivity.class);
|
|
|
|
|
Intent intent = new Intent(this, CheckActivity.class);
|
|
|
|
|
|
|
|
|
|
CheckTaskInfo checkTaskInfo = list.get(index);
|
|
|
|
|
intent.putExtra("id", checkTaskInfo.getId());
|
|
|
|
|
intent.putExtra("inspectionId", checkTaskInfo.getInspectionId());
|
|
|
|
|
intent.putExtra("code",checkTaskInfo.getLocationCode());
|
|
|
|
|
startActivity(intent);
|
|
|
|
|
intent.putExtra("code", checkTaskInfo.getLocationCode());
|
|
|
|
|
intent.putExtra("backIndex", index);
|
|
|
|
|
startActivityForResult(intent, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@SuppressLint("NotifyDataSetChanged")
|
|
|
|
|
@Override
|
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
|
|
|
|
|
|
if (requestCode == 1 && data != null) {
|
|
|
|
|
int index = data.getIntExtra("backIndex", 0);
|
|
|
|
|
Log.e("TAG", "onActivityResult:" + index);
|
|
|
|
|
list.get(index).setTaskState("完成");
|
|
|
|
|
adapter.notifyDataSetChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|