修改发货信息
This commit is contained in:
parent
79c7ded08b
commit
5ef9f7fb9e
|
|
@ -115,4 +115,16 @@ public class OutPlanVo extends ParentVo {
|
|||
* 状态 0-暂存,1-提交
|
||||
*/
|
||||
private Integer editStatus;
|
||||
/**
|
||||
* 派车时间
|
||||
*/
|
||||
private String outTime;
|
||||
/**
|
||||
* 经办人
|
||||
*/
|
||||
private String manager;
|
||||
/**
|
||||
* 派车状态
|
||||
*/
|
||||
private String outStatus;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -227,9 +227,14 @@
|
|||
where spo.apply_id=#{id}
|
||||
</select>
|
||||
<select id="getOutApplyDetails" resultType="com.bonus.aqgqj.business.backstage.entity.OutPlanVo">
|
||||
select spa.code planCode,spa.id planId,pro.bdname proName
|
||||
from st_plan_apply spa
|
||||
left join tb_bid_project pro on pro.id=spa.project_id
|
||||
select spa.code planCode,spa.id planId,pro.bdname proName,spo.manager,spo.address,spo.out_time outTime, spo.remark,spo.apply_id,
|
||||
if(spo.apply_id is null ,0,1) outStatus
|
||||
from st_plan_apply spa
|
||||
left join tb_bid_project pro on pro.id=spa.project_id
|
||||
left join(
|
||||
SELECT spo.manager,spo.address,spo.out_time,spo.remark,spo.apply_id
|
||||
FROM st_plan_out spo
|
||||
)spo on spo.apply_id=spa.id
|
||||
where spa.id=#{id}
|
||||
</select>
|
||||
<select id="getOutApplyDetailsList" resultType="com.bonus.aqgqj.business.backstage.entity.OutPlanVoDetails">
|
||||
|
|
|
|||
Loading…
Reference in New Issue