Add too many files
This commit is contained in:
parent
d5ce3c0cc3
commit
d0d90f1ed0
5 changed files with 18899 additions and 0 deletions
9345
contrib/mono-dossier/mono-belge.sql
Normal file
9345
contrib/mono-dossier/mono-belge.sql
Normal file
File diff suppressed because it is too large
Load diff
8976
contrib/mono-dossier/mono-france.sql
Normal file
8976
contrib/mono-dossier/mono-france.sql
Normal file
File diff suppressed because it is too large
Load diff
538
contrib/mono-dossier/mono.sql~
Normal file
538
contrib/mono-dossier/mono.sql~
Normal file
|
|
@ -0,0 +1,538 @@
|
|||
--
|
||||
-- PostgreSQL database dump
|
||||
--
|
||||
|
||||
SET statement_timeout = 0;
|
||||
SET client_encoding = 'UTF8';
|
||||
SET standard_conforming_strings = off;
|
||||
SET check_function_bodies = false;
|
||||
SET client_min_messages = warning;
|
||||
SET escape_string_warning = off;
|
||||
|
||||
--
|
||||
-- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: -
|
||||
--
|
||||
|
||||
SET search_path = public, pg_catalog;
|
||||
|
||||
--
|
||||
-- Name: limit_user(); Type: FUNCTION; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE FUNCTION limit_user() RETURNS trigger
|
||||
LANGUAGE plpgsql
|
||||
AS $$
|
||||
|
||||
begin
|
||||
NEW.ac_user := substring(NEW.ac_user from 1 for 80);
|
||||
return NEW;
|
||||
end; $$;
|
||||
|
||||
|
||||
SET default_tablespace = '';
|
||||
|
||||
SET default_with_oids = false;
|
||||
|
||||
--
|
||||
-- Name: ac_dossier; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE ac_dossier (
|
||||
dos_id integer DEFAULT nextval(('dossier_id'::text)::regclass) NOT NULL,
|
||||
dos_name text NOT NULL,
|
||||
dos_description text,
|
||||
dos_jnt_user integer DEFAULT 0
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: ac_users; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE ac_users (
|
||||
use_id integer DEFAULT nextval(('users_id'::text)::regclass) NOT NULL,
|
||||
use_first_name text,
|
||||
use_name text,
|
||||
use_login text NOT NULL,
|
||||
use_active integer DEFAULT 0,
|
||||
use_pass text,
|
||||
use_admin integer DEFAULT 0,
|
||||
CONSTRAINT ac_users_use_active_check CHECK (((use_active = 0) OR (use_active = 1)))
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: audit_connect; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE audit_connect (
|
||||
ac_id integer NOT NULL,
|
||||
ac_user text,
|
||||
ac_date timestamp without time zone DEFAULT now(),
|
||||
ac_ip text,
|
||||
ac_state text,
|
||||
ac_module text,
|
||||
ac_url text,
|
||||
CONSTRAINT valid_state CHECK ((((ac_state = 'FAIL'::text) OR (ac_state = 'SUCCESS'::text)) OR (ac_state = 'AUDIT'::text)))
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: audit_connect_ac_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE audit_connect_ac_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: audit_connect_ac_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE audit_connect_ac_id_seq OWNED BY audit_connect.ac_id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: audit_connect_ac_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
SELECT pg_catalog.setval('audit_connect_ac_id_seq', 287, true);
|
||||
|
||||
|
||||
--
|
||||
-- Name: dossier_id; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE dossier_id
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: dossier_id; Type: SEQUENCE SET; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
SELECT pg_catalog.setval('dossier_id', 29, true);
|
||||
|
||||
|
||||
--
|
||||
-- Name: jnt_use_dos; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE jnt_use_dos (
|
||||
jnt_id integer DEFAULT nextval(('seq_jnt_use_dos'::text)::regclass) NOT NULL,
|
||||
use_id integer NOT NULL,
|
||||
dos_id integer NOT NULL
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: modeledef; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE modeledef (
|
||||
mod_id integer DEFAULT nextval(('s_modid'::text)::regclass) NOT NULL,
|
||||
mod_name text NOT NULL,
|
||||
mod_desc text
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: priv_user; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE priv_user (
|
||||
priv_id integer DEFAULT nextval(('seq_priv_user'::text)::regclass) NOT NULL,
|
||||
priv_jnt integer NOT NULL,
|
||||
priv_priv text
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: s_modid; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE s_modid
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: s_modid; Type: SEQUENCE SET; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
SELECT pg_catalog.setval('s_modid', 8, true);
|
||||
|
||||
|
||||
--
|
||||
-- Name: seq_jnt_use_dos; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE seq_jnt_use_dos
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: seq_jnt_use_dos; Type: SEQUENCE SET; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
SELECT pg_catalog.setval('seq_jnt_use_dos', 33, true);
|
||||
|
||||
|
||||
--
|
||||
-- Name: seq_priv_user; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE seq_priv_user
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: seq_priv_user; Type: SEQUENCE SET; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
SELECT pg_catalog.setval('seq_priv_user', 16, true);
|
||||
|
||||
|
||||
--
|
||||
-- Name: theme; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE theme (
|
||||
the_name text NOT NULL,
|
||||
the_filestyle text,
|
||||
the_filebutton text
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: user_global_pref; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE user_global_pref (
|
||||
user_id text NOT NULL,
|
||||
parameter_type text NOT NULL,
|
||||
parameter_value text
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: TABLE user_global_pref; Type: COMMENT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COMMENT ON TABLE user_global_pref IS 'The user''s global parameter ';
|
||||
|
||||
|
||||
--
|
||||
-- Name: COLUMN user_global_pref.user_id; Type: COMMENT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COMMENT ON COLUMN user_global_pref.user_id IS 'user''s login ';
|
||||
|
||||
|
||||
--
|
||||
-- Name: COLUMN user_global_pref.parameter_type; Type: COMMENT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COMMENT ON COLUMN user_global_pref.parameter_type IS 'the type of parameter ';
|
||||
|
||||
|
||||
--
|
||||
-- Name: COLUMN user_global_pref.parameter_value; Type: COMMENT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COMMENT ON COLUMN user_global_pref.parameter_value IS 'the value of parameter ';
|
||||
|
||||
|
||||
--
|
||||
-- Name: users_id; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE users_id
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MAXVALUE
|
||||
NO MINVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: users_id; Type: SEQUENCE SET; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
SELECT pg_catalog.setval('users_id', 5, true);
|
||||
|
||||
|
||||
--
|
||||
-- Name: version; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE repo_version (
|
||||
val integer NOT NULL
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: ac_id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY audit_connect ALTER COLUMN ac_id SET DEFAULT nextval('audit_connect_ac_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: ac_dossier; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COPY ac_dossier (dos_id, dos_name, dos_description, dos_jnt_user) FROM stdin;
|
||||
25 Dossier Dossier par défaut 0
|
||||
\.
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: ac_users; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COPY ac_users (use_id, use_first_name, use_name, use_login, use_active, use_pass, use_admin) FROM stdin;
|
||||
1 \N \N phpcompta 1 b1cc88e1907cde80cb2595fa793b3da9 1
|
||||
\.
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: audit_connect; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: jnt_use_dos; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COPY jnt_use_dos (jnt_id, use_id, dos_id) FROM stdin;
|
||||
29 1 25
|
||||
\.
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: modeledef; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COPY modeledef (mod_id, mod_name, mod_desc) FROM stdin;
|
||||
1 (BE) Basique Comptabilité Belge, à adapter
|
||||
2 (FR) Basique Comptabilité Française, à adapter
|
||||
\.
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: priv_user; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COPY priv_user (priv_id, priv_jnt, priv_priv) FROM stdin;
|
||||
\.
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: theme; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COPY theme (the_name, the_filestyle, the_filebutton) FROM stdin;
|
||||
classic style.css \N
|
||||
Light style-light.css \N
|
||||
Colored style-color.css \N
|
||||
EPad style-epad.css \N
|
||||
\.
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: user_global_pref; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COPY user_global_pref (user_id, parameter_type, parameter_value) FROM stdin;
|
||||
phpcompta TOPMENU TEXT
|
||||
phpcompta PAGESIZE 50
|
||||
phpcompta THEME classic
|
||||
phpcompta LANG fr_FR.utf8
|
||||
\.
|
||||
|
||||
|
||||
--
|
||||
-- Data for Name: version; Type: TABLE DATA; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
COPY repo_version (val) FROM stdin;
|
||||
14
|
||||
\.
|
||||
|
||||
|
||||
--
|
||||
-- Name: ac_dossier_dos_name_key; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY ac_dossier
|
||||
ADD CONSTRAINT ac_dossier_dos_name_key UNIQUE (dos_name);
|
||||
|
||||
|
||||
--
|
||||
-- Name: ac_dossier_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY ac_dossier
|
||||
ADD CONSTRAINT ac_dossier_pkey PRIMARY KEY (dos_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: ac_users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY ac_users
|
||||
ADD CONSTRAINT ac_users_pkey PRIMARY KEY (use_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: ac_users_use_login_key; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY ac_users
|
||||
ADD CONSTRAINT ac_users_use_login_key UNIQUE (use_login);
|
||||
|
||||
|
||||
--
|
||||
-- Name: audit_connect_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY audit_connect
|
||||
ADD CONSTRAINT audit_connect_pkey PRIMARY KEY (ac_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: jnt_use_dos_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY jnt_use_dos
|
||||
ADD CONSTRAINT jnt_use_dos_pkey PRIMARY KEY (jnt_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: modeledef_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY modeledef
|
||||
ADD CONSTRAINT modeledef_pkey PRIMARY KEY (mod_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: pk_user_global_pref; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY user_global_pref
|
||||
ADD CONSTRAINT pk_user_global_pref PRIMARY KEY (user_id, parameter_type);
|
||||
|
||||
|
||||
--
|
||||
-- Name: priv_user_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY priv_user
|
||||
ADD CONSTRAINT priv_user_pkey PRIMARY KEY (priv_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: version_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY version
|
||||
ADD CONSTRAINT version_pkey PRIMARY KEY (val);
|
||||
|
||||
|
||||
--
|
||||
-- Name: audit_connect_ac_user; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX audit_connect_ac_user ON audit_connect USING btree (ac_user);
|
||||
|
||||
|
||||
--
|
||||
-- Name: fk_jnt_dos_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX fk_jnt_dos_id ON jnt_use_dos USING btree (dos_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: fk_jnt_use_dos; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX fk_jnt_use_dos ON jnt_use_dos USING btree (use_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: limit_user_trg; Type: TRIGGER; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE TRIGGER limit_user_trg
|
||||
BEFORE INSERT OR UPDATE ON audit_connect
|
||||
FOR EACH ROW
|
||||
EXECUTE PROCEDURE limit_user();
|
||||
|
||||
|
||||
--
|
||||
-- Name: fk_user_id; Type: FK CONSTRAINT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY user_global_pref
|
||||
ADD CONSTRAINT fk_user_id FOREIGN KEY (user_id) REFERENCES ac_users(use_login) ON UPDATE CASCADE ON DELETE CASCADE;
|
||||
|
||||
|
||||
--
|
||||
-- Name: jnt_use_dos_dos_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY jnt_use_dos
|
||||
ADD CONSTRAINT jnt_use_dos_dos_id_fkey FOREIGN KEY (dos_id) REFERENCES ac_dossier(dos_id) ON UPDATE CASCADE ON DELETE CASCADE;
|
||||
|
||||
|
||||
--
|
||||
-- Name: jnt_use_dos_use_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY jnt_use_dos
|
||||
ADD CONSTRAINT jnt_use_dos_use_id_fkey FOREIGN KEY (use_id) REFERENCES ac_users(use_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: priv_user_priv_jnt_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY priv_user
|
||||
ADD CONSTRAINT priv_user_priv_jnt_fkey FOREIGN KEY (priv_jnt) REFERENCES jnt_use_dos(jnt_id) ON UPDATE CASCADE ON DELETE CASCADE;
|
||||
|
||||
|
||||
--
|
||||
-- PostgreSQL database dump complete
|
||||
--
|
||||
|
||||
begin;
|
||||
update theme set the_name='Mandarine' ,the_filestyle='style-mandarine.css' where the_name='Colored';
|
||||
update theme set the_name='Mobile' ,the_filestyle='style-mobile.css' where the_name='EPad';
|
||||
update theme set the_name = 'Classique' where the_name='classic';
|
||||
update user_global_pref set parameter_value='Classique' where parameter_type='THEME';
|
||||
update theme set the_filestyle='style-classic.css' where the_filestyle='style.css';
|
||||
update version set val=15;
|
||||
commit;
|
||||
8
contrib/mono-dossier/patch-mono.sql~
Normal file
8
contrib/mono-dossier/patch-mono.sql~
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
begin;
|
||||
update theme set the_name='Mandarine' ,the_filestyle='style-mandarine.css' where the_name='Colored';
|
||||
update theme set the_name='Mobile' ,the_filestyle='style-mobile.css' where the_name='EPad';
|
||||
update theme set the_name = 'Classique' where the_name='classic';
|
||||
update user_global_pref set parameter_value='Classique' where parameter_type='THEME';
|
||||
update theme set the_filestyle='style-classic.css' where the_filestyle='style.css';
|
||||
update repo_version set val=15;
|
||||
commit;
|
||||
32
contrib/mono-dossier/t.sql
Normal file
32
contrib/mono-dossier/t.sql
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
create or replace function insert_menu()
|
||||
returns void as
|
||||
$BODY$
|
||||
declare
|
||||
n_count integer := 0;
|
||||
begin
|
||||
select count(*) into n_count from menu_ref where me_code='CONTACT';
|
||||
if n_count = 0 then
|
||||
insert into menu_ref(me_code,
|
||||
me_file,
|
||||
me_menu,
|
||||
me_description,me_type,me_description_etendue)
|
||||
values
|
||||
('CONTACT',
|
||||
'contact.inc.php',
|
||||
'Contact','Liste de vos contacts','ME','Liste de vos contacts normalement liée à des fiches de sociétés');
|
||||
end if;
|
||||
|
||||
select count(*) into n_count from profile_menu where me_code='CONTACT' and p_id=1;
|
||||
if n_count = 0 then
|
||||
insert into profile_menu(me_code,me_code_dep,p_id,p_order,p_type_display,pm_default,pm_id_dep) select 'CONTACT','GESTION',1,22,'E',0,(select pm_id from profile_menu where me_code='GESTION' and p_id=1);
|
||||
end if;
|
||||
|
||||
select count(*) into n_count from profile_menu where me_code='CONTACT' and p_id=2;
|
||||
if n_count = 0 then
|
||||
insert into profile_menu(me_code,me_code_dep,p_id,p_order,p_type_display,pm_default,pm_id_dep) select 'CONTACT','GESTION',2,22,'E',0,(select pm_id from profile_menu where me_code='GESTION' and p_id=2);
|
||||
end if;
|
||||
end;
|
||||
$BODY$
|
||||
language plpgsql;
|
||||
|
||||
select insert_menu();
|
||||
Loading…
Add table
Add a link
Reference in a new issue