增加 巡检任务
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>
|
@ -1,171 +1,179 @@
|
||||
<?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:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".SetingPowerActivity">
|
||||
|
||||
<!-- <TextView
|
||||
style="@style/title_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:text="废品入库" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="入库功率:" />
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.epc}" />
|
||||
</LinearLayout>
|
||||
<data>
|
||||
<variable
|
||||
name="vm"
|
||||
type="com.example.beijing_daxing.vm.PowerData" />
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".SetingPowerActivity">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="出库功率:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
style="@style/title_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.bichCode}" />
|
||||
</LinearLayout>
|
||||
android:text="设置功率" />
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="轮挡位置:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="入库功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerIn+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.location}" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="位置代码:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="出库功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerOut+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.locationCode}" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="轮挡状态:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="盘点功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerStockCheck+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.state}" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="巡检功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerCheck+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="报废时间:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="报废功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerScrap+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.time}" />
|
||||
</LinearLayout>
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:background="@color/white">
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="废品入库:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerScrapIn+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:background="@color/bg1"
|
||||
android:text="选择库位:" />
|
||||
|
||||
<Spinner
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:entries="@{vm.list}"
|
||||
android:onItemSelected="@{vm.selectLocation}"
|
||||
android:textAlignment="center" />
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="废品出库:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerScrapOut+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<Button
|
||||
style="@style/button_style"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_margin="20dp"
|
||||
android:onClick="settingSeva"
|
||||
android:text="保存" />
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
style="@style/button_style"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_margin="20dp"
|
||||
android:onClick="fpin_submit"
|
||||
android:text="废品入库" />-->
|
||||
</LinearLayout>
|
||||
</layout>
|
Loading…
Reference in New Issue