| | |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.ruoyi.production.mapper.SalesLedgerProductionAccountingMapper"> |
| | | |
| | | <select id="listPage" resultType="com.ruoyi.production.dto.SalesLedgerProductionAccountingDto"> |
| | | <select id="listPage" resultType="com.ruoyi.production2.dto.SalesLedgerProductionAccountingDto"> |
| | | SELECT |
| | | t4.id, |
| | | t4.finished_num * t4.work_hours as wages, |
| | |
| | | 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 != '' "> |
| | |
| | | order by t4.scheduling_date desc |
| | | </select> |
| | | <select id="pageProductionAccounting" |
| | | resultType="com.ruoyi.production.dto.SalesLedgerProductionAccountingDto"> |
| | | resultType="com.ruoyi.production2.dto.SalesLedgerProductionAccountingDto"> |
| | | SELECT |
| | | slpa.scheduling_user_id, |
| | | slpa.scheduling_user_name, |
| | |
| | | </if> |
| | | |
| | | </where> |
| | | GROUP BY slpa.scheduling_user_name |
| | | |
| | | GROUP BY slpa.scheduling_user_id, slpa.scheduling_user_name |
| | | </select> |
| | | |
| | | <select id="selectDailyWagesStats" resultType="java.util.Map"> |
| | |
| | | GROUP BY DATE(ppout.create_time) |
| | | ORDER BY DATE(ppout.create_time); |
| | | </select> |
| | | <select id="getByUserId" resultType="com.ruoyi.production2.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> |