Commit 11548fbb authored by 陈前's avatar 陈前

临库

parent 7d5a2e3e
...@@ -34,7 +34,12 @@ public class OtherSelectAdapter extends BaseAdapter<Ossku, ItemOtherSelectBindin ...@@ -34,7 +34,12 @@ public class OtherSelectAdapter extends BaseAdapter<Ossku, ItemOtherSelectBindin
mViewBinding.setShopName(item.getShopName()); mViewBinding.setShopName(item.getShopName());
mViewBinding.setStock("库存:" + item.getSkuStock() + item.getSpuUnitName()); mViewBinding.setStock("库存:" + item.getSkuStock() + item.getSpuUnitName());
mViewBinding.setAddress(item.getCityProvName() + item.getCityName() + item.getCityCountyName() + item.getCityAddress()); mViewBinding.setAddress(item.getCityProvName() + item.getCityName() + item.getCityCountyName() + item.getCityAddress());
mViewBinding.setPhone(item.getContactMob() + ""); if (item.getContactTel() != null && item.getContactTel().length() != 0) {
mViewBinding.setPhone(item.getContactTel());
} else {
mViewBinding.setPhone(item.getContactMob() + "");
}
// mViewBinding.tvAddress.setText(item.getCityAddress()); // mViewBinding.tvAddress.setText(item.getCityAddress());
// mViewBinding.tvTel.setText(item.getContactTel()); // mViewBinding.tvTel.setText(item.getContactTel());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment