货源详情默认选中指派车辆

This commit is contained in:
lijia 2024-12-06 09:45:12 +08:00
parent 7fdb48817f
commit 3b7a77c45b
2 changed files with 24 additions and 1 deletions

View File

@ -83,6 +83,8 @@ public class HuoYuanDelBean {
private String vehicleTypeName;
private int vehicleLength;
private String vehicleLengthName;
private String carNumber;
private String carId;
private String namedDrivers;
private String requirement;
private String totalFreight;
@ -97,6 +99,23 @@ public class HuoYuanDelBean {
private Object contactName;
private Object contactPhone;
public String getCarNumber() {
return carNumber == null ? "" : carNumber;
}
public void setCarNumber(String carNumber) {
this.carNumber = carNumber;
}
public String getCarId() {
return carId == null ? "" : carId;
}
public void setCarId(String carId) {
this.carId = carId;
}
public int getId() {
return id;
}

View File

@ -315,7 +315,11 @@ public class HuoYunDelActivity extends BaseAppCompatActivity {
});
//
ImageButton xuanze = v.findViewById(R.id.xuanze);
if (clb != null && clb.getData().size() == 1) {
if (hyd!=null&&hyd.getData()!=null&& !TextUtils.isEmpty(hyd.getData().getCarNumber())){
cid = hyd.getData().getCarId();
car.setText("选择车辆:" + hyd.getData().getCarNumber());
}else if (clb != null && clb.getData().size() == 1) {
cid = clb.getData().get(0).getCarId();
car.setText("选择车辆:" + clb.getData().get(0).getCarNumber());
}