|
|
@@ -561,7 +561,8 @@
|
|
|
d.order_no as orderNo,
|
|
|
e.name as taskAllocatorName,
|
|
|
f.name as taskReceiverName,
|
|
|
- g.nickname as buyerName
|
|
|
+ g.nickname as buyerName,
|
|
|
+ h.contract_no as contractNo
|
|
|
from
|
|
|
contract_task a
|
|
|
left join business_project b on a.commodity_id = b.id
|
|
|
@@ -570,7 +571,8 @@
|
|
|
left join admin e on a.task_allocator = e.id
|
|
|
left join admin f on a.task_receiver = f.id
|
|
|
left join user g on d.uid = g.id
|
|
|
- where
|
|
|
+ left join t_order h on h.order_no=d.order_no
|
|
|
+ where
|
|
|
a.id = #{taskId,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
</mapper>
|