| | |
| | | |
| | | |
| | | <select id="selectPurchaseReport" resultType="com.ruoyi.purchase.dto.InvoicePurchaseReportDto"> |
| | | select A.*, |
| | | FORMAT(A.contract_amount-A.sale_tax_exclusive_total_price-A.purchase_amount+A.tax_exclusive_total_price,2) as balance_amount |
| | | from (select sl.customer_contract_no, |
| | | sl.id, |
| | | pl.id as pl_id, |
| | | SELECT |
| | | sl.sales_contract_no AS customerContractNo, |
| | | sl.customer_name, |
| | | sl.project_name, |
| | | sl.contract_amount, |
| | | pl.contract_amount as purchase_amount, |
| | | sum(slp.tax_exclusive_total_price) /count(slp.id) as sale_tax_exclusive_total_price, |
| | | sum(slp1.tax_exclusive_total_price) as tax_exclusive_total_price, |
| | | (sl.contract_amount - pl.contract_amount) as balance, |
| | | CONCAT(FORMAT((sl.contract_amount - pl.contract_amount) / sl.contract_amount * 100, 2), |
| | | '%') AS balance_ratio |
| | | from purchase_ledger pl |
| | | left join sales_ledger sl on pl.sales_ledger_id = sl.id |
| | | left join sales_ledger_product slp on slp.sales_ledger_id = sl.id and slp.type = 1 |
| | | left join sales_ledger_product slp1 on slp1.sales_ledger_id = pl.id and slp1.type = 2 |
| | | group by sl.customer_contract_no, sl.customer_name, sl.project_name, sl.contract_amount, pl.contract_amount,sl.id,pl.id |
| | | having sl.customer_contract_no is not null) A |
| | | sl.contract_amount AS contract_amount, |
| | | SUM( pl.contract_amount ) AS purchase_amount, |
| | | ( |
| | | sl.contract_amount - SUM( pl.contract_amount )) AS balance, |
| | | CONCAT( ROUND( ( sl.contract_amount - SUM( pl.contract_amount )) / sl.contract_amount * 100, 1 ), '%' ) AS balance_ratio |
| | | FROM |
| | | sales_ledger sl |
| | | INNER JOIN purchase_ledger pl ON sl.sales_contract_no = pl.sales_contract_no |
| | | <where> |
| | | <if test="c.customerName != null and c.customerName != ''"> |
| | | and sl.customer_name like concat('%',#{c.customerName},'%') |
| | | AND sl.customer_name LIKE CONCAT('%', #{c.customerName}, '%') |
| | | </if> |
| | | </where> |
| | | GROUP BY |
| | | sl.sales_contract_no, |
| | | sl.customer_name, |
| | | sl.contract_amount |
| | | ORDER BY |
| | | sl.sales_contract_no; |
| | | </select> |
| | | <select id="listVat" resultType="com.ruoyi.purchase.dto.VatDto"> |
| | | select * |
| | |
| | | LEFT JOIN invoice_registration_product pr ON pr.id = il.invoice_registration_product_id |
| | | WHERE il.invoice_no IS NOT NULL |
| | | AND invoice_type = '增专票' |
| | | AND DATE_FORMAT(il.invoice_date, '%Y-%m') IS NOT NULL -- 新增:过滤month为NULL的情 |
| | | GROUP BY DATE_FORMAT(il.invoice_date, '%Y-%m') |
| | | ) a1 |
| | | LEFT JOIN ( |
| | |
| | | LEFT JOIN invoice_registration_product pr ON pr.id = il.invoice_registration_product_id |
| | | WHERE il.invoice_no IS NOT NULL |
| | | AND invoice_type = '增专票' |
| | | AND DATE_FORMAT(il.invoice_date, '%Y-%m') IS NOT NULL -- 新增:过滤month为NULL的情 |
| | | GROUP BY DATE_FORMAT(il.invoice_date, '%Y-%m') |
| | | ) a1 ON a1.month = a2.month |
| | | WHERE a1.month IS NULL |
| | | ORDER BY month |
| | | )as a |
| | | <where> |
| | | a.month is not null |
| | | <if test="month != null"> |
| | | and a.month = #{month} |
| | | </if> |