增加 巡检任务

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

@ -2,15 +2,20 @@ package com.example.beijing_daxing;
import androidx.appcompat.app.AppCompatActivity;
import androidx.databinding.DataBindingUtil;
import androidx.databinding.ObservableBoolean;
import android.annotation.SuppressLint;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
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.MyRecultCall;
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.databinding.ActivityCheckListBinding;
import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
@ -21,15 +26,43 @@ import com.uhf.api.cls.Reader;
import java.util.List;
public class CheckListActivity extends BaseActivity {
private CheckListAdapter checkListAdapter;
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);
checkListAdapter = new CheckListAdapter(this);
binding.setAdapter(checkListAdapter);
adapter = new CheckListAdapter(this,this);
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
@ -46,18 +79,18 @@ public class CheckListActivity extends BaseActivity {
super.onSuccess(response);
var body = response.body();
if (body.getCode() == 0) {
// list = gson.fromJson(body.getData().toString(), new TypeToken<List<Stock>>() {
// }.getType());
// if (list == null || list.isEmpty()) {
// Toast.makeText(CheckActivity.this, "没有维护巡检区域", Toast.LENGTH_SHORT).show();
// return;
// }
// adapter.setList(list);
// adapter.notifyDataSetChanged();
initRequest();
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.Toast;
import com.example.beijing_daxing.adapter.CheckListAdapter;
import com.example.beijing_daxing.adapter.HomePageAdapter;
import com.example.beijing_daxing.base.MyApplication;
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_out1, "轮挡领用出库", OutActivity.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, "轮挡巡检", OffLineCheckActivity.class));
list.add(new HomeIcon(R.mipmap.home_check, "轮挡巡检", CheckListActivity.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_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();
try {
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.been.InStoreSelectBody;
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.vm.InStoreVM;
import com.lzy.okgo.OkGo;
@ -36,6 +37,7 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
private InStoreVM vm;
private InAdapter adapter;
private List<String> epcList;
private List<String> tagList;
private ActivityInBinding binding;
private ObservableBoolean checkState;
@Override
@ -50,30 +52,25 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
adapter.setList(epcList);
adapter.setAdapterClickCall(this);
binding.setAdapter(adapter);
checkState=new ObservableBoolean();
binding.setCheckState(checkState);
tagList=new ArrayList<>();
}
@Override
protected void onResume() {
super.onResume();
setPower(33);
setPower(SharedPreferencesUtils.getInt("powerIn",33));
}
@Override
protected void sanRfid(List<Reader.TAGINFO> epcs) {
// Log.e("TAG", "sanRfid:" + epcs);
epcs.stream().forEach(t -> {
var epc = Tools.Bytes2HexString(t.EpcId,t.EpcId.length);
if (!epcList.contains(epc)) {
Log.e("TAG", "sanRfid:" + epc);
if (epc.substring(0,8).equals("53574C44")){
epcList.add(epc);
}
}
if (!epc.substring(0,8).equals("53574C44")) return;
if (tagList.contains(epc)) return;
tagList.add(epc);
epcList.add(HexAscii.hex2Str(epc));
});
vm.setSanLength(epcList.size());
adapter.notifyDataSetChanged();
@ -85,7 +82,6 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
@Override
public void onSuccess(Response<MyResult> response) {
super.onSuccess(response);
// Log.e("TAG", "onSuccess:" + );response.body()
InStoreSelectBody inStoreSelectBody = gson.fromJson(response.body().getData().toString(), InStoreSelectBody.class);
vm.initSelect(inStoreSelectBody.getBaseLocationList(), inStoreSelectBody.getBaseManufacturerList());
}
@ -94,6 +90,7 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
@Override
public void clickItem(int index) {
tagList.remove(HexAscii.str2Hex(epcList.get(index)));
epcList.remove(index);
adapter.notifyDataSetChanged();
vm.setSanLength(epcList.size());
@ -114,8 +111,6 @@ public class InActivity extends BaseActivity implements AdapterClickCall {
if (response.body().getCode() == 0) {
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;
import androidx.databinding.DataBindingUtil;
import android.annotation.SuppressLint;
import android.os.Bundle;
import android.view.View;
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.databinding.ActivityOutBinding;
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.vm.OutStoreVm;
import com.google.gson.reflect.TypeToken;
@ -28,12 +31,14 @@ public class OutActivity extends BaseActivity implements AdapterClickCall {
private InAdapter adapter;
private OutStoreVm outVm;
private List<String> epcList;
private List<String> tagList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ActivityOutBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_out);
adapter=new InAdapter(this);
epcList=new ArrayList<>();
tagList=new ArrayList<>();
adapter.setList(epcList);
adapter.setAdapterClickCall(this);
binding.setAdapter(adapter);
@ -45,23 +50,25 @@ public class OutActivity extends BaseActivity implements AdapterClickCall {
@Override
protected void onResume() {
super.onResume();
setPower(17);
setPower(SharedPreferencesUtils.getInt("powerOut",17));
}
@SuppressLint("NotifyDataSetChanged")
@Override
protected void sanRfid(List<Reader.TAGINFO> epcs) {
epcs.stream().forEach(t -> {
epcs.forEach(t -> {
var epc = Tools.Bytes2HexString(t.EpcId,t.EpcId.length);
if (!epcList.contains(epc)) {
if (epc.substring(0,8).equals("53574C44")) {
epcList.add(epc);
}
}
if (!epc.startsWith("53574C44")) return;
if (tagList.contains(epc)) return;
tagList.add(epc);
epcList.add(HexAscii.hex2Str(epc));
});
adapter.notifyDataSetChanged();
}
@SuppressLint("NotifyDataSetChanged")
@Override
public void clickItem(int index) {
tagList.remove(index);
epcList.remove(index);
adapter.notifyDataSetChanged();
}

@ -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();
}
}

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

@ -1,17 +1,22 @@
package com.example.beijing_daxing.adapter;
import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.databinding.BindingAdapter;
import androidx.databinding.DataBindingUtil;
import androidx.recyclerview.widget.RecyclerView;
import com.example.beijing_daxing.BR;
import com.example.beijing_daxing.R;
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.databinding.ItemCheckBinding;
import com.example.beijing_daxing.databinding.ItemCheckListBinding;
import java.util.List;
@ -21,30 +26,32 @@ import java.util.List;
*/
public class CheckListAdapter extends RecyclerView.Adapter<CheckListAdapter.MyViewHoder> {
private Context context;
private List<Stock> list;
private List<CheckTaskInfo> list;
private LayoutInflater inflater;
private AdapterClickCall call;
public CheckListAdapter(Context context) {
public CheckListAdapter(Context context,AdapterClickCall call) {
this.context = context;
inflater = LayoutInflater.from(context);
this.call=call;
}
public void setList(List<Stock> list) {
public void setList(List<CheckTaskInfo> list) {
this.list = list;
}
@Override
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);
}
@Override
public void onBindViewHolder(MyViewHoder holder, int position) {
var binding = holder.getBinding();
binding.setVariable(BR.item,list.get(position));
binding.itemCheckClick.setOnClickListener(v -> call.clickItem(position));
binding.setVariable(BR.vm, list.get(position));
binding.checkListStart.setOnClickListener(v -> call.clickItem(position));
binding.executePendingBindings();
}
@Override
@ -53,15 +60,26 @@ public class CheckListAdapter extends RecyclerView.Adapter<CheckListAdapter.MyVi
}
public class MyViewHoder extends RecyclerView.ViewHolder {
private ItemCheckBinding binding;
private ItemCheckListBinding binding;
public MyViewHoder( ItemCheckBinding binding) {
public MyViewHoder( ItemCheckListBinding binding) {
super(binding.getRoot());
this.binding = binding;
}
public ItemCheckBinding getBinding() {
public ItemCheckListBinding getBinding() {
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;
public abstract class BaseActivity extends AppCompatActivity {
// 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://192.168.0.102:8090/api";
// public static String url = "http://119.45.202.115:8090/api";
public ProgressDialog dialog;
public Gson gson;
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) {
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 1);
}
outputImage = new File(getExternalCacheDir(), "output_imgage" + format.format(new Date()) + ".jpg");
// if (outputImage.exists()) {
// outputImage.delete();
// }
try {
outputImage.createNewFile();
} catch (IOException e) {
Log.e("TAG", "teke_photo:文件创建错误");
e.printStackTrace();
}
if (Build.VERSION.SDK_INT >= 24) {
img_uri = FileProvider.getUriForFile(this, "com.example.beijing_daxing", outputImage);
Log.e("TAG", "teke_photo1"+img_uri.toString() );
} else {
img_uri = Uri.fromFile(outputImage);
Log.e("TAG", "teke_photo2" );
}
if (
PackageManager.PERMISSION_GRANTED == ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA)
) {
if (PackageManager.PERMISSION_GRANTED == ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA)) {
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
intent.putExtra(MediaStore.EXTRA_OUTPUT, img_uri);
startActivityForResult(intent, CAMERA_PHOTO);
@ -188,30 +176,6 @@ public abstract class BaseActivity extends AppCompatActivity {
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
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;
try {
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:backgroundTint="@{checkState?@color/yellow:@color/black}"
android:onClick="offCheckRead"
android:visibility="gone"
android:text='@{checkState?"停止读取":"开始扫描"}'
android:textSize="20sp" />

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

@ -20,47 +20,30 @@
android:orientation="vertical"
tools:context=".OffLineCheckActivity">
<TextView
style="@style/title_text"
android:layout_width="match_parent"
android:layout_height="45dp"
android:text="轮挡巡检" />
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:adapter="@{adapter}"
android:background="@color/white"
android:padding="10dp"
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" />
<TextView
style="@style/title_text"
android:layout_width="match_parent"
android:layout_height="45dp"
android:text="待巡检机位" />
<Button
style="@style/button_style"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:onClick="store_check_submit"
android:text="提交" />
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:adapter="@{adapter}"
android:background="@color/white"
android:padding="10dp"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
<Button
style="@style/button_style"
android:layout_width="match_parent"
android:layout_height="55dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:onClick="store_check_submit"
android:text="创建巡检列表" />
</LinearLayout>
</LinearLayout>
</layout>

@ -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>

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