Ανάλυση στηλών αποθήκης
- Αγορές ποσότητα: Συνολική ποσότητα αγορών
- Ποσότητα έξοδος: Συνολική ποσότητα πωλήσεων
- Αγορές: Συνολική αξία αγορών προ ΦΠΑ
- Πωλήσεις: Συνολική αξία πωλήσεων προ ΦΠΑ
- Μικτό κέρδος%: (Τιμή πώλησης – Αξία αγοράς) * 100 / Τιμή πώλησης
- ΜΤ αγοράς: Μέση τιμή αγοράς
- ΜΤ πώλησης: Μέση τιμή πώλησης
- Περιθώριο κέρδους: Τιμή πώλησης – Αξία αγοράς
- Περιθώριο κέρδους%: (Τιμή πώλησης – Αξία αγοράς) * 100 / Τιμή αγοράς
Υπολογισμός μέσης τιμής
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
select sum( case when "eidhpar"."Xrevstiko" in (0, 5) then "grammes"."Posothta"*("grammes"."Timh" - (("grammes"."Timh" * "grammes"."Ekptvsh") / 100)) end) / sum( case when "eidhpar"."Xrevstiko" in (0, 5) then "grammes"."Posothta" end) as "mesh_a", sum( case when "eidhpar"."Xrevstiko" in (1, 6) then "grammes"."Posothta"*("grammes"."Timh" - (("grammes"."Timh" * "grammes"."Ekptvsh") / 100)) end) / sum( case when "eidhpar"."Xrevstiko" in (1, 6) then "grammes"."Posothta" end) as "mesh_p" , "grammes"."Eidos" from "grammes", "pvlhseis", "eidhpar" where "grammes"."Aapar" = "pvlhseis"."Aa" and "pvlhseis"."Parastatiko" = "eidhpar"."Aa" and "grammes"."Timh" <> 0 and "grammes"."Timh" is not null and "grammes"."Eidos" is not null and "grammes"."fpa_" is not null and "grammes"."KvdikosEidoys" is not null and "grammes"."PerigrafhEidoys" is not null and "eidhpar"."Emf_timvn" = 1 and "eidhpar"."Xrevstiko" in (0, 1, 5, 6) and "pvlhseis"."Hmeromhnia" <= '12/31/2021 23:59:59' group by "grammes"."Eidos" |