增加 巡检任务
parent
0b7833ac35
commit
463421cb32
@ -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,14 +1,47 @@
|
||||
package com.example.beijing_daxing;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.databinding.DataBindingUtil;
|
||||
import androidx.databinding.ViewDataBinding;
|
||||
|
||||
import android.app.Activity;
|
||||
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 {
|
||||
private PowerData powerData;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle 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();
|
||||
|
||||
}
|
||||
}
|
@ -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>
|
Loading…
Reference in New Issue