增加 废品入库
parent
9a50962aed
commit
a58248d9ba
@ -0,0 +1,82 @@
|
||||
package com.example.beijing_daxing;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.databinding.DataBindingUtil;
|
||||
import androidx.databinding.ViewDataBinding;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.Toast;
|
||||
|
||||
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.LedgerRfid;
|
||||
import com.example.beijing_daxing.databinding.ActivityBfactivityBinding;
|
||||
import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
|
||||
import com.example.beijing_daxing.vm.BFWm;
|
||||
import com.lzy.okgo.OkGo;
|
||||
import com.lzy.okgo.model.Response;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class BFActivity extends BaseActivity {
|
||||
private BFWm wm;
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
ActivityBfactivityBinding dataBinding = DataBindingUtil.setContentView(this, R.layout.activity_bfactivity);
|
||||
wm=new BFWm();
|
||||
dataBinding.setVm(wm);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void sanRfid(List<String> epcs) {
|
||||
var epc = epcs.get(0);
|
||||
wm.setEpc(epc);
|
||||
OkGo.<MyResult>post(url+"/bf/select")
|
||||
.tag(this)
|
||||
.params("epc",epc)
|
||||
.execute(new MyRecultCall(dialog,this){
|
||||
@Override
|
||||
public void onSuccess(Response<MyResult> response) {
|
||||
super.onSuccess(response);
|
||||
var body = response.body();
|
||||
if (body.getCode()==0){
|
||||
LedgerRfid ledgerRfid=gson.fromJson(body.getData().toString(),LedgerRfid.class);
|
||||
wm.setPcode(ledgerRfid.getBatchCode());
|
||||
wm.setState(ledgerRfid.getDictLabel());
|
||||
}else {
|
||||
wm.clearText();
|
||||
Toast.makeText(BFActivity.this, body.getMsg(), Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public void bf_submit(View view){
|
||||
if (wm.getState().equals("正常")){
|
||||
OkGo.<MyResult>post(url+"/bf/submit")
|
||||
.params("epc",wm.getEpc())
|
||||
.params("remark",wm.getRemark())
|
||||
.params("user", SharedPreferencesUtils.getstring("user","test-user"))
|
||||
.execute(new MyRecultCall(dialog,this){
|
||||
@Override
|
||||
public void onSuccess(Response<MyResult> response) {
|
||||
super.onSuccess(response);
|
||||
var body = response.body();
|
||||
if (body.getCode()==0){
|
||||
Toast.makeText(BFActivity.this, "提交成功", Toast.LENGTH_SHORT).show();
|
||||
finish();
|
||||
}else {
|
||||
Toast.makeText(BFActivity.this,body.getMsg(), Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
}else {
|
||||
Toast.makeText(this, "轮挡已报废,无需操作", Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,90 @@
|
||||
package com.example.beijing_daxing;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.databinding.DataBindingUtil;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.Toast;
|
||||
|
||||
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.LedgerRfid;
|
||||
import com.example.beijing_daxing.databinding.ActivityFpInBinding;
|
||||
import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
|
||||
import com.example.beijing_daxing.vm.FpInVm;
|
||||
import com.lzy.okgo.OkGo;
|
||||
import com.lzy.okgo.model.Response;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class FpInActivity extends BaseActivity {
|
||||
private FpInVm vm;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
ActivityFpInBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_fp_in);
|
||||
vm = new FpInVm();
|
||||
binding.setVm(vm);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void sanRfid(List<String> epcs) {
|
||||
var epc = epcs.get(0);
|
||||
vm.setEpc(epc);
|
||||
OkGo.<MyResult>post(url+"/fpin/select")
|
||||
.tag(this).params("epc",epc)
|
||||
.execute(new MyRecultCall(dialog,this){
|
||||
@Override
|
||||
public void onSuccess(Response<MyResult> response) {
|
||||
super.onSuccess(response);
|
||||
var body = response.body();
|
||||
if (body.getCode()==0){
|
||||
LedgerRfid ledgerRfid=gson.fromJson(body.getData().toString(),LedgerRfid.class);
|
||||
vm.setBichCode(ledgerRfid.getBatchCode());
|
||||
vm.setLocation(ledgerRfid.getLocationType());
|
||||
vm.setLocationCode(ledgerRfid.getLocationCode());
|
||||
vm.setState(ledgerRfid.getDictLabel());
|
||||
vm.setTime(ledgerRfid.getCreateTime());
|
||||
vm.setList(ledgerRfid.getBaseLocationList());
|
||||
}
|
||||
Toast.makeText(FpInActivity.this, body.getMsg(), Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public void fpin_submit(View view){
|
||||
var state = vm.getState();
|
||||
if (!state.equals("报废")){
|
||||
Toast.makeText(this, "轮挡状态:"+state+",不能使用废品入库功能", Toast.LENGTH_SHORT).show();
|
||||
return;
|
||||
}
|
||||
if (!vm.getLocation().equals("仓库")){
|
||||
Toast.makeText(this, "轮挡状态已在仓库", Toast.LENGTH_SHORT).show();
|
||||
return;
|
||||
}
|
||||
OkGo.<MyResult>post(url+"/fpin/submit").tag(this)
|
||||
.params("epc",vm.getEpc())
|
||||
.params("localtionCode",vm.getLocationCode())
|
||||
.params("user", SharedPreferencesUtils.getstring("user",""))
|
||||
.params("bf",vm.getTime())
|
||||
.params("subCode",vm.getSubmitCode())
|
||||
.execute(new MyRecultCall(dialog,this){
|
||||
@Override
|
||||
public void onSuccess(Response<MyResult> response) {
|
||||
super.onSuccess(response);
|
||||
var body = response.body();
|
||||
if (body.getCode()==0){
|
||||
finish();
|
||||
Toast.makeText(FpInActivity.this, "提交成功", Toast.LENGTH_SHORT).show();
|
||||
return;
|
||||
}
|
||||
Toast.makeText(FpInActivity.this, body.getMsg(), Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package com.example.beijing_daxing.entity;
|
||||
package com.example.beijing_daxing.been;
|
||||
|
||||
/**
|
||||
* 库位信息维护对象 base_location
|
@ -1,4 +1,4 @@
|
||||
package com.example.beijing_daxing.entity;
|
||||
package com.example.beijing_daxing.been;
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.example.beijing_daxing.entity;
|
||||
package com.example.beijing_daxing.been;
|
||||
|
||||
/**
|
||||
* @author wanghao
|
@ -0,0 +1,106 @@
|
||||
package com.example.beijing_daxing.been;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 轮挡台账对象 ledger_rfid
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-01-17
|
||||
*/
|
||||
public class LedgerRfid {
|
||||
|
||||
private Long objid;
|
||||
private Long manufacturerId;
|
||||
/**
|
||||
* RFID编码
|
||||
*/
|
||||
private String rifdCode;
|
||||
/**
|
||||
* 生产批次
|
||||
*/
|
||||
private String batchCode;
|
||||
/**
|
||||
* 所在位置
|
||||
*/
|
||||
private String locationType;
|
||||
/**
|
||||
* 位置编码
|
||||
*/
|
||||
private String locationCode;
|
||||
/**
|
||||
* 是否报废
|
||||
*/
|
||||
private String isScrap;
|
||||
private String dictLabel;
|
||||
private List<BaseLocation> baseLocationList;
|
||||
private String createTime;
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public List<BaseLocation> getBaseLocationList() {
|
||||
return baseLocationList;
|
||||
}
|
||||
|
||||
public void setBaseLocationList(List<BaseLocation> baseLocationList) {
|
||||
this.baseLocationList = baseLocationList;
|
||||
}
|
||||
|
||||
public String getDictLabel() {
|
||||
return dictLabel;
|
||||
}
|
||||
public void setDictLabel(String dictLabel) {
|
||||
this.dictLabel = dictLabel;
|
||||
}
|
||||
public void setObjid(Long objid) {
|
||||
this.objid = objid;
|
||||
}
|
||||
public Long getObjid() {
|
||||
return objid;
|
||||
}
|
||||
public void setManufacturerId(Long manufacturerId) {
|
||||
this.manufacturerId = manufacturerId;
|
||||
}
|
||||
public Long getManufacturerId() {
|
||||
return manufacturerId;
|
||||
}
|
||||
public void setRifdCode(String rifdCode) {
|
||||
this.rifdCode = rifdCode;
|
||||
}
|
||||
public String getRifdCode() {
|
||||
return rifdCode;
|
||||
}
|
||||
public void setBatchCode(String batchCode) {
|
||||
this.batchCode = batchCode;
|
||||
}
|
||||
public String getBatchCode() {
|
||||
return batchCode;
|
||||
}
|
||||
public void setLocationType(String locationType) {
|
||||
this.locationType = locationType;
|
||||
}
|
||||
public String getLocationType() {
|
||||
return locationType;
|
||||
}
|
||||
public void setLocationCode(String locationCode) {
|
||||
this.locationCode = locationCode;
|
||||
}
|
||||
public String getLocationCode() {
|
||||
return locationCode;
|
||||
}
|
||||
public void setIsScrap(String isScrap) {
|
||||
this.isScrap = isScrap;
|
||||
}
|
||||
public String getIsScrap() {
|
||||
return isScrap;
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,54 @@
|
||||
package com.example.beijing_daxing.vm;
|
||||
|
||||
import androidx.databinding.BaseObservable;
|
||||
|
||||
/**
|
||||
* @author wanghao
|
||||
* @date 2024/1/25 16:59
|
||||
*/
|
||||
public class BFWm extends BaseObservable {
|
||||
private String epc;
|
||||
private String pcode;
|
||||
private String state;
|
||||
private String remark;
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getEpc() {
|
||||
return epc;
|
||||
}
|
||||
|
||||
public void setEpc(String epc) {
|
||||
this.epc = epc;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
public void setState(String state) {
|
||||
this.state = state;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getPcode() {
|
||||
return pcode;
|
||||
}
|
||||
|
||||
public void setPcode(String pcode) {
|
||||
this.pcode = pcode;
|
||||
}
|
||||
|
||||
public void clearText() {
|
||||
state = remark = pcode = null;
|
||||
notifyChange();
|
||||
}
|
||||
}
|
@ -0,0 +1,100 @@
|
||||
package com.example.beijing_daxing.vm;
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.Adapter;
|
||||
import android.widget.AdapterView;
|
||||
|
||||
import androidx.databinding.BaseObservable;
|
||||
|
||||
import com.example.beijing_daxing.been.BaseLocation;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author wanghao
|
||||
* @date 2024/1/26 15:32
|
||||
*/
|
||||
public class FpInVm extends BaseObservable {
|
||||
private String epc;
|
||||
private String bichCode;
|
||||
private String location;
|
||||
private String locationCode;
|
||||
private String state;
|
||||
private String time;
|
||||
private String submitCode;
|
||||
private List<String> list;
|
||||
|
||||
public void selectLocation(AdapterView<?> parent, View view, int position, long id) {
|
||||
this.submitCode=list.get(position);
|
||||
}
|
||||
|
||||
|
||||
public String getSubmitCode() {
|
||||
return submitCode;
|
||||
}
|
||||
|
||||
public List<String> getList() {
|
||||
return list;
|
||||
}
|
||||
|
||||
public void setList(List<BaseLocation> list1) {
|
||||
list=new ArrayList<>();
|
||||
list1.forEach(t -> this.list.add(t.getLocationCode()));
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getEpc() {
|
||||
return epc;
|
||||
}
|
||||
|
||||
public void setEpc(String epc) {
|
||||
this.epc = epc;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getBichCode() {
|
||||
return bichCode;
|
||||
}
|
||||
|
||||
public void setBichCode(String bichCode) {
|
||||
this.bichCode = bichCode;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getLocationCode() {
|
||||
return locationCode;
|
||||
}
|
||||
|
||||
public void setLocationCode(String locationCode) {
|
||||
this.locationCode = locationCode;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
public void setState(String state) {
|
||||
this.state = state;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public String getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(String time) {
|
||||
this.time = time;
|
||||
notifyChange();
|
||||
}
|
||||
}
|
@ -0,0 +1,118 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<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">
|
||||
|
||||
<data>
|
||||
<variable
|
||||
name="vm"
|
||||
type="com.example.beijing_daxing.vm.BFWm" />
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/bg1"
|
||||
android:orientation="vertical"
|
||||
tools:context=".BFActivity">
|
||||
|
||||
|
||||
<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="扫描RFID:" />
|
||||
|
||||
<TextView
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.epc}" />
|
||||
</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_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.pcode}" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_height="45dp">
|
||||
<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_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"
|
||||
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/info_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.remark}" />
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_margin="20dp"
|
||||
android:onClick="bf_submit"
|
||||
style="@style/button_style"
|
||||
android:text="标记报废"/>
|
||||
|
||||
</LinearLayout>
|
||||
</layout>
|
@ -0,0 +1,182 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<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">
|
||||
|
||||
<data>
|
||||
|
||||
<variable
|
||||
name="vm"
|
||||
type="com.example.beijing_daxing.vm.FpInVm" />
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/bg1"
|
||||
android:orientation="vertical"
|
||||
tools:context=".FpInActivity">
|
||||
|
||||
<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="扫描RFID:" />
|
||||
|
||||
<TextView
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.epc}" />
|
||||
</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_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.bichCode}" />
|
||||
</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_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_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_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_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="报废时间:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.time}" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:background="@color/white"
|
||||
android:layout_marginEnd="8dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:background="@color/bg1"
|
||||
android:text="选择库位:" />
|
||||
|
||||
<Spinner
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:textAlignment="center"
|
||||
android:entries="@{vm.list}"
|
||||
/>
|
||||
</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