-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheuropharma.sql
1347 lines (906 loc) · 37.5 KB
/
europharma.sql
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
--
-- Name: tablefunc; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS tablefunc WITH SCHEMA public;
--
-- Name: EXTENSION tablefunc; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION tablefunc IS 'functions that manipulate whole tables, including crosstab';
SET search_path = public, pg_catalog;
--
-- Name: calculateprovvigione(character varying, bigint, bigint); Type: FUNCTION; Schema: public; Owner: myuser
--
CREATE FUNCTION calculateprovvigione(myannomese character varying, myidagenteprodotto bigint, myidagente bigint) RETURNS real
LANGUAGE plpgsql
AS $$DECLARE
myprovvigione real;
mynumpezzi integer;
mycodprodotti bigint[];
r RECORD;
sql text := '';
BEGIN
SELECT provvigione INTO myprovvigione FROM "agente-prodotto" ap WHERE ap.id = myidagenteprodotto;
sql = 'SELECT * FROM "agente-prodotto-target" WHERE idagprodotti @> ARRAY[' || CAST (myidagenteprodotto as text) || ']::bigint[]';
FOR r IN EXECUTE(sql) LOOP
SELECT sum(numeropezzi) INTO mynumpezzi FROM "monthly-results-agente-prodotto" WHERE idagente = myidagente AND idagenteprodotto = ANY(r.idagprodotti) AND annomese = myannomese GROUP BY idagente;
SELECT array_agg(codprodotto) INTO mycodprodotti FROM "agente-prodotto" ap WHERE ap.id = ANY(r.idagprodotti);
mynumpezzi := mynumpezzi + sumimsfarmacie(myannomese, mycodprodotti, myidagente);
IF (mynumpezzi >= r.target) THEN
myprovvigione := r.percentuale;
END IF;
END LOOP;
RETURN myprovvigione;
END$$;
ALTER FUNCTION public.calculateprovvigione(myannomese character varying, myidagenteprodotto bigint, myidagente bigint) OWNER TO myuser;
--
-- Name: deletetarget(); Type: FUNCTION; Schema: public; Owner: myuser
--
CREATE FUNCTION deletetarget() RETURNS trigger
LANGUAGE plpgsql
AS $$BEGIN
DELETE FROM "agente-prodotto-target" as apt WHERE apt.idagprodotti @> ARRAY[OLD.id]::bigint[];
RETURN NULL;
END$$;
ALTER FUNCTION public.deletetarget() OWNER TO myuser;
--
-- Name: insertagenteprodottoarea(integer, integer, integer, character varying); Type: FUNCTION; Schema: public; Owner: myuser
--
CREATE FUNCTION insertagenteprodottoarea(newidagenteprodotto integer, newidagentearea integer, mycodprodotto integer, myarea character varying) RETURNS void
LANGUAGE plpgsql
AS $$DECLARE
num integer;
BEGIN
SELECT count(*) INTO num FROM "agente-prodotto-area" AS apa, "agente-aree" AS aa, "agente-prodotto" as ap
WHERE apa.idagenteprodotto = ap.id AND apa.idagentearea = aa.id AND aa.area = myarea
AND ap.codprodotto = mycodprodotto;
IF num > 0 THEN
RAISE EXCEPTION 'Il prodotto è assegnato ad un altro agente per la stessa area';
END IF;
INSERT INTO "agente-prodotto-area"(idagentearea, idagenteprodotto) VALUES (newidagentearea, newidagenteprodotto);
END$$;
ALTER FUNCTION public.insertagenteprodottoarea(newidagenteprodotto integer, newidagentearea integer, mycodprodotto integer, myarea character varying) OWNER TO myuser;
--
-- Name: insertarget(text, integer, real); Type: FUNCTION; Schema: public; Owner: myuser
--
CREATE FUNCTION insertarget(idagprod text, newtarget integer, newpercentuale real) RETURNS void
LANGUAGE plpgsql
AS $$DECLARE
searchsql text := '';
insertsql text := '';
arrayidagprod text := '{' || idagprod || '}';
r RECORD;
BEGIN
searchsql := 'SELECT * FROM "agente-prodotto-target" WHERE idagprodotti @> ARRAY[' || idagprod || ']::bigint[] OR idagprodotti <@ ARRAY[' || idagprod || ']::bigint[]';
FOR r IN EXECUTE(searchsql) LOOP
IF NOT (arrayidagprod::bigint[] @> r.idagprodotti AND arrayidagprod::bigint[] <@ r.idagprodotti) THEN
RAISE EXCEPTION 'Non puoi inserire più di un target somma se i prodotti sono diversi tra loro';
END IF;
IF newtarget >= r.target AND newpercentuale <= r.percentuale THEN
RAISE EXCEPTION 'Il target è maggiore o uguale, ma la percentuale è minore o uguale';
ELSEIF newtarget <= r.target AND newpercentuale >= r.percentuale THEN
RAISE EXCEPTION 'Il target è minore o uguale, ma la percentuale è maggiore o uguale';
END IF;
END LOOP;
insertsql := 'INSERT INTO "public"."agente-prodotto-target"(target,percentuale,idagprodotti) VALUES (' || CAST(newtarget AS TEXT) ||', ' || CAST(newpercentuale AS TEXT) || ', ARRAY[' || idagprod || ']::bigint[])';
EXECUTE(insertsql);
END$$;
ALTER FUNCTION public.insertarget(idagprod text, newtarget integer, newpercentuale real) OWNER TO myuser;
--
-- Name: pivotcode(character varying, character varying, character varying, character varying, character varying); Type: FUNCTION; Schema: public; Owner: myuser
--
CREATE FUNCTION pivotcode(tablename character varying, rowc character varying, colc character varying, cellc character varying, celldatatype character varying) RETURNS character varying
LANGUAGE plpgsql
AS $$declare
dynsql1 varchar;
dynsql2 varchar;
columnlist varchar;
begin
-- 1. retrieve list of column names.
dynsql1 = 'select string_agg(distinct ''_''||'||colc||'||'' '||celldatatype||''','','' order by ''_''||'||colc||'||'' '||celldatatype||''') from '||tablename||';';
execute dynsql1 into columnlist;
-- 2. set up the crosstab query
dynsql2 = 'select * from crosstab (
''select '||rowc||','||colc||','||cellc||' from '||tablename||' group by 1,2 order by 1,2'',
''select distinct '||colc||' from '||tablename||' order by 1''
)
as newtable (
'||rowc||' varchar,'||columnlist||'
);';
return dynsql2;
end
$$;
ALTER FUNCTION public.pivotcode(tablename character varying, rowc character varying, colc character varying, cellc character varying, celldatatype character varying) OWNER TO myuser;
--
-- Name: pivotcode(character varying, character varying, character varying, character varying, character varying, character varying, character varying); Type: FUNCTION; Schema: public; Owner: myuser
--
CREATE FUNCTION pivotcode(tablename character varying, rowc character varying, colc character varying, cellc character varying, celldatatype character varying, myidagente character varying, myannomese character varying) RETURNS character varying
LANGUAGE plpgsql
AS $$declare
dynsql1 varchar;
dynsql2 varchar;
columnlist varchar;
begin
-- 1. retrieve list of column names.
dynsql1 = 'select string_agg(distinct ''_''|| replace('||colc||', '' '', '''') ||'' '||celldatatype||''','','' order by ''_''|| replace('||colc||', '' '', '''')||'' '||celldatatype||''') from '||tablename||' WHERE idagente = '|| myidagente ||' AND annomese = '||myannomese||'::varchar ;';
execute dynsql1 into columnlist;
-- 2. set up the crosstab query
dynsql2 = 'select * from crosstab (
''select '||rowc||', '||colc||', '||cellc||' from '||tablename||' where annomese = '|| myannomese ||'::varchar and idagente = '|| myidagente ||'::bigint group by 1,2 order by 1,2'',
''select distinct '||colc||' from '||tablename||' WHERE idagente = '|| myidagente ||' AND annomese = '||myannomese||'::varchar order by 1''
)
as newtable (
'||rowc||' varchar,'||replace(replace(replace(columnlist, '-', '_'), '.', '_'), '%', '') ||'
);';
return dynsql2;
end
$$;
ALTER FUNCTION public.pivotcode(tablename character varying, rowc character varying, colc character varying, cellc character varying, celldatatype character varying, myidagente character varying, myannomese character varying) OWNER TO myuser;
--
-- Name: sumimsfarmacie(character varying, bigint[], bigint); Type: FUNCTION; Schema: public; Owner: myuser
--
CREATE FUNCTION sumimsfarmacie(myannomese character varying, myidprodotto bigint[], myidagente bigint) RETURNS integer
LANGUAGE plpgsql
AS $$DECLARE
farma integer;
BEGIN
SELECT sum(numeropezzi) INTO farma FROM farmacie WHERE idprodotto = ANY(myidprodotto) AND idagente = myidagente AND annomese = myannomese GROUP BY idagente;
IF (farma IS NULL) THEN
farma := 0;
END IF;
RETURN farma;
END$$;
ALTER FUNCTION public.sumimsfarmacie(myannomese character varying, myidprodotto bigint[], myidagente bigint) OWNER TO myuser;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: agente-aree; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE "agente-aree" (
area character varying(5) NOT NULL,
id integer NOT NULL,
idagente integer NOT NULL
);
ALTER TABLE "agente-aree" OWNER TO myuser;
--
-- Name: agente-aree_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE "agente-aree_id_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE "agente-aree_id_seq" OWNER TO myuser;
--
-- Name: agente-aree_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE "agente-aree_id_seq" OWNED BY "agente-aree".id;
--
-- Name: agente-prodotto; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE "agente-prodotto" (
id integer NOT NULL,
codprodotto integer NOT NULL,
provvigione real,
idagente integer NOT NULL
);
ALTER TABLE "agente-prodotto" OWNER TO myuser;
--
-- Name: agente-prodotto-area; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE "agente-prodotto-area" (
idagentearea integer NOT NULL,
idagenteprodotto integer NOT NULL,
id integer NOT NULL
);
ALTER TABLE "agente-prodotto-area" OWNER TO myuser;
--
-- Name: agente-prodotto-area_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE "agente-prodotto-area_id_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE "agente-prodotto-area_id_seq" OWNER TO myuser;
--
-- Name: agente-prodotto-area_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE "agente-prodotto-area_id_seq" OWNED BY "agente-prodotto-area".id;
--
-- Name: agente-prodotto-target; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE "agente-prodotto-target" (
target integer NOT NULL,
percentuale real NOT NULL,
idagprodotti bigint[],
id integer NOT NULL
);
ALTER TABLE "agente-prodotto-target" OWNER TO myuser;
--
-- Name: agente-prodotto-target_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE "agente-prodotto-target_id_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE "agente-prodotto-target_id_seq" OWNER TO myuser;
--
-- Name: agente-prodotto-target_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE "agente-prodotto-target_id_seq" OWNED BY "agente-prodotto-target".id;
--
-- Name: agente-prodotto_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE "agente-prodotto_id_seq"
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE "agente-prodotto_id_seq" OWNER TO myuser;
--
-- Name: agente-prodotto_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE "agente-prodotto_id_seq" OWNED BY "agente-prodotto".id;
--
-- Name: agenti; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE agenti (
nome text NOT NULL,
cognome text NOT NULL,
codicefiscale character varying(17) NOT NULL,
partitaiva character varying(11),
email text,
iva real DEFAULT 0,
enasarco real DEFAULT 0,
ritacconto real DEFAULT 0,
contributoinps real DEFAULT 0,
rivalsainps real DEFAULT 0,
id integer NOT NULL,
indirizzo text,
telefono character varying(30),
tipocontratto text,
datainiziocontratto date,
datafinecontratto date,
dataperiodoprova date,
tipoattivita text,
note text,
citta text,
cap character varying(5),
provincia character varying(2),
attivo boolean DEFAULT true,
CONSTRAINT rivalsa_contributo CHECK (((((rivalsainps > (0)::double precision) AND (contributoinps = (0)::double precision)) OR ((rivalsainps = (0)::double precision) AND (contributoinps > (0)::double precision))) OR ((rivalsainps = (0)::double precision) AND (contributoinps = (0)::double precision))))
);
ALTER TABLE agenti OWNER TO myuser;
--
-- Name: agenti_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE agenti_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE agenti_id_seq OWNER TO myuser;
--
-- Name: agenti_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE agenti_id_seq OWNED BY agenti.id;
--
-- Name: agenti_provincia_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE agenti_provincia_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE agenti_provincia_seq OWNER TO myuser;
--
-- Name: agenti_provincia_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE agenti_provincia_seq OWNED BY agenti.provincia;
--
-- Name: aree; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE aree (
codice character varying(5) NOT NULL,
nome text NOT NULL
);
ALTER TABLE aree OWNER TO myuser;
--
-- Name: ims; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE ims (
annomese character varying(6),
idprodotto bigint,
numeropezzi bigint,
idarea character varying,
id integer NOT NULL
);
ALTER TABLE ims OWNER TO myuser;
--
-- Name: prodotti; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE prodotti (
id integer NOT NULL,
nome text NOT NULL,
sconto real,
prezzo real,
provvigionedefault real,
target1 integer DEFAULT 0,
percentuale1 real DEFAULT 0,
target2 integer DEFAULT 0,
percentuale2 real DEFAULT 0,
target3 integer DEFAULT 0,
percentuale3 real DEFAULT 0,
percentualecapo real DEFAULT 0
);
ALTER TABLE prodotti OWNER TO myuser;
--
-- Name: prodotti-capiarea-area; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "prodotti-capiarea-area" AS
SELECT aga.idagente,
aux.codprodotto AS idprodotto,
aux.area
FROM ( SELECT ap.codprodotto,
aa.area
FROM "agente-prodotto-area" apa,
"agente-aree" aa,
"agente-prodotto" ap
WHERE ((apa.idagenteprodotto = ap.id) AND (apa.idagentearea = aa.id))) aux,
"agente-aree" aga,
agenti
WHERE ((((aux.area)::text = (aga.area)::text) AND (aga.idagente = agenti.id)) AND (agenti.tipoattivita = 'CapoArea'::text))
GROUP BY aga.idagente, aux.codprodotto, aux.area;
ALTER TABLE "prodotti-capiarea-area" OWNER TO myuser;
--
-- Name: prodotti-capiarea-area-numpezzi; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "prodotti-capiarea-area-numpezzi" AS
SELECT ims.annomese,
ims.numeropezzi,
pca.idagente,
pca.idprodotto,
pca.area
FROM "prodotti-capiarea-area" pca,
ims
WHERE (((pca.area)::text = (ims.idarea)::text) AND (pca.idprodotto = ims.idprodotto));
ALTER TABLE "prodotti-capiarea-area-numpezzi" OWNER TO myuser;
--
-- Name: prodotti-capiarea-numpezzi-nettofatturato-percentuale; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "prodotti-capiarea-numpezzi-nettofatturato-percentuale" AS
SELECT "prodotti-capiarea-area-numpezzi".annomese,
"prodotti-capiarea-area-numpezzi".numeropezzi,
"prodotti-capiarea-area-numpezzi".idagente,
"prodotti-capiarea-area-numpezzi".idprodotto,
"prodotti-capiarea-area-numpezzi".area,
(("prodotti-capiarea-area-numpezzi".numeropezzi)::double precision * (prodotti.prezzo - ((prodotti.prezzo * prodotti.sconto) / (100)::double precision))) AS nettofatturato,
(prodotti.percentualecapo / (100)::double precision) AS percentuale
FROM "prodotti-capiarea-area-numpezzi",
prodotti
WHERE ("prodotti-capiarea-area-numpezzi".idprodotto = prodotti.id);
ALTER TABLE "prodotti-capiarea-numpezzi-nettofatturato-percentuale" OWNER TO myuser;
--
-- Name: prodotti-capiarea-spettanza; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "prodotti-capiarea-spettanza" AS
SELECT "prodotti-capiarea-numpezzi-nettofatturato-percentuale".annomese,
"prodotti-capiarea-numpezzi-nettofatturato-percentuale".idagente,
"prodotti-capiarea-numpezzi-nettofatturato-percentuale".idprodotto,
sum(("prodotti-capiarea-numpezzi-nettofatturato-percentuale".nettofatturato * "prodotti-capiarea-numpezzi-nettofatturato-percentuale".percentuale)) AS spettanza
FROM "prodotti-capiarea-numpezzi-nettofatturato-percentuale"
GROUP BY "prodotti-capiarea-numpezzi-nettofatturato-percentuale".annomese, "prodotti-capiarea-numpezzi-nettofatturato-percentuale".idagente, "prodotti-capiarea-numpezzi-nettofatturato-percentuale".idprodotto;
ALTER TABLE "prodotti-capiarea-spettanza" OWNER TO myuser;
--
-- Name: capiarea-spettanza; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "capiarea-spettanza" AS
SELECT "prodotti-capiarea-spettanza".annomese,
"prodotti-capiarea-spettanza".idagente,
sum("prodotti-capiarea-spettanza".spettanza) AS spettanza
FROM "prodotti-capiarea-spettanza"
GROUP BY "prodotti-capiarea-spettanza".annomese, "prodotti-capiarea-spettanza".idagente;
ALTER TABLE "capiarea-spettanza" OWNER TO myuser;
--
-- Name: farmacie; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE farmacie (
annomese character varying(6),
idprodotto bigint,
numeropezzi integer,
idagente bigint,
id integer NOT NULL,
farmacia text,
numerofattura integer,
liquidato character varying(6)
);
ALTER TABLE farmacie OWNER TO myuser;
--
-- Name: storico; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE storico (
idagente bigint,
annomese character varying(6),
codarea character varying(5),
numeropezzi integer,
provvigione real,
prezzonetto real,
idprodotto bigint
);
ALTER TABLE storico OWNER TO myuser;
--
-- Name: compensi-farmacie; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "compensi-farmacie" AS
WITH myquery AS (
SELECT storico.idagente,
storico.idprodotto,
storico.annomese,
storico.provvigione,
storico.prezzonetto
FROM storico
GROUP BY storico.idagente, storico.idprodotto, storico.annomese, storico.provvigione, storico.prezzonetto
)
SELECT f.annomese,
f.idprodotto,
f.numeropezzi,
f.idagente,
f.farmacia,
f.numerofattura,
f.id,
f.liquidato,
COALESCE(myquery.provvigione, prodotti.provvigionedefault) AS provvigione,
(COALESCE((myquery.prezzonetto)::double precision, (prodotti.prezzo - ((prodotti.prezzo * prodotti.sconto) / (100)::double precision))))::real AS prezzonetto
FROM prodotti,
(farmacie f
LEFT JOIN myquery ON (((((f.annomese)::text = (myquery.annomese)::text) AND (f.idprodotto = myquery.idprodotto)) AND (f.idagente = myquery.idagente))))
WHERE (prodotti.id = f.idprodotto);
ALTER TABLE "compensi-farmacie" OWNER TO myuser;
--
-- Name: enasarco; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE enasarco (
massimale real,
minimale real,
id integer NOT NULL
);
ALTER TABLE enasarco OWNER TO myuser;
--
-- Name: farmacie_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE farmacie_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE farmacie_id_seq OWNER TO myuser;
--
-- Name: farmacie_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE farmacie_id_seq OWNED BY farmacie.id;
--
-- Name: ims_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE ims_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE ims_id_seq OWNER TO myuser;
--
-- Name: ims_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE ims_id_seq OWNED BY ims.id;
--
-- Name: monthly-results-agente-prodotto-microarea; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "monthly-results-agente-prodotto-microarea" AS
SELECT ims.annomese,
aa.idagente,
aree.codice,
aree.nome AS area,
ap.codprodotto,
ims.numeropezzi,
agenti.nome,
agenti.cognome,
prodotti.nome AS prodotto
FROM "agente-aree" aa,
"agente-prodotto" ap,
"agente-prodotto-area" apa,
ims,
agenti,
prodotti,
aree
WHERE ((((((((((aa.area)::text = (ims.idarea)::text) AND (ims.idprodotto = ap.codprodotto)) AND (ap.id = apa.idagenteprodotto)) AND (aa.id = apa.idagentearea)) AND (aa.idagente = ap.idagente)) AND (aa.idagente = agenti.id)) AND (agenti.tipoattivita <> 'CapoArea'::text)) AND (ims.idprodotto = prodotti.id)) AND ((ims.idarea)::text = (aree.codice)::text));
ALTER TABLE "monthly-results-agente-prodotto-microarea" OWNER TO myuser;
--
-- Name: monthly-results-agente-prodotto-area; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "monthly-results-agente-prodotto-area" AS
SELECT "monthly-results-agente-prodotto-microarea".annomese,
"monthly-results-agente-prodotto-microarea".idagente,
"monthly-results-agente-prodotto-microarea".area,
"monthly-results-agente-prodotto-microarea".codprodotto,
sum("monthly-results-agente-prodotto-microarea".numeropezzi) AS numeropezzi,
"monthly-results-agente-prodotto-microarea".nome,
"monthly-results-agente-prodotto-microarea".cognome,
"monthly-results-agente-prodotto-microarea".prodotto
FROM "monthly-results-agente-prodotto-microarea"
GROUP BY "monthly-results-agente-prodotto-microarea".area, "monthly-results-agente-prodotto-microarea".annomese, "monthly-results-agente-prodotto-microarea".codprodotto, "monthly-results-agente-prodotto-microarea".idagente, "monthly-results-agente-prodotto-microarea".nome, "monthly-results-agente-prodotto-microarea".cognome, "monthly-results-agente-prodotto-microarea".prodotto;
ALTER TABLE "monthly-results-agente-prodotto-area" OWNER TO myuser;
--
-- Name: monthly-results-agente-prodotto; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "monthly-results-agente-prodotto" AS
SELECT "monthly-results-agente-prodotto-area".annomese,
"monthly-results-agente-prodotto-area".idagente,
"monthly-results-agente-prodotto-area".codprodotto,
sum("monthly-results-agente-prodotto-area".numeropezzi) AS numeropezzi,
"monthly-results-agente-prodotto-area".nome,
"monthly-results-agente-prodotto-area".cognome,
"monthly-results-agente-prodotto-area".prodotto,
"agente-prodotto".id AS idagenteprodotto
FROM "monthly-results-agente-prodotto-area",
"agente-prodotto"
WHERE (("monthly-results-agente-prodotto-area".codprodotto = "agente-prodotto".codprodotto) AND ("monthly-results-agente-prodotto-area".idagente = "agente-prodotto".idagente))
GROUP BY "monthly-results-agente-prodotto-area".codprodotto, "monthly-results-agente-prodotto-area".annomese, "monthly-results-agente-prodotto-area".idagente, "monthly-results-agente-prodotto-area".nome, "monthly-results-agente-prodotto-area".cognome, "monthly-results-agente-prodotto-area".prodotto, "agente-prodotto".id;
ALTER TABLE "monthly-results-agente-prodotto" OWNER TO myuser;
--
-- Name: monthly-results-agente-prodotto-provvigione; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "monthly-results-agente-prodotto-provvigione" AS
SELECT "monthly-results-agente-prodotto".annomese,
"monthly-results-agente-prodotto".idagente,
"monthly-results-agente-prodotto".codprodotto,
"monthly-results-agente-prodotto".nome,
"monthly-results-agente-prodotto".cognome,
"monthly-results-agente-prodotto".prodotto,
calculateprovvigione("monthly-results-agente-prodotto".annomese, ("monthly-results-agente-prodotto".idagenteprodotto)::bigint, ("monthly-results-agente-prodotto".idagente)::bigint) AS provvigione,
"monthly-results-agente-prodotto".numeropezzi
FROM "monthly-results-agente-prodotto",
prodotti
WHERE (prodotti.id = "monthly-results-agente-prodotto".codprodotto);
ALTER TABLE "monthly-results-agente-prodotto-provvigione" OWNER TO myuser;
--
-- Name: monthly-results-agente-prodotto-importolordo; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "monthly-results-agente-prodotto-importolordo" AS
SELECT "monthly-results-agente-prodotto-provvigione".annomese,
"monthly-results-agente-prodotto-provvigione".idagente,
"monthly-results-agente-prodotto-provvigione".codprodotto,
"monthly-results-agente-prodotto-provvigione".nome,
"monthly-results-agente-prodotto-provvigione".cognome,
"monthly-results-agente-prodotto-provvigione".prodotto,
(((prodotti.prezzo - ((prodotti.prezzo * prodotti.sconto) / (100)::double precision)) * ("monthly-results-agente-prodotto-provvigione".provvigione / (100)::double precision)) * ("monthly-results-agente-prodotto-provvigione".numeropezzi)::double precision) AS importolordo
FROM "monthly-results-agente-prodotto-provvigione",
prodotti
WHERE (prodotti.id = "monthly-results-agente-prodotto-provvigione".codprodotto);
ALTER TABLE "monthly-results-agente-prodotto-importolordo" OWNER TO myuser;
--
-- Name: monthly-results-agente-importolordo; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW "monthly-results-agente-importolordo" AS
SELECT "monthly-results-agente-prodotto-importolordo".annomese,
"monthly-results-agente-prodotto-importolordo".idagente,
"monthly-results-agente-prodotto-importolordo".nome,
"monthly-results-agente-prodotto-importolordo".cognome,
round((sum("monthly-results-agente-prodotto-importolordo".importolordo))::numeric, 2) AS importolordo
FROM "monthly-results-agente-prodotto-importolordo"
GROUP BY "monthly-results-agente-prodotto-importolordo".annomese, "monthly-results-agente-prodotto-importolordo".idagente, "monthly-results-agente-prodotto-importolordo".nome, "monthly-results-agente-prodotto-importolordo".cognome;
ALTER TABLE "monthly-results-agente-importolordo" OWNER TO myuser;
--
-- Name: prodotti_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
--
CREATE SEQUENCE prodotti_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE prodotti_id_seq OWNER TO myuser;
--
-- Name: prodotti_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
--
ALTER SEQUENCE prodotti_id_seq OWNED BY prodotti.id;
--
-- Name: storico-capiarea; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE "storico-capiarea" (
idagente bigint,
annomese character varying(6),
codarea character varying(5),
numeropezzi integer,
provvigione real,
prezzonetto real,
idprodotto bigint NOT NULL
);
ALTER TABLE "storico-capiarea" OWNER TO myuser;
--
-- Name: storico-capiarea-farmacie; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE "storico-capiarea-farmacie" (
annomese character varying(6),
idagente bigint,
numerofattura integer,
annomesefattura character varying(6),
percentuale real,
idprodotto bigint,
prezzonetto real
);
ALTER TABLE "storico-capiarea-farmacie" OWNER TO myuser;
--
-- Name: storicoftlibere; Type: TABLE; Schema: public; Owner: myuser; Tablespace:
--
CREATE TABLE storicoftlibere (
idagente bigint,
annomese character varying(6),
imponibile real
);
ALTER TABLE storicoftlibere OWNER TO myuser;
--
-- Name: vista_crosstab; Type: VIEW; Schema: public; Owner: myuser
--
CREATE VIEW vista_crosstab AS
SELECT prodotti.nome,
(aree.nome || "substring"((aree.codice)::text, 4, 2)) AS microarea,
storico.numeropezzi,
storico.idagente,
storico.annomese
FROM storico,
aree,
prodotti
WHERE ((storico.idprodotto = prodotti.id) AND ((storico.codarea)::text = (aree.codice)::text))
ORDER BY prodotti.nome, aree.nome;
ALTER TABLE vista_crosstab OWNER TO myuser;
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: myuser
--
ALTER TABLE ONLY "agente-aree" ALTER COLUMN id SET DEFAULT nextval('"agente-aree_id_seq"'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: myuser
--
ALTER TABLE ONLY "agente-prodotto" ALTER COLUMN id SET DEFAULT nextval('"agente-prodotto_id_seq"'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: myuser
--