|
@@ -117,11 +117,11 @@ open class WaybillDetailsVModel(application: Application) : BViewModel<BReposito
|
|
|
if (it.ok()) {
|
|
|
|
|
|
info.value = it.data()
|
|
|
- is_collect.value=it.data()!!.driver.is_collect
|
|
|
+ is_collect.value=it.data()?.driver?.is_collect
|
|
|
order_state = info.value!!.order.order_state
|
|
|
- if(info.value!!.is_baoxian==1&&info.value!!.info.is_insurance==1){
|
|
|
+ if(info.value?.is_baoxian==1&&info.value?.info?.is_insurance==1){
|
|
|
isInsureShow.value=true
|
|
|
- insureMoney.value=info.value!!.baoxian_money
|
|
|
+ insureMoney.value=info.value?.baoxian_money
|
|
|
}else{
|
|
|
isInsureShow.value=false
|
|
|
}
|
|
@@ -131,7 +131,7 @@ open class WaybillDetailsVModel(application: Application) : BViewModel<BReposito
|
|
|
20 -> tvTitle.value = "运输轨迹"
|
|
|
30 -> {
|
|
|
tvTitle.value = "去结算"
|
|
|
- number = info.value!!.order.t_nums
|
|
|
+ number = info.value?.order?.t_nums
|
|
|
modifyTime.value = info.value!!.order.sd_time
|
|
|
nopath.addAll(info.value!!.order.t_img)
|
|
|
|