| | |
| | | FROM |
| | | sales_ledger_production_accounting t4 |
| | | LEFT JOIN sales_ledger T1 ON T1.id = t4.sales_ledger_id |
| | | left join sales_ledger_product t3 on t4.sales_ledger_product_id = t3.id |
| | | left join sales_ledger_product t3 on t4.sales_ledger_product_id = t3.id and slp.type = 1 |
| | | <where> |
| | | t3.type = 1 |
| | | <if test="salesLedgerDto.schedulingUserName != null and salesLedgerDto.schedulingUserName != '' "> |
| | |
| | | GROUP BY DATE(ppout.create_time) |
| | | ORDER BY DATE(ppout.create_time); |
| | | </select> |
| | | <select id="getByUserId" resultType="com.ruoyi.production.dto.UserAccountDto"> |
| | | select |
| | | slpa.scheduling_user_id as user_id, |
| | | pp.type, |
| | | sum(case when pp.type = 0 then slpa.work_hours else 0 end) as account, |
| | | sum(case when pp.type = 1 then slpa.work_hours else 0 end) as accountBalance |
| | | from sales_ledger_production_accounting slpa |
| | | left join product_process pp on pp.name = slpa.process |
| | | where slpa.scheduling_user_id = #{ew.userId} |
| | | and slpa.scheduling_date like concat(#{ew.date}, '%') |
| | | group by slpa.scheduling_user_id |
| | | |
| | | </select> |
| | | |
| | | |
| | | </mapper> |