intranet-queries/2015-01-21-Clientes_por_plazo.sql

35 lines
942 B
SQL

-- Sales per payment type year to year
-- For Board Meeting presentation
SELECT
YEAR(dv.fecha) AS Year,
COUNT(DISTINCT dv.id_cliente) AS Num_Customers,
IF(
fp.dias <= 5,
'cash',
'credit'
) AS Sale_conditions,
ROUND(
SUM(dvi.cantidad*i.peso*(IF(dvi.valor>0, 1, -1)))/1000, 2
) AS Weight_MT,
SUM(dvi.valor) AS Value
FROM
documento_ventas dv
JOIN documento_ventas_has_item dvi
USING ( id_documento,id_sucursal )
JOIN formapago_documento fpd
USING (id_documento, id_sucursal)
JOIN forma_pago fp
USING (id_formapago, id_sucursal)
JOIN item i
ON ( dvi.id_item = i.id_item
AND dvi.id_sucursal = i.id_sucursal )
WHERE
LEFT(dv.id_documento,2) RLIKE "F[^0-9MPBC]"
AND NOT (dv.id_cliente LIKE "999")
AND YEAR(dv.fecha) >= 2012
GROUP BY
Year, Sale_conditions