| | |
| | | SUM(slp.tax_inclusive_total_price) AS purchaseAmount, |
| | | COUNT(DISTINCT slp.sales_ledger_id) AS purchaseTimes, |
| | | <!-- 平均单价 = 总采购金额/总采购数量,保留2位小数,避免除0 --> |
| | | ROUND(IF(SUM(slp.quantity) = 0, 0, SUM(slp.tax_inclusive_total_price) / SUM(slp.quantity)), 2) AS averagePrice, |
| | | ROUND(IF(SUM(slp.quantity) = 0, 0, SUM(slp.tax_inclusive_total_price) / SUM(slp.quantity)), 6) AS averagePrice, |
| | | <!-- 该产品大类下最后一个录入日期(取台账主表的entry_date) --> |
| | | MAX(sl.entry_date) AS entryDate, |
| | | COALESCE(NULLIF(SUM(t1.return_quantity), 0), 0) AS return_quantity, |
| | |
| | | JOIN product pr ON slp.product_id = pr.id |
| | | WHERE |
| | | slp.type = 2 |
| | | AND pr.parent_id = ( SELECT id FROM product WHERE product_name = '原材料' ) |
| | | AND pr.parent_id = ( SELECT id FROM product WHERE product_name = '原料' ) |
| | | GROUP BY |
| | | pr.id, |
| | | pr.product_name |
| | |
| | | |
| | | <select id="selectProductCountByTypeAndDate" resultType="int"> |
| | | SELECT IFNULL(COUNT(*), 0) |
| | | FROM sales_ledger_product |
| | | FROM sales_ledger_product slp |
| | | LEFT JOIN sales_ledger sl ON sl.id = slp.sales_ledger_id |
| | | LEFT JOIN purchase_ledger pl ON pl.id = slp.sales_ledger_id |
| | | WHERE type = #{type} |
| | | <if test="startDate != null"> |
| | | AND register_date >= #{startDate} |
| | | </if> |
| | | <if test="endDate != null"> |
| | | AND register_date <= #{endDate} |
| | | </if> |
| | | |
| | | <choose> |
| | | <when test="type == 1"> |
| | | <if test="startDate != null"> |
| | | AND sl.entry_date >= #{startDate} |
| | | </if> |
| | | <if test="endDate != null"> |
| | | AND sl.entry_date <= #{endDate} |
| | | </if> |
| | | </when> |
| | | |
| | | <when test="type == 2"> |
| | | <if test="startDate != null"> |
| | | AND pl.entry_date >= #{startDate} |
| | | </if> |
| | | <if test="endDate != null"> |
| | | AND pl.entry_date <= #{endDate} |
| | | </if> |
| | | </when> |
| | | </choose> |
| | | </select> |
| | | |
| | | <select id="selectRawMaterialExpense" resultType="java.math.BigDecimal"> |
| | | WITH RECURSIVE product_tree AS (SELECT id |
| | | FROM product |
| | | WHERE product_name = '原材料' |
| | | WHERE product_name = '原料' |
| | | |
| | | UNION ALL |
| | | |