增加 巡检任务

idata
wanghao 6 months ago
parent 0b7833ac35
commit 463421cb32

@ -71,7 +71,7 @@ public class CheckActivity extends BaseActivity implements AdapterClickCall, InP
// //
// } // }
// }); // });
initRequest(); initRequest(getIntent().getIntExtra("id",0));
inputDialog = new InPutDialog(this); inputDialog = new InPutDialog(this);
inputDialog.setInPutDialogCall(this); inputDialog.setInPutDialogCall(this);
tagList = new ArrayList<>(); tagList = new ArrayList<>();
@ -80,8 +80,10 @@ public class CheckActivity extends BaseActivity implements AdapterClickCall, InP
} }
// 初始化数据 // 初始化数据
private void initRequest() { private void initRequest(int id) {
OkGo.<MyResult>post(url + "/xj/select").params("user", SharedPreferencesUtils.getstring("user", "")).execute(new MyRecultCall(dialog, this) { OkGo.<MyResult>post(url + "/xj/select")
.params("id", id)
.execute(new MyRecultCall(dialog, this) {
@Override @Override
public void onSuccess(Response<MyResult> response) { public void onSuccess(Response<MyResult> response) {
super.onSuccess(response); super.onSuccess(response);

@ -2,15 +2,20 @@ package com.example.beijing_daxing;
import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatActivity;
import androidx.databinding.DataBindingUtil; import androidx.databinding.DataBindingUtil;
import androidx.databinding.ObservableBoolean;
import android.annotation.SuppressLint;
import android.content.Intent;
import android.os.Bundle; import android.os.Bundle;
import android.view.View; import android.view.View;
import android.widget.Toast; import android.widget.Toast;
import com.example.beijing_daxing.adapter.CheckListAdapter; import com.example.beijing_daxing.adapter.CheckListAdapter;
import com.example.beijing_daxing.base.AdapterClickCall;
import com.example.beijing_daxing.base.BaseActivity; import com.example.beijing_daxing.base.BaseActivity;
import com.example.beijing_daxing.base.MyRecultCall; import com.example.beijing_daxing.base.MyRecultCall;
import com.example.beijing_daxing.base.MyResult; import com.example.beijing_daxing.base.MyResult;
import com.example.beijing_daxing.been.CheckTaskInfo;
import com.example.beijing_daxing.been.Stock; import com.example.beijing_daxing.been.Stock;
import com.example.beijing_daxing.databinding.ActivityCheckListBinding; import com.example.beijing_daxing.databinding.ActivityCheckListBinding;
import com.example.beijing_daxing.uitls.SharedPreferencesUtils; import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
@ -21,15 +26,43 @@ import com.uhf.api.cls.Reader;
import java.util.List; import java.util.List;
public class CheckListActivity extends BaseActivity { public class CheckListActivity extends BaseActivity implements AdapterClickCall {
private CheckListAdapter checkListAdapter; private CheckListAdapter adapter;
private List<CheckTaskInfo> list;
private ObservableBoolean createState;
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
ActivityCheckListBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_check_list); ActivityCheckListBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_check_list);
checkListAdapter = new CheckListAdapter(this); adapter = new CheckListAdapter(this,this);
binding.setAdapter(checkListAdapter);
binding.setAdapter(adapter);
createState=new ObservableBoolean();
createState.set(false);
binding.setState(createState);
initRequest();
}
private void initRequest() {
OkGo.<MyResult>post(url+"/inspection/selectTask")
.params("user", SharedPreferencesUtils.getstring("user", ""))
.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);
}
}
});
} }
@Override @Override
@ -46,18 +79,18 @@ public class CheckListActivity extends BaseActivity {
super.onSuccess(response); super.onSuccess(response);
var body = response.body(); var body = response.body();
if (body.getCode() == 0) { if (body.getCode() == 0) {
// list = gson.fromJson(body.getData().toString(), new TypeToken<List<Stock>>() { initRequest();
// }.getType());
// if (list == null || list.isEmpty()) {
// Toast.makeText(CheckActivity.this, "没有维护巡检区域", Toast.LENGTH_SHORT).show();
// return;
// }
// adapter.setList(list);
// adapter.notifyDataSetChanged();
return; return;
} }
// Toast.makeText(this, body.getMsg(), Toast.LENGTH_SHORT).show(); Toast.makeText(CheckListActivity.this, body.getMsg(), Toast.LENGTH_SHORT).show();
} }
}); });
} }
@Override
public void clickItem(int index) {
Intent intent=new Intent(this,CheckActivity.class);
intent.putExtra("id",list.get(index).getId());
startActivity(intent);
}
} }

@ -13,6 +13,7 @@ import android.view.View;
import android.widget.AdapterView; import android.widget.AdapterView;
import android.widget.Toast; import android.widget.Toast;
import com.example.beijing_daxing.adapter.CheckListAdapter;
import com.example.beijing_daxing.adapter.HomePageAdapter; import com.example.beijing_daxing.adapter.HomePageAdapter;
import com.example.beijing_daxing.base.MyApplication; import com.example.beijing_daxing.base.MyApplication;
import com.example.beijing_daxing.broadcast.MyNetWorkReceiver; import com.example.beijing_daxing.broadcast.MyNetWorkReceiver;
@ -74,12 +75,11 @@ public class HomePageActivity extends AppCompatActivity {
list.add(new HomeIcon(R.mipmap.home_in1, "轮挡入库", InActivity.class)); list.add(new HomeIcon(R.mipmap.home_in1, "轮挡入库", InActivity.class));
list.add(new HomeIcon(R.mipmap.home_out1, "轮挡领用出库", OutActivity.class)); list.add(new HomeIcon(R.mipmap.home_out1, "轮挡领用出库", OutActivity.class));
list.add(new HomeIcon(R.mipmap.home_store_check, "仓库盘点", StoreCheckActivity.class)); list.add(new HomeIcon(R.mipmap.home_store_check, "仓库盘点", StoreCheckActivity.class));
list.add(new HomeIcon(R.mipmap.home_check, "轮挡巡检", CheckActivity.class)); list.add(new HomeIcon(R.mipmap.home_check, "轮挡巡检", CheckListActivity.class));
// list.add(new HomeIcon(R.mipmap.home_check, "轮挡巡检", OffLineCheckActivity.class));
list.add(new HomeIcon(R.mipmap.home_bf, "轮挡报废", BFActivity.class)); list.add(new HomeIcon(R.mipmap.home_bf, "轮挡报废", BFActivity.class));
list.add(new HomeIcon(R.mipmap.home_in, "废品入库", FpInActivity.class)); list.add(new HomeIcon(R.mipmap.home_in, "废品入库", FpInActivity.class));
list.add(new HomeIcon(R.mipmap.home_out, "废品出库", FpOutActivity.class)); list.add(new HomeIcon(R.mipmap.home_out, "废品出库", FpOutActivity.class));
// list.add(new HomeIcon(R.mipmap.home_out, "功率设置", FpOutActivity.class)); list.add(new HomeIcon(R.mipmap.home_out, "功率设置", SetingPowerActivity.class));
var intent = getIntent(); var intent = getIntent();
try { try {
if (!intent.getStringExtra("user").equals("admin")) { if (!intent.getStringExtra("user").equals("admin")) {

@ -20,6 +20,7 @@ import com.example.beijing_daxing.base.MyRecultCall;
import com.example.beijing_daxing.base.MyResult; import com.example.beijing_daxing.base.MyResult;
import com.example.beijing_daxing.been.InStoreSelectBody; import com.example.beijing_daxing.been.InStoreSelectBody;
import com.example.beijing_daxing.databinding.ActivityInBinding; import com.example.beijing_daxing.databinding.ActivityInBinding;
import com.example.beijing_daxing.uitls.HexAscii;
import com.example.beijing_daxing.uitls.SharedPreferencesUtils; import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
import com.example.beijing_daxing.vm.InStoreVM; import com.example.beijing_daxing.vm.InStoreVM;
import com.lzy.okgo.OkGo; import com.lzy.okgo.OkGo;
@ -36,6 +37,7 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
private InStoreVM vm; private InStoreVM vm;
private InAdapter adapter; private InAdapter adapter;
private List<String> epcList; private List<String> epcList;
private List<String> tagList;
private ActivityInBinding binding; private ActivityInBinding binding;
private ObservableBoolean checkState; private ObservableBoolean checkState;
@Override @Override
@ -50,30 +52,25 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
adapter.setList(epcList); adapter.setList(epcList);
adapter.setAdapterClickCall(this); adapter.setAdapterClickCall(this);
binding.setAdapter(adapter); binding.setAdapter(adapter);
checkState=new ObservableBoolean(); checkState=new ObservableBoolean();
binding.setCheckState(checkState); binding.setCheckState(checkState);
tagList=new ArrayList<>();
} }
@Override @Override
protected void onResume() { protected void onResume() {
super.onResume(); super.onResume();
setPower(33); setPower(SharedPreferencesUtils.getInt("powerIn",33));
} }
@Override @Override
protected void sanRfid(List<Reader.TAGINFO> epcs) { protected void sanRfid(List<Reader.TAGINFO> epcs) {
// Log.e("TAG", "sanRfid:" + epcs);
epcs.stream().forEach(t -> { epcs.stream().forEach(t -> {
var epc = Tools.Bytes2HexString(t.EpcId,t.EpcId.length); var epc = Tools.Bytes2HexString(t.EpcId,t.EpcId.length);
if (!epc.substring(0,8).equals("53574C44")) return;
if (!epcList.contains(epc)) { if (tagList.contains(epc)) return;
Log.e("TAG", "sanRfid:" + epc); tagList.add(epc);
if (epc.substring(0,8).equals("53574C44")){ epcList.add(HexAscii.hex2Str(epc));
epcList.add(epc);
}
}
}); });
vm.setSanLength(epcList.size()); vm.setSanLength(epcList.size());
adapter.notifyDataSetChanged(); adapter.notifyDataSetChanged();
@ -85,7 +82,6 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
@Override @Override
public void onSuccess(Response<MyResult> response) { public void onSuccess(Response<MyResult> response) {
super.onSuccess(response); super.onSuccess(response);
// Log.e("TAG", "onSuccess:" + );response.body()
InStoreSelectBody inStoreSelectBody = gson.fromJson(response.body().getData().toString(), InStoreSelectBody.class); InStoreSelectBody inStoreSelectBody = gson.fromJson(response.body().getData().toString(), InStoreSelectBody.class);
vm.initSelect(inStoreSelectBody.getBaseLocationList(), inStoreSelectBody.getBaseManufacturerList()); vm.initSelect(inStoreSelectBody.getBaseLocationList(), inStoreSelectBody.getBaseManufacturerList());
} }
@ -94,6 +90,7 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
@Override @Override
public void clickItem(int index) { public void clickItem(int index) {
tagList.remove(HexAscii.str2Hex(epcList.get(index)));
epcList.remove(index); epcList.remove(index);
adapter.notifyDataSetChanged(); adapter.notifyDataSetChanged();
vm.setSanLength(epcList.size()); vm.setSanLength(epcList.size());
@ -114,8 +111,6 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
if (response.body().getCode() == 0) { if (response.body().getCode() == 0) {
finish(); finish();
} }
} }
}); });
} }

@ -1,88 +0,0 @@
package com.example.beijing_daxing;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.databinding.DataBindingUtil;
import androidx.databinding.ObservableBoolean;
import androidx.databinding.ViewDataBinding;
import android.annotation.SuppressLint;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Toast;
import com.example.beijing_daxing.adapter.StoreCheckAdapter;
import com.example.beijing_daxing.base.BaseActivity;
import com.example.beijing_daxing.been.RFIDLocation;
import com.example.beijing_daxing.been.Stock;
import com.example.beijing_daxing.databinding.ActivityOffLineCheckBinding;
import com.uhf.api.cls.Reader;
import org.litepal.LitePal;
import java.util.ArrayList;
import java.util.List;
public class OffLineCheckActivity extends BaseActivity {
private StoreCheckAdapter checkAdapter;
private ObservableBoolean checkState;
private List<Stock> list;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ActivityOffLineCheckBinding binding;
binding = DataBindingUtil.setContentView(this, R.layout.activity_off_line_check);
checkState = new ObservableBoolean();
binding.setCheckState(checkState);
/* var all = LitePal.findAll(RFIDLocation.class);
if (all == null || all.isEmpty()) {
Toast.makeText(this, "", Toast.LENGTH_SHORT).show();
return;
}*/
list = new ArrayList<>();
// all.forEach(t -> {
// Stock stock = new Stock();
// stock.setLocationCode(t.getLocationCode());
// stock.setEpcCode(t.getEpcCode());
// list.add(stock);
// });
checkAdapter=new StoreCheckAdapter(this);
checkAdapter.setList(list);
checkAdapter = new StoreCheckAdapter(this);
binding.setAdapter(checkAdapter);
}
@Override
protected void sanRfid(List<Reader.TAGINFO> epcs) {
}
public void offCheckRead(View view) {
var b = checkState.get();
if (b) {
handler.removeCallbacks(runnable);
} else {
handler.postDelayed(runnable, 0);
}
checkState.set(!b);
}
@SuppressLint("HandlerLeak")
private Handler handler = new Handler() {
@Override
public void handleMessage(@NonNull Message msg) {
super.handleMessage(msg);
}
};
private Runnable runnable = new Runnable() {
@Override
public void run() {
// sendBroadcast(broadcastIntent);
sanEpc();
handler.postDelayed(runnable, 1000);
}
};
}

@ -1,6 +1,8 @@
package com.example.beijing_daxing; package com.example.beijing_daxing;
import androidx.databinding.DataBindingUtil; import androidx.databinding.DataBindingUtil;
import android.annotation.SuppressLint;
import android.os.Bundle; import android.os.Bundle;
import android.view.View; import android.view.View;
import android.widget.Toast; import android.widget.Toast;
@ -11,6 +13,7 @@ import com.example.beijing_daxing.base.MyRecultCall;
import com.example.beijing_daxing.base.MyResult; import com.example.beijing_daxing.base.MyResult;
import com.example.beijing_daxing.databinding.ActivityOutBinding; import com.example.beijing_daxing.databinding.ActivityOutBinding;
import com.example.beijing_daxing.been.BaseLocation; import com.example.beijing_daxing.been.BaseLocation;
import com.example.beijing_daxing.uitls.HexAscii;
import com.example.beijing_daxing.uitls.SharedPreferencesUtils; import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
import com.example.beijing_daxing.vm.OutStoreVm; import com.example.beijing_daxing.vm.OutStoreVm;
import com.google.gson.reflect.TypeToken; import com.google.gson.reflect.TypeToken;
@ -28,12 +31,14 @@ public class OutActivity extends BaseActivity implements AdapterClickCall {
private InAdapter adapter; private InAdapter adapter;
private OutStoreVm outVm; private OutStoreVm outVm;
private List<String> epcList; private List<String> epcList;
private List<String> tagList;
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
ActivityOutBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_out); ActivityOutBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_out);
adapter=new InAdapter(this); adapter=new InAdapter(this);
epcList=new ArrayList<>(); epcList=new ArrayList<>();
tagList=new ArrayList<>();
adapter.setList(epcList); adapter.setList(epcList);
adapter.setAdapterClickCall(this); adapter.setAdapterClickCall(this);
binding.setAdapter(adapter); binding.setAdapter(adapter);
@ -45,23 +50,25 @@ public class OutActivity extends BaseActivity implements AdapterClickCall {
@Override @Override
protected void onResume() { protected void onResume() {
super.onResume(); super.onResume();
setPower(17); setPower(SharedPreferencesUtils.getInt("powerOut",17));
} }
@SuppressLint("NotifyDataSetChanged")
@Override @Override
protected void sanRfid(List<Reader.TAGINFO> epcs) { protected void sanRfid(List<Reader.TAGINFO> epcs) {
epcs.stream().forEach(t -> { epcs.forEach(t -> {
var epc = Tools.Bytes2HexString(t.EpcId,t.EpcId.length); var epc = Tools.Bytes2HexString(t.EpcId,t.EpcId.length);
if (!epcList.contains(epc)) { if (!epc.startsWith("53574C44")) return;
if (epc.substring(0,8).equals("53574C44")) { if (tagList.contains(epc)) return;
epcList.add(epc); tagList.add(epc);
} epcList.add(HexAscii.hex2Str(epc));
}
}); });
adapter.notifyDataSetChanged(); adapter.notifyDataSetChanged();
} }
@SuppressLint("NotifyDataSetChanged")
@Override @Override
public void clickItem(int index) { public void clickItem(int index) {
tagList.remove(index);
epcList.remove(index); epcList.remove(index);
adapter.notifyDataSetChanged(); adapter.notifyDataSetChanged();
} }

@ -1,14 +1,47 @@
package com.example.beijing_daxing; package com.example.beijing_daxing;
import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatActivity;
import androidx.databinding.DataBindingUtil;
import androidx.databinding.ViewDataBinding;
import android.app.Activity;
import android.os.Bundle; import android.os.Bundle;
import android.view.View;
import com.example.beijing_daxing.databinding.ActivitySetingPowerBinding;
import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
import com.example.beijing_daxing.vm.PowerData;
public class SetingPowerActivity extends AppCompatActivity { public class SetingPowerActivity extends AppCompatActivity {
private PowerData powerData;
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
setContentView(R.layout.activity_seting_power); ActivitySetingPowerBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_seting_power);
powerData = new PowerData();
powerData.setPowerIn( SharedPreferencesUtils.getInt("powerIn",0));
powerData.setPowerOut( SharedPreferencesUtils.getInt("powerOut",0));
powerData.setPowerStockCheck( SharedPreferencesUtils.getInt("powerStoreCheck",0));
powerData.setPowerCheck( SharedPreferencesUtils.getInt("powerCheck",0));
powerData.setPowerScrap( SharedPreferencesUtils.getInt("powerScrap",0));
powerData.setPowerScrapIn( SharedPreferencesUtils.getInt("powerScrapIn",0));
powerData.setPowerScrapOut( SharedPreferencesUtils.getInt("powerScrapOut",0));
binding.setVm(powerData);
}
public void settingSeva(View view) {
SharedPreferencesUtils.putInt("powerIn", powerData.getPowerIn());
SharedPreferencesUtils.putInt("powerOut", powerData.getPowerOut());
SharedPreferencesUtils.putInt("powerStoreCheck", powerData.getPowerStockCheck());
SharedPreferencesUtils.putInt("powerCheck", powerData.getPowerCheck());
SharedPreferencesUtils.putInt("powerScrap", powerData.getPowerScrap());
SharedPreferencesUtils.putInt("powerScrapIn", powerData.getPowerScrapIn());
SharedPreferencesUtils.putInt("powerScrapOut", powerData.getPowerScrapOut());
finish();
} }
} }

@ -22,6 +22,7 @@ import com.example.beijing_daxing.base.MyResult;
import com.example.beijing_daxing.been.InStoreSelectBody; import com.example.beijing_daxing.been.InStoreSelectBody;
import com.example.beijing_daxing.been.Stock; import com.example.beijing_daxing.been.Stock;
import com.example.beijing_daxing.databinding.ActivityStoreCheckBinding; import com.example.beijing_daxing.databinding.ActivityStoreCheckBinding;
import com.example.beijing_daxing.uitls.HexAscii;
import com.example.beijing_daxing.uitls.SharedPreferencesUtils; import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
import com.google.gson.reflect.TypeToken; import com.google.gson.reflect.TypeToken;
import com.lzy.okgo.OkGo; import com.lzy.okgo.OkGo;
@ -47,7 +48,6 @@ public class StoreCheckActivity extends BaseActivity {
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
binding = DataBindingUtil.setContentView(this, R.layout.activity_store_check); binding = DataBindingUtil.setContentView(this, R.layout.activity_store_check);
checkState = new ObservableBoolean(); checkState = new ObservableBoolean();
binding.setCheckState(checkState); binding.setCheckState(checkState);
@ -56,11 +56,12 @@ public class StoreCheckActivity extends BaseActivity {
initRequest(); initRequest();
checkNumber=0; checkNumber=0;
binding.setCheckNumber(checkNumber); binding.setCheckNumber(checkNumber);
setPower(33); setPower(SharedPreferencesUtils.getInt("powerStoreCheck",33));
} }
private List<String> tagList; private List<String> tagList;
@SuppressLint("NotifyDataSetChanged")
@Override @Override
protected void sanRfid(List<Reader.TAGINFO> epcs) { protected void sanRfid(List<Reader.TAGINFO> epcs) {
if (tagList == null) return; if (tagList == null) return;
@ -70,9 +71,8 @@ public class StoreCheckActivity extends BaseActivity {
return; return;
} }
tagList.add(epc); tagList.add(epc);
Log.e("TAG", "sanRfid:" + epc);
var stock = new Stock(); var stock = new Stock();
stock.setEpcCode(epc); stock.setEpcCode(HexAscii.hex2Str(epc));
var index = list.indexOf(stock); var index = list.indexOf(stock);
if (index != -1) { if (index != -1) {
list.get(index).setState("Y"); list.get(index).setState("Y");

@ -1,17 +1,22 @@
package com.example.beijing_daxing.adapter; package com.example.beijing_daxing.adapter;
import android.content.Context; import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater; import android.view.LayoutInflater;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.widget.TextView;
import androidx.databinding.BindingAdapter;
import androidx.databinding.DataBindingUtil; import androidx.databinding.DataBindingUtil;
import androidx.recyclerview.widget.RecyclerView; import androidx.recyclerview.widget.RecyclerView;
import com.example.beijing_daxing.BR; import com.example.beijing_daxing.BR;
import com.example.beijing_daxing.R; import com.example.beijing_daxing.R;
import com.example.beijing_daxing.base.AdapterClickCall; import com.example.beijing_daxing.base.AdapterClickCall;
import com.example.beijing_daxing.been.CheckTaskInfo;
import com.example.beijing_daxing.been.Stock; import com.example.beijing_daxing.been.Stock;
import com.example.beijing_daxing.databinding.ItemCheckBinding; import com.example.beijing_daxing.databinding.ItemCheckBinding;
import com.example.beijing_daxing.databinding.ItemCheckListBinding;
import java.util.List; import java.util.List;
@ -21,30 +26,32 @@ import java.util.List;
*/ */
public class CheckListAdapter extends RecyclerView.Adapter<CheckListAdapter.MyViewHoder> { public class CheckListAdapter extends RecyclerView.Adapter<CheckListAdapter.MyViewHoder> {
private Context context; private Context context;
private List<Stock> list; private List<CheckTaskInfo> list;
private LayoutInflater inflater; private LayoutInflater inflater;
private AdapterClickCall call; private AdapterClickCall call;
public CheckListAdapter(Context context) { public CheckListAdapter(Context context,AdapterClickCall call) {
this.context = context; this.context = context;
inflater = LayoutInflater.from(context); inflater = LayoutInflater.from(context);
this.call=call; this.call=call;
} }
public void setList(List<Stock> list) { public void setList(List<CheckTaskInfo> list) {
this.list = list; this.list = list;
} }
@Override @Override
public MyViewHoder onCreateViewHolder(ViewGroup parent, int viewType) { public MyViewHoder onCreateViewHolder(ViewGroup parent, int viewType) {
ItemCheckBinding binding = DataBindingUtil.inflate(inflater, R.layout.item_check, parent, false); ItemCheckListBinding binding = DataBindingUtil.inflate(inflater, R.layout.item_check_list, parent, false);
return new MyViewHoder(binding); return new MyViewHoder(binding);
} }
@Override @Override
public void onBindViewHolder(MyViewHoder holder, int position) { public void onBindViewHolder(MyViewHoder holder, int position) {
var binding = holder.getBinding(); var binding = holder.getBinding();
binding.setVariable(BR.item,list.get(position)); binding.setVariable(BR.vm, list.get(position));
binding.itemCheckClick.setOnClickListener(v -> call.clickItem(position)); binding.checkListStart.setOnClickListener(v -> call.clickItem(position));
binding.executePendingBindings();
} }
@Override @Override
@ -53,15 +60,26 @@ public class CheckListAdapter extends RecyclerView.Adapter<CheckListAdapter.MyVi
} }
public class MyViewHoder extends RecyclerView.ViewHolder { public class MyViewHoder extends RecyclerView.ViewHolder {
private ItemCheckBinding binding; private ItemCheckListBinding binding;
public MyViewHoder( ItemCheckBinding binding) { public MyViewHoder( ItemCheckListBinding binding) {
super(binding.getRoot()); super(binding.getRoot());
this.binding = binding; this.binding = binding;
} }
public ItemCheckBinding getBinding() { public ItemCheckListBinding getBinding() {
return binding; return binding;
} }
} }
@BindingAdapter("customBackground")
public static void setCustomBackground(TextView textView, String taskState) {
if ("待完成".equals(taskState)) {
textView.setBackgroundResource(R.drawable.state_n_bg);
} else {
textView.setBackgroundResource(R.drawable.state_y_bg);
}
}
} }

@ -44,9 +44,8 @@ import java.util.List;
import okhttp3.MediaType; import okhttp3.MediaType;
public abstract class BaseActivity extends AppCompatActivity { public abstract class BaseActivity extends AppCompatActivity {
// public static String url = "http://192.168.0.102:8090/api"; public static String url = "http://192.168.0.102:8090/api";
// public static String url = "http://192.168.42.239:8090/api"; // public static String url = "http://119.45.202.115:8090/api";
public static String url = "http://119.45.202.115:8090/api";
public ProgressDialog dialog; public ProgressDialog dialog;
public Gson gson; public Gson gson;
public MediaType JSON = MediaType.parse("application/json; charset=utf-8"); public MediaType JSON = MediaType.parse("application/json; charset=utf-8");
@ -145,30 +144,19 @@ public abstract class BaseActivity extends AppCompatActivity {
if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) { if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 1); ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 1);
} }
outputImage = new File(getExternalCacheDir(), "output_imgage" + format.format(new Date()) + ".jpg"); outputImage = new File(getExternalCacheDir(), "output_imgage" + format.format(new Date()) + ".jpg");
// if (outputImage.exists()) {
// outputImage.delete();
// }
try { try {
outputImage.createNewFile(); outputImage.createNewFile();
} catch (IOException e) { } catch (IOException e) {
Log.e("TAG", "teke_photo:文件创建错误"); Log.e("TAG", "teke_photo:文件创建错误");
e.printStackTrace(); e.printStackTrace();
} }
if (Build.VERSION.SDK_INT >= 24) { if (Build.VERSION.SDK_INT >= 24) {
img_uri = FileProvider.getUriForFile(this, "com.example.beijing_daxing", outputImage); img_uri = FileProvider.getUriForFile(this, "com.example.beijing_daxing", outputImage);
Log.e("TAG", "teke_photo1"+img_uri.toString() );
} else { } else {
img_uri = Uri.fromFile(outputImage); img_uri = Uri.fromFile(outputImage);
Log.e("TAG", "teke_photo2" );
} }
if ( if (PackageManager.PERMISSION_GRANTED == ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA)) {
PackageManager.PERMISSION_GRANTED == ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA)
) {
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE"); Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
intent.putExtra(MediaStore.EXTRA_OUTPUT, img_uri); intent.putExtra(MediaStore.EXTRA_OUTPUT, img_uri);
startActivityForResult(intent, CAMERA_PHOTO); startActivityForResult(intent, CAMERA_PHOTO);
@ -188,30 +176,6 @@ public abstract class BaseActivity extends AppCompatActivity {
protected void onActivityResult(int requestCode, int resultCode, Intent data) { protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data); super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) { if (resultCode == RESULT_OK) {
/*
try {
Bitmap bitmap;
InputStream inputStream = getContentResolver().openInputStream(img_uri);
if (inputStream!= null) {
bitmap = BitmapFactory.decodeStream(inputStream);
FileOutputStream outputStream = new FileOutputStream(outputImage);
if (bitmap!= null) {
bitmap.compress(Bitmap.CompressFormat.JPEG, 70, outputStream);
takePhotoCall(outputImage, bitmap);
outputStream.close();
} else {
Log.e("Error", "Bitmap is null after decoding.");
}
} else {
Log.e("Error", "InputStream is null.");
}
} catch (IOException e) {
Log.e("Error", "Error reading or writing file.", e);
}
*/
Bitmap bitmap = null; Bitmap bitmap = null;
try { try {
Log.e("TAG", "onActivityResult:" + img_uri.getPath()); Log.e("TAG", "onActivityResult:" + img_uri.getPath());

@ -0,0 +1,62 @@
package com.example.beijing_daxing.been;
import androidx.databinding.BaseObservable;
public class CheckTaskInfo extends BaseObservable {
private int index;
private Long id;
private String locationCode;
private String areaName;
private String taskState;
public String getTaskState() {
return taskState;
}
public void setTaskState(String taskState) {
this.taskState = taskState;
}
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getLocationCode() {
return locationCode;
}
public void setLocationCode(String locationCode) {
this.locationCode = locationCode;
}
public String getAreaName() {
return areaName;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
@Override
public String toString() {
return "CheckTaskInfo{" +
"index=" + index +
", id=" + id +
", locationCode='" + locationCode + '\'' +
", areaName='" + areaName + '\'' +
", taskState='" + taskState + '\'' +
'}';
}
}

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="50dp"/>
<solid android:color="#FFC107"/>
</shape>

@ -137,7 +137,6 @@
android:layout_weight="1" android:layout_weight="1"
android:backgroundTint="@{checkState?@color/yellow:@color/black}" android:backgroundTint="@{checkState?@color/yellow:@color/black}"
android:onClick="offCheckRead" android:onClick="offCheckRead"
android:visibility="gone"
android:text='@{checkState?"停止读取":"开始扫描"}' android:text='@{checkState?"停止读取":"开始扫描"}'
android:textSize="20sp" /> android:textSize="20sp" />

@ -7,6 +7,11 @@
<variable <variable
name="adapter" name="adapter"
type="com.example.beijing_daxing.adapter.CheckListAdapter" /> type="com.example.beijing_daxing.adapter.CheckListAdapter" />
<variable
name="state"
type="androidx.databinding.ObservableBoolean" />
<import type="android.view.View"/>
</data> </data>
<LinearLayout <LinearLayout
@ -47,7 +52,21 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:text="机位码" android:text="机坪"
/>
<View
android:layout_width="2dp"
android:layout_height="match_parent"
android:background="@color/white" />
<TextView
style="@style/item_text_style"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="机位编码"
/> />
<View <View
@ -77,9 +96,9 @@
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="450dp" android:layout_height="0dp"
android:adapter="@{adapter}" android:adapter="@{adapter}"
android:padding="10dp" android:padding="5dp"
android:layout_weight="1" android:layout_weight="1"
android:background="@color/white" android:background="@color/white"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" /> app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
@ -90,6 +109,7 @@
android:layout_height="55dp" android:layout_height="55dp"
android:layout_margin="15dp" android:layout_margin="15dp"
android:onClick="check_start" android:onClick="check_start"
android:text="开始巡检" /> android:visibility="@{state?View.VISIBLE:View.GONE}"
android:text="创建巡检列表" />
</LinearLayout> </LinearLayout>
</layout> </layout>

@ -24,7 +24,7 @@
style="@style/title_text" style="@style/title_text"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:text="轮挡巡检" /> android:text="待巡检机位" />
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent" android:layout_width="match_parent"
@ -36,31 +36,14 @@
android:padding="10dp" android:padding="10dp"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" /> app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="55dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:orientation="horizontal">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="20dp"
android:layout_weight="1"
android:backgroundTint="@{checkState?@color/yellow:@color/black}"
android:onClick="offCheckRead"
android:text='@{checkState?"停止读取":"开始扫描"}'
android:textSize="20sp" />
<Button <Button
style="@style/button_style" style="@style/button_style"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="55dp"
android:layout_weight="1" android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:onClick="store_check_submit" android:onClick="store_check_submit"
android:text="提交" /> android:text="创建巡检列表" />
</LinearLayout> </LinearLayout>
</LinearLayout>
</layout> </layout>

@ -1,17 +1,25 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="vm"
type="com.example.beijing_daxing.vm.PowerData" />
</data>
<LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical" android:orientation="vertical"
tools:context=".SetingPowerActivity"> tools:context=".SetingPowerActivity">
<!-- <TextView <TextView
style="@style/title_text" style="@style/title_text"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:text="废品入库" /> android:text="设置功率" />
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
@ -31,7 +39,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:text="@={vm.epc}" /> android:text='@={vm.powerIn+""}' />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
@ -47,12 +55,12 @@
android:layout_gravity="center" android:layout_gravity="center"
android:text="出库功率:" /> android:text="出库功率:" />
<TextView <EditText
style="@style/info_text1" style="@style/san_text"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:text="@={vm.bichCode}" /> android:text='@={vm.powerOut+""}' />
</LinearLayout> </LinearLayout>
@ -67,14 +75,14 @@
android:layout_width="110dp" android:layout_width="110dp"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:text="轮挡位置:" /> android:text="盘点功率:" />
<TextView <EditText
style="@style/info_text1" style="@style/san_text"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_gravity="center" android:layout_gravity="center"
android:text="@={vm.location}" /> android:text='@={vm.powerStockCheck+""}' />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
@ -88,14 +96,14 @@
android:layout_width="110dp" android:layout_width="110dp"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:text="位置代码:" /> android:text="巡检功率:" />
<TextView <EditText
style="@style/info_text1" style="@style/san_text"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_gravity="center" android:layout_gravity="center"
android:text="@={vm.locationCode}" /> android:text='@={vm.powerCheck+""}' />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
@ -108,14 +116,14 @@
android:layout_width="110dp" android:layout_width="110dp"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:text="轮挡状态:" /> android:text="报废功率:" />
<TextView <EditText
style="@style/info_text1" style="@style/san_text"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:text="@={vm.state}" /> android:text='@={vm.powerScrap+""}' />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
@ -128,44 +136,44 @@
android:layout_width="110dp" android:layout_width="110dp"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:text="报废时间:" /> android:text="废品入库:" />
<TextView <EditText
style="@style/info_text1" style="@style/san_text"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:text="@={vm.time}" /> android:text='@={vm.powerScrapIn+""}' />
</LinearLayout> </LinearLayout>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_marginTop="10dp" android:layout_marginTop="10dp">
android:layout_marginEnd="8dp"
android:background="@color/white">
<TextView <TextView
style="@style/info_text" style="@style/info_text"
android:layout_width="110dp" android:layout_width="110dp"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_gravity="center"
android:background="@color/bg1" android:text="废品出库:" />
android:text="选择库位:" />
<Spinner <EditText
style="@style/san_text"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:entries="@{vm.list}" android:layout_gravity="center"
android:onItemSelected="@{vm.selectLocation}" android:text='@={vm.powerScrapOut+""}' />
android:textAlignment="center" />
</LinearLayout> </LinearLayout>
<Button <Button
style="@style/button_style" style="@style/button_style"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="55dp" android:layout_height="55dp"
android:layout_margin="20dp" android:layout_margin="20dp"
android:onClick="fpin_submit" android:onClick="settingSeva"
android:text="废品入库" />--> android:text="保存" />
</LinearLayout> </LinearLayout>
</layout>

@ -1,8 +1,13 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"> <layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data> <data>
<variable
name="vm"
type="com.example.beijing_daxing.been.CheckTaskInfo" />
<import type="android.view.View"/>
</data> </data>
<LinearLayout <LinearLayout
@ -17,7 +22,7 @@
style="@style/item_text_style" style="@style/item_text_style"
android:layout_width="40dp" android:layout_width="40dp"
android:layout_height="match_parent" android:layout_height="match_parent"
android:text="序号" android:text='@{vm.index+""}'
/> />
<View <View
@ -25,13 +30,25 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/white" /> android:background="@color/white" />
<TextView
style="@style/item_text_style"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@{vm.areaName}"
/>
<View
android:layout_width="2dp"
android:layout_height="match_parent"
android:background="@color/white" />
<TextView <TextView
style="@style/item_text_style" style="@style/item_text_style"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:text="机位码" android:text="@{vm.locationCode}"
/> />
<View <View
@ -45,19 +62,20 @@
android:layout_width="63dp" android:layout_width="63dp"
android:layout_height="30dp" android:layout_height="30dp"
android:layout_gravity="center" android:layout_gravity="center"
android:background="@drawable/state_y_bg" app:customBackground="@{vm.taskState}"
android:textColor="@color/white" android:textColor="@color/white"
android:text="状态" /> android:text="@{vm.taskState}" />
<View <View
android:layout_width="2dp" android:layout_width="2dp"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/white" /> android:background="@color/white" />
<TextView <ImageView
android:id="@+id/check_list_start"
style="@style/item_text_style" style="@style/item_text_style"
android:layout_width="63dp" android:layout_width="63dp"
android:layout_height="match_parent" android:layout_height="match_parent"
android:textColor="#E71717" /> android:src="@mipmap/ic_start"
android:padding="5dp"/>
</LinearLayout> </LinearLayout>
</layout> </layout>
Loading…
Cancel
Save