summaryrefslogtreecommitdiff
path: root/sql/Pg-database.sql
blob: 3e51a3564f0bb2dedaf1ec35d2fe221d7e7fcf7a (plain)
  1. begin;
  2. CREATE SEQUENCE id;
  3. -- Central DB structure
  4. -- This is the central database stuff which is used across all datasets
  5. -- in the ledger-smb.conf it is called 'ledgersmb' by default, but obviously
  6. -- can be named anything.
  7. -- BEGIN new entity management
  8. CREATE TABLE entity_class (
  9. id serial primary key,
  10. class text check (class ~ '[[:alnum:]_]') NOT NULL,
  11. active boolean not null default TRUE);
  12. COMMENT ON TABLE entity_class IS $$ Defines the class type such as vendor, customer, contact, employee $$;
  13. COMMENT ON COLUMN entity_class.id IS $$ The first 7 values are reserved and permanent $$;
  14. CREATE index entity_class_idx ON entity_class(lower(class));
  15. CREATE TABLE entity (
  16. id serial UNIQUE,
  17. name text check (name ~ '[[:alnum:]_]'),
  18. entity_class integer references entity_class(id) not null ,
  19. created date not null default current_date,
  20. PRIMARY KEY(name,entity_class));
  21. COMMENT ON TABLE entity IS $$ The primary entity table to map to all contacts $$;
  22. COMMENT ON COLUMN entity.name IS $$ This is the common name of an entity. If it was a person it may be Joshua Drake, a company Acme Corp. You may also choose to use a domain such as commandprompt.com $$;
  23. ALTER TABLE entity ADD FOREIGN KEY (entity_class) REFERENCES entity_class(id);
  24. INSERT INTO entity_class (id,class) VALUES (1,'Vendor');
  25. INSERT INTO entity_class (id,class) VALUES (2,'Customer');
  26. INSERT INTO entity_class (id,class) VALUES (3,'Employee');
  27. INSERT INTO entity_class (id,class) VALUES (4,'Contact');
  28. INSERT INTO entity_class (id,class) VALUES (5,'Lead');
  29. INSERT INTO entity_class (id,class) VALUES (6,'Referral');
  30. SELECT setval('entity_class_id_seq',7);
  31. CREATE TABLE entity_class_to_entity (
  32. entity_class_id integer not null references entity_class(id) ON DELETE CASCADE,
  33. entity_id integer not null references entity(id) ON DELETE CASCADE,
  34. PRIMARY KEY(entity_class_id,entity_id)
  35. );
  36. COMMENT ON TABLE entity_class_to_entity IS $$ Relation builder for classes to entity $$;
  37. -- USERS stuff --
  38. CREATE TABLE users (
  39. id serial UNIQUE,
  40. username varchar(30) primary key,
  41. entity_id int not null references entity(id) on delete cascade
  42. );
  43. COMMENT ON TABLE users IS $$username is the actual primary key here because we do not want duplicate users$$;
  44. -- Session tracking table
  45. CREATE TABLE session(
  46. session_id serial PRIMARY KEY,
  47. token VARCHAR(32) CHECK(length(token) = 32),
  48. last_used TIMESTAMP default now(),
  49. ttl int default 3600 not null,
  50. users_id INTEGER NOT NULL references users(id),
  51. transaction_id INTEGER NOT NULL
  52. );
  53. --
  54. CREATE TABLE transactions (
  55. id int PRIMARY KEY,
  56. table_name text,
  57. locked_by int references "session" (session_id) ON DELETE SET NULL
  58. );
  59. COMMENT on TABLE transactions IS
  60. $$ This table tracks basic transactions across AR, AP, and GL related tables.
  61. It provies a referential integrity enforcement mechanism for the financial data
  62. and also some common features such as discretionary (and pessimistic) locking
  63. for long batch workflows. $$;
  64. CREATE OR REPLACE FUNCTION lock_record (int, int) returns bool as
  65. $$
  66. declare
  67. locked int;
  68. begin
  69. SELECT locked_by into locked from transactions where id = $1;
  70. IF NOT FOUND THEN
  71. RETURN FALSE;
  72. ELSEIF locked is not null AND locked <> $2 THEN
  73. RETURN FALSE;
  74. END IF;
  75. UPDATE transactions set locked_by = $2 where id = $1;
  76. RETURN TRUE;
  77. end;
  78. $$ language plpgsql;
  79. COMMENT ON column transactions.locked_by IS
  80. $$ This should only be used in pessimistic locking measures as required by large
  81. batch work flows. $$;
  82. -- LOCATION AND COUNTRY
  83. CREATE TABLE country (
  84. id serial PRIMARY KEY,
  85. name text check (name ~ '[[:alnum:]_]') NOT NULL,
  86. short_name text check (short_name ~ '[[:alnum:]_]') NOT NULL,
  87. itu text);
  88. COMMENT ON COLUMN country.itu IS $$ The ITU Telecommunication Standardization Sector code for calling internationally. For example, the US is 1, Great Britain is 44 $$;
  89. CREATE UNIQUE INDEX country_name_idx on country(lower(name));
  90. CREATE TABLE location_class (
  91. id serial UNIQUE,
  92. class text check (class ~ '[[:alnum:]_]') not null,
  93. authoritative boolean not null,
  94. PRIMARY KEY (class,authoritative));
  95. CREATE UNIQUE INDEX lower_class_unique ON location_class(lower(class));
  96. INSERT INTO location_class(id,class,authoritative) VALUES ('1','Billing',TRUE);
  97. INSERT INTO location_class(id,class,authoritative) VALUES ('2','Sales',TRUE);
  98. INSERT INTO location_class(id,class,authoritative) VALUES ('3','Shipping',TRUE);
  99. SELECT SETVAL('location_class_id_seq',4);
  100. CREATE TABLE location (
  101. id serial PRIMARY KEY,
  102. line_one text check (line_one ~ '[[:alnum:]_]') NOT NULL,
  103. line_two text,
  104. line_three text,
  105. city text check (city ~ '[[:alnum:]_]') NOT NULL,
  106. state text check(state ~ '[[:alnum:]_]') NOT NULL,
  107. country_id integer not null REFERENCES country(id),
  108. mail_code text not null check (mail_code ~ '[[:alnum:]_]'),
  109. created date not null,
  110. inactive_date timestamp default null,
  111. active boolean not null default TRUE
  112. );
  113. CREATE TABLE company (
  114. id serial UNIQUE,
  115. entity_id integer not null references entity(id),
  116. legal_name text check (legal_name ~ '[[:alnum:]_]'),
  117. tax_id text,
  118. created date default current_date not null,
  119. PRIMARY KEY (entity_id,legal_name));
  120. COMMENT ON COLUMN company.tax_id IS $$ In the US this would be a EIN. $$;
  121. CREATE TABLE company_to_location (
  122. location_id integer references location(id) not null,
  123. location_class integer not null references location_class(id),
  124. company_id integer not null references company(id) ON DELETE CASCADE,
  125. PRIMARY KEY(location_id,company_id));
  126. CREATE TABLE salutation (
  127. id serial unique,
  128. salutation text primary key);
  129. INSERT INTO salutation (id,salutation) VALUES ('1','Dr.');
  130. INSERT INTO salutation (id,salutation) VALUES ('2','Miss.');
  131. INSERT INTO salutation (id,salutation) VALUES ('3','Mr.');
  132. INSERT INTO salutation (id,salutation) VALUES ('4','Mrs.');
  133. INSERT INTO salutation (id,salutation) VALUES ('5','Ms.');
  134. INSERT INTO salutation (id,salutation) VALUES ('6','Sir.');
  135. SELECT SETVAL('salutation_id_seq',7);
  136. CREATE TABLE person (
  137. id serial PRIMARY KEY,
  138. entity_id integer references entity(id) not null,
  139. salutation_id integer references salutation(id),
  140. first_name text check (first_name ~ '[[:alnum:]_]') NOT NULL,
  141. middle_name text,
  142. last_name text check (last_name ~ '[[:alnum:]_]') NOT NULL,
  143. created date not null default current_date
  144. );
  145. COMMENT ON TABLE person IS $$ Every person, must have an entity to derive a common or display name. The correct way to get class information on a person would be person.entity_id->entity_class_to_entity.entity_id. $$;
  146. create table entity_employee (
  147. person_id integer references person(id) not null,
  148. entity_id integer references entity(id) not null unique,
  149. startdate date not null default current_date,
  150. enddate date,
  151. role varchar(20),
  152. ssn text,
  153. sales bool default 'f',
  154. manager_id integer references entity(id),
  155. employeenumber varchar(32),
  156. dob date,
  157. PRIMARY KEY (person_id, entity_id)
  158. );
  159. CREATE TABLE person_to_location (
  160. location_id integer not null references location(id),
  161. location_class integer not null references location_class(id),
  162. person_id integer not null references person(id) ON DELETE CASCADE,
  163. PRIMARY KEY (location_id,person_id));
  164. CREATE TABLE person_to_company (
  165. location_id integer references location(id) not null,
  166. person_id integer not null references person(id) ON DELETE CASCADE,
  167. company_id integer not null references company(id) ON DELETE CASCADE,
  168. PRIMARY KEY (location_id,person_id));
  169. CREATE TABLE entity_other_name (
  170. entity_id integer not null references entity(id) ON DELETE CASCADE,
  171. other_name text check (other_name ~ '[[:alnum:]_]'),
  172. PRIMARY KEY (other_name, entity_id));
  173. COMMENT ON TABLE entity_other_name IS $$ Similar to company_other_name, a person may be jd, Joshua Drake, linuxpoet... all are the same person. $$;
  174. CREATE TABLE person_to_entity (
  175. person_id integer not null references person(id) ON DELETE CASCADE,
  176. entity_id integer not null check (entity_id != person_id) references entity(id) ON DELETE CASCADE,
  177. related_how text,
  178. created date not null default current_date,
  179. PRIMARY KEY (person_id,entity_id));
  180. CREATE TABLE company_to_entity (
  181. company_id integer not null references company(id) ON DELETE CASCADE,
  182. entity_id integer check (company_id != entity_id) not null references entity(id) ON DELETE CASCADE,
  183. related_how text,
  184. created date not null default current_date,
  185. PRIMARY KEY (company_id,entity_id));
  186. CREATE TABLE contact_class (
  187. id serial UNIQUE,
  188. class text check (class ~ '[[:alnum:]_]') NOT NULL,
  189. PRIMARY KEY (class));
  190. CREATE UNIQUE INDEX contact_class_class_idx ON contact_class(lower(class));
  191. INSERT INTO contact_class (id,class) values (1,'Primary Phone');
  192. INSERT INTO contact_class (id,class) values (2,'Secondary Phone');
  193. INSERT INTO contact_class (id,class) values (3,'Cell Phone');
  194. INSERT INTO contact_class (id,class) values (4,'AIM');
  195. INSERT INTO contact_class (id,class) values (5,'Yahoo');
  196. INSERT INTO contact_class (id,class) values (6,'Gtalk');
  197. INSERT INTO contact_class (id,class) values (7,'MSN');
  198. INSERT INTO contact_class (id,class) values (8,'IRC');
  199. INSERT INTO contact_class (id,class) values (9,'Fax');
  200. INSERT INTO contact_class (id,class) values (10,'Generic Jabber');
  201. INSERT INTO contact_class (id,class) values (11,'Home Phone');
  202. INSERT INTO contact_class (id,class) values (12,'Email');
  203. SELECT SETVAL('contact_class_id_seq',12);
  204. CREATE TABLE person_to_contact (
  205. person_id integer not null references person(id) ON DELETE CASCADE,
  206. contact_class_id integer references contact_class(id) not null,
  207. contact text check(contact ~ '[[:alnum:]_]') not null,
  208. PRIMARY KEY (person_id,contact_class_id,contact));
  209. COMMENT ON TABLE person_to_contact IS $$ To keep track of the relationship between multiple contact methods and a single individual $$;
  210. CREATE TABLE company_to_contact (
  211. company_id integer not null references company(id) ON DELETE CASCADE,
  212. contact_class_id integer references contact_class(id) not null,
  213. contact text check(contact ~ '[[:alnum:]_]') not null,
  214. PRIMARY KEY (company_id,contact_class_id,contact));
  215. COMMENT ON TABLE company_to_contact IS $$ To keep track of the relationship between multiple contact methods and a single company $$;
  216. -- Begin rocking notes interface
  217. CREATE TABLE note_class(id serial primary key, class text not null check (class ~ '[[:alnum:]_]'));
  218. INSERT INTO note_class(id,class) VALUES (1,'Entity');
  219. INSERT INTO note_class(id,class) VALUES (2,'Invoice');
  220. CREATE UNIQUE INDEX note_class_idx ON note_class(lower(class));
  221. CREATE TABLE note (id serial primary key, note_class integer not null references note_class(id),
  222. note text not null, vector tsvector not null,
  223. created timestamp not null default now(),
  224. ref_key integer not null);
  225. CREATE TABLE entity_note(entity_id int references entity(id)) INHERITS (note);
  226. ALTER TABLE entity_note ADD CHECK (note_class = 1);
  227. ALTER TABLE entity_note ADD FOREIGN KEY (ref_key) REFERENCES entity(id) ON DELETE CASCADE;
  228. CREATE INDEX entity_note_id_idx ON entity_note(id);
  229. CREATE UNIQUE INDEX entity_note_class_idx ON note_class(lower(class));
  230. CREATE INDEX entity_note_vectors_idx ON entity_note USING gist(vector);
  231. CREATE TABLE invoice_note() INHERITS (note);
  232. CREATE INDEX invoice_note_id_idx ON invoice_note(id);
  233. CREATE UNIQUE INDEX invoice_note_class_idx ON note_class(lower(class));
  234. CREATE INDEX invoice_note_vectors_idx ON invoice_note USING gist(vector);
  235. -- END entity
  236. --
  237. CREATE TABLE makemodel (
  238. parts_id int PRIMARY KEY,
  239. make text,
  240. model text
  241. );
  242. --
  243. CREATE TABLE gl (
  244. id int DEFAULT nextval ( 'id' ) PRIMARY KEY REFERENCES transactions(id),
  245. reference text,
  246. description text,
  247. transdate date DEFAULT current_date,
  248. person_id integer references person(id),
  249. notes text,
  250. approved bool default true,
  251. department_id int default 0
  252. );
  253. --
  254. CREATE TABLE chart (
  255. id serial PRIMARY KEY,
  256. accno text NOT NULL,
  257. description text,
  258. charttype char(1) DEFAULT 'A',
  259. category char(1),
  260. link text,
  261. gifi_accno text,
  262. contra bool DEFAULT 'f'
  263. );
  264. --
  265. CREATE TABLE gifi (
  266. accno text PRIMARY KEY,
  267. description text
  268. );
  269. --
  270. CREATE TABLE defaults (
  271. setting_key text primary key,
  272. value text
  273. );
  274. /*
  275. inventory_accno_id int,
  276. income_accno_id int,
  277. expense_accno_id int,
  278. fxgain_accno_id int,
  279. fxloss_accno_id int,
  280. */
  281. \COPY defaults FROM stdin WITH DELIMITER |
  282. sinumber|1
  283. sonumber|1
  284. yearend|1
  285. businessnumber|1
  286. version|1.2.0
  287. closedto|\N
  288. revtrans|1
  289. ponumber|1
  290. sqnumber|1
  291. rfqnumber|1
  292. audittrail|0
  293. vinumber|1
  294. employeenumber|1
  295. partnumber|1
  296. customernumber|1
  297. vendornumber|1
  298. glnumber|1
  299. projectnumber|1
  300. \.
  301. -- */
  302. CREATE TABLE acc_trans (
  303. trans_id int NOT NULL REFERENCES transactions(id),
  304. chart_id int NOT NULL REFERENCES chart (id),
  305. amount NUMERIC,
  306. transdate date DEFAULT current_date,
  307. source text,
  308. cleared bool DEFAULT 'f',
  309. fx_transaction bool DEFAULT 'f',
  310. project_id int,
  311. memo text,
  312. invoice_id int,
  313. approved bool default true,
  314. cleared_on date,
  315. reconciled_on date,
  316. entry_id SERIAL PRIMARY KEY
  317. );
  318. --
  319. CREATE TABLE invoice (
  320. id serial PRIMARY KEY,
  321. trans_id int,
  322. parts_id int,
  323. description text,
  324. qty integer,
  325. allocated integer,
  326. sellprice NUMERIC,
  327. fxsellprice NUMERIC,
  328. discount numeric,
  329. assemblyitem bool DEFAULT 'f',
  330. unit varchar(5),
  331. project_id int,
  332. deliverydate date,
  333. serialnumber text,
  334. notes text
  335. );
  336. -- Added for Entity but can't be added due to order
  337. ALTER TABLE invoice_note ADD FOREIGN KEY (ref_key) REFERENCES invoice(id);
  338. --
  339. --
  340. -- pricegroup added here due to references
  341. CREATE TABLE pricegroup (
  342. id serial PRIMARY KEY,
  343. pricegroup text
  344. );
  345. CREATE TABLE entity_credit_account (
  346. id serial not null unique,
  347. entity_id int not null references entity(id) ON DELETE CASCADE,
  348. entity_class int not null references entity_class(id) check ( entity_class in (1,2) ),
  349. discount numeric,
  350. discount_terms int default 0,
  351. taxincluded bool default 'f',
  352. creditlimit NUMERIC default 0,
  353. terms int2 default 0,
  354. meta_number varchar(32),
  355. cc text,
  356. bcc text,
  357. business_id int,
  358. language_code varchar(6),
  359. pricegroup_id int references pricegroup(id),
  360. curr char(3),
  361. startdate date DEFAULT CURRENT_DATE,
  362. enddate date,
  363. threshold numeric default 0,
  364. PRIMARY KEY(entity_id, meta_number)
  365. );
  366. -- notes are from entity_note
  367. -- ssn, iban and bic are from entity_credit_account
  368. --
  369. -- The view below is broken. Disabling for now.
  370. CREATE VIEW employee AS
  371. SELECT s.salutation, p.first_name, p.last_name, ee.person_id, ee.entity_id, ee.startdate, ee.enddate, ee."role", ee.ssn, ee.sales, ee.manager_id, ee.employeenumber, ee.dob
  372. FROM person p
  373. JOIN entity_employee ee USING (entity_id)
  374. LEFT JOIN salutation s ON p.salutation_id = s.id;
  375. /*
  376. create view employee as
  377. SELECT
  378. ente.entity_id,
  379. 3,
  380. u.username,
  381. ente.startdate,
  382. ente.enddate,
  383. en.note,
  384. ente.ssn,
  385. eca.iban,
  386. eca.bic,
  387. ente.manager_id,
  388. ente.employeenumber,
  389. ente.dob
  390. FROM
  391. entity_employee ente
  392. JOIN
  393. entity_credit_account eca on (eca.entity_id = ente.entity_id)
  394. JOIN
  395. entity_note en on (en.entity_id = ente.entity_id)
  396. JOIN
  397. users u on (u.entity_id = ente.entity_id);
  398. */
  399. CREATE TABLE entity_bank_account (
  400. id serial not null,
  401. entity_id int not null references entity(id) ON DELETE CASCADE,
  402. bic varchar,
  403. iban varchar,
  404. UNIQUE (id),
  405. PRIMARY KEY (entity_id, bic, iban)
  406. );
  407. CREATE VIEW customer AS
  408. SELECT
  409. c.id,
  410. emd.entity_id,
  411. emd.entity_class,
  412. emd.discount,
  413. emd.taxincluded,
  414. emd.creditlimit,
  415. emd.terms,
  416. emd.meta_number as customernumber,
  417. emd.cc,
  418. emd.bcc,
  419. emd.business_id,
  420. emd.language_code,
  421. emd.pricegroup_id,
  422. emd.curr,
  423. emd.startdate,
  424. emd.enddate,
  425. eba.bic,
  426. eba.iban,
  427. ein.note as invoice_notes
  428. FROM entity_credit_account emd
  429. join entity_bank_account eba on emd.entity_id = eba.entity_id
  430. Left join entity_note ein on ein.ref_key = emd.entity_id
  431. join company c on c.entity_id = emd.entity_id
  432. where emd.entity_class = 2;
  433. CREATE VIEW vendor AS
  434. SELECT
  435. c.id,
  436. emd.entity_id,
  437. emd.entity_class,
  438. emd.discount,
  439. emd.taxincluded,
  440. emd.creditlimit,
  441. emd.terms,
  442. emd.meta_number as vendornumber,
  443. emd.cc,
  444. emd.bcc,
  445. emd.business_id,
  446. emd.language_code,
  447. emd.pricegroup_id,
  448. emd.curr,
  449. emd.startdate,
  450. emd.enddate,
  451. eba.bic,
  452. eba.iban,
  453. ein.note as
  454. invoice_notes
  455. FROM entity_credit_account emd
  456. LEFT join entity_bank_account eba on emd.entity_id = eba.entity_id
  457. left join entity_note ein on ein.ref_key = emd.entity_id
  458. join company c on c.entity_id = emd.entity_id
  459. where emd.entity_class = 1;
  460. COMMENT ON TABLE entity_credit_account IS $$ This is a metadata table for ALL entities in LSMB; it deprecates the use of customer and vendor specific tables (which were nearly identical and largely redundant), and replaces it with a single point of metadata. $$;
  461. COMMENT ON COLUMN entity_credit_account.entity_id IS $$ This is the relationship between entities and their metadata. $$;
  462. COMMENT ON COLUMN entity_credit_account.entity_class IS $$ A reference to entity_class, requiring that entity_credit_account only apply to vendors and customers, using the entity_class table as the Point Of Truth. $$;
  463. ALTER TABLE company ADD COLUMN sic_code varchar;
  464. --
  465. --
  466. -- COMMENT ON TABLE employee IS $$ Is a metadata table specific to employee $$;
  467. CREATE TABLE parts (
  468. id serial PRIMARY KEY,
  469. partnumber text,
  470. description text,
  471. unit varchar(5),
  472. listprice NUMERIC,
  473. sellprice NUMERIC,
  474. lastcost NUMERIC,
  475. priceupdate date DEFAULT current_date,
  476. weight numeric,
  477. onhand numeric DEFAULT 0,
  478. notes text,
  479. makemodel bool DEFAULT 'f',
  480. assembly bool DEFAULT 'f',
  481. alternate bool DEFAULT 'f',
  482. rop numeric, -- SC: ReOrder Point
  483. inventory_accno_id int,
  484. income_accno_id int,
  485. expense_accno_id int,
  486. bin text,
  487. obsolete bool DEFAULT 'f',
  488. bom bool DEFAULT 'f',
  489. image text,
  490. drawing text,
  491. microfiche text,
  492. partsgroup_id int,
  493. project_id int,
  494. avgcost NUMERIC
  495. );
  496. CREATE UNIQUE INDEX parts_partnumber_index_u ON parts (partnumber)
  497. WHERE obsolete is false;
  498. --
  499. CREATE TABLE assembly (
  500. id int,
  501. parts_id int,
  502. qty numeric,
  503. bom bool,
  504. adj bool,
  505. PRIMARY KEY (id, parts_id)
  506. );
  507. --
  508. CREATE TABLE ar (
  509. id int DEFAULT nextval ( 'id' ) PRIMARY KEY REFERENCES transactions(id),
  510. invnumber text,
  511. transdate date DEFAULT current_date,
  512. entity_id int REFERENCES entity(id),
  513. taxincluded bool,
  514. amount NUMERIC,
  515. netamount NUMERIC,
  516. paid NUMERIC,
  517. datepaid date,
  518. duedate date,
  519. invoice bool DEFAULT 'f',
  520. shippingpoint text,
  521. terms int2 DEFAULT 0,
  522. notes text,
  523. curr char(3),
  524. ordnumber text,
  525. person_id integer references entity_employee(entity_id),
  526. till varchar(20),
  527. quonumber text,
  528. intnotes text,
  529. department_id int default 0,
  530. shipvia text,
  531. language_code varchar(6),
  532. ponumber text,
  533. on_hold bool default false,
  534. reverse bool default false,
  535. approved bool default true,
  536. credit_account int references entity_credit_account(id) not null,
  537. description text
  538. );
  539. COMMENT ON COLUMN ar.entity_id IS $$ Used to be customer_id, but customer is now metadata. You need to push to entity $$;
  540. --
  541. CREATE TABLE ap (
  542. id int DEFAULT nextval ( 'id' ) PRIMARY KEY REFERENCES transactions(id),
  543. invnumber text,
  544. transdate date DEFAULT current_date,
  545. entity_id int REFERENCES entity(id),
  546. taxincluded bool DEFAULT 'f',
  547. amount NUMERIC,
  548. netamount NUMERIC,
  549. paid NUMERIC,
  550. datepaid date,
  551. duedate date,
  552. invoice bool DEFAULT 'f',
  553. ordnumber text,
  554. curr char(3),
  555. notes text,
  556. person_id integer references entity_employee(entity_id),
  557. till varchar(20),
  558. quonumber text,
  559. intnotes text,
  560. department_id int DEFAULT 0,
  561. shipvia text,
  562. language_code varchar(6),
  563. ponumber text,
  564. shippingpoint text,
  565. on_hold bool default false,
  566. approved bool default true,
  567. reverse bool default false,
  568. terms int2 DEFAULT 0,
  569. description text,
  570. credit_account int references entity_credit_account(id)
  571. );
  572. COMMENT ON COLUMN ap.entity_id IS $$ Used to be customer_id, but customer is now metadata. You need to push to entity $$;
  573. --
  574. CREATE TABLE taxmodule (
  575. taxmodule_id serial PRIMARY KEY,
  576. taxmodulename text NOT NULL
  577. );
  578. --
  579. CREATE TABLE taxcategory (
  580. taxcategory_id serial PRIMARY KEY,
  581. taxcategoryname text NOT NULL,
  582. taxmodule_id int NOT NULL,
  583. FOREIGN KEY (taxmodule_id) REFERENCES taxmodule (taxmodule_id)
  584. );
  585. --
  586. CREATE TABLE partstax (
  587. parts_id int,
  588. chart_id int,
  589. taxcategory_id int,
  590. PRIMARY KEY (parts_id, chart_id),
  591. FOREIGN KEY (parts_id) REFERENCES parts (id) on delete cascade,
  592. FOREIGN KEY (chart_id) REFERENCES chart (id),
  593. FOREIGN KEY (taxcategory_id) REFERENCES taxcategory (taxcategory_id)
  594. );
  595. --
  596. CREATE TABLE tax (
  597. chart_id int PRIMARY KEY,
  598. rate numeric,
  599. taxnumber text,
  600. validto date,
  601. pass integer DEFAULT 0 NOT NULL,
  602. taxmodule_id int DEFAULT 1 NOT NULL,
  603. FOREIGN KEY (chart_id) REFERENCES chart (id),
  604. FOREIGN KEY (taxmodule_id) REFERENCES taxmodule (taxmodule_id)
  605. );
  606. --
  607. CREATE TABLE customertax (
  608. customer_id int references entity_credit_account(id) on delete cascade,
  609. chart_id int,
  610. PRIMARY KEY (customer_id, chart_id)
  611. );
  612. --
  613. CREATE TABLE vendortax (
  614. vendor_id int references entity_credit_account(id) on delete cascade,
  615. chart_id int,
  616. PRIMARY KEY (vendor_id, chart_id)
  617. );
  618. --
  619. CREATE TABLE oe_class (
  620. id smallint unique check(id IN (1,2,3,4)),
  621. oe_class text primary key);
  622. INSERT INTO oe_class(id,oe_class) values (1,'Sales Order');
  623. INSERT INTO oe_class(id,oe_class) values (2,'Purchase Order');
  624. INSERT INTO oe_class(id,oe_class) values (3,'Quotation');
  625. INSERT INTO oe_class(id,oe_class) values (4,'RFQ');
  626. COMMENT ON TABLE oe_class IS $$ This could probably be done better. But I need to remove the customer_id/vendor_id relationship and instead rely on a classification $$;
  627. CREATE TABLE oe (
  628. id serial PRIMARY KEY,
  629. ordnumber text,
  630. transdate date default current_date,
  631. entity_id integer references entity(id),
  632. amount NUMERIC,
  633. netamount NUMERIC,
  634. reqdate date,
  635. taxincluded bool,
  636. shippingpoint text,
  637. notes text,
  638. curr char(3),
  639. person_id integer references person(id),
  640. closed bool default 'f',
  641. quotation bool default 'f',
  642. quonumber text,
  643. intnotes text,
  644. department_id int default 0,
  645. shipvia text,
  646. language_code varchar(6),
  647. ponumber text,
  648. terms int2 DEFAULT 0,
  649. oe_class_id int references oe_class(id) NOT NULL
  650. );
  651. --
  652. CREATE TABLE orderitems (
  653. id serial PRIMARY KEY,
  654. trans_id int,
  655. parts_id int,
  656. description text,
  657. qty numeric,
  658. sellprice NUMERIC,
  659. discount numeric,
  660. unit varchar(5),
  661. project_id int,
  662. reqdate date,
  663. ship numeric,
  664. serialnumber text,
  665. notes text
  666. );
  667. --
  668. CREATE TABLE exchangerate (
  669. curr char(3),
  670. transdate date,
  671. buy numeric,
  672. sell numeric,
  673. PRIMARY KEY (curr, transdate)
  674. );
  675. --
  676. -- batch stuff
  677. CREATE TABLE batch_class (
  678. id serial unique,
  679. class varchar primary key
  680. );
  681. insert into batch_class (id,class) values (1,'ap');
  682. insert into batch_class (id,class) values (2,'ar');
  683. insert into batch_class (id,class) values (3,'payment');
  684. insert into batch_class (id,class) values (4,'payment_reversal');
  685. insert into batch_class (id,class) values (5,'gl');
  686. insert into batch_class (id,class) values (6,'receipt');
  687. SELECT SETVAL('batch_class_id_seq',6);
  688. CREATE TABLE batch (
  689. id serial primary key,
  690. batch_class_id integer references batch_class(id) not null,
  691. description text,
  692. approved_on date default null,
  693. approved_by int references entity_employee(entity_id),
  694. created_by int references entity_employee(entity_id),
  695. locked_by int references session(session_id),
  696. created_on date default now()
  697. );
  698. COMMENT ON COLUMN batch.batch_class_id IS
  699. $$ Note that this field is largely used for sorting the vouchers. A given batch is NOT restricted to this type.$$;
  700. CREATE TABLE voucher (
  701. trans_id int REFERENCES transactions(id) NOT NULL,
  702. batch_id int references batch(id) not null,
  703. id serial NOT NULL,
  704. batch_class int references batch_class not null,
  705. PRIMARY KEY (batch_class, batch_id, trans_id)
  706. );
  707. COMMENT ON COLUMN voucher.batch_class IS $$ This is the authoritative class of the
  708. voucher. $$;
  709. COMMENT ON COLUMN voucher.id IS $$ This is simply a surrogate key for easy reference.$$;
  710. --
  711. create table shipto (
  712. trans_id int,
  713. shiptoname varchar(64),
  714. shiptoaddress1 varchar(32),
  715. shiptoaddress2 varchar(32),
  716. shiptocity varchar(32),
  717. shiptostate varchar(32),
  718. shiptozipcode varchar(10),
  719. shiptocountry varchar(32),
  720. shiptocontact varchar(64),
  721. shiptophone varchar(20),
  722. shiptofax varchar(20),
  723. shiptoemail text,
  724. entry_id SERIAL PRIMARY KEY
  725. );
  726. -- SHIPTO really needs to be pushed into entities too
  727. --
  728. --
  729. CREATE TABLE project (
  730. id serial PRIMARY KEY,
  731. projectnumber text,
  732. description text,
  733. startdate date,
  734. enddate date,
  735. parts_id int,
  736. production numeric default 0,
  737. completed numeric default 0,
  738. customer_id int
  739. );
  740. --
  741. CREATE TABLE partsgroup (
  742. id serial PRIMARY KEY,
  743. partsgroup text
  744. );
  745. --
  746. CREATE TABLE status (
  747. trans_id int,
  748. formname text,
  749. printed bool default 'f',
  750. emailed bool default 'f',
  751. spoolfile text,
  752. PRIMARY KEY (trans_id, formname)
  753. );
  754. --
  755. CREATE TABLE department (
  756. id serial PRIMARY KEY,
  757. description text,
  758. role char(1) default 'P'
  759. );
  760. --
  761. -- department transaction table
  762. CREATE TABLE dpt_trans (
  763. trans_id int PRIMARY KEY,
  764. department_id int
  765. );
  766. --
  767. -- business table
  768. CREATE TABLE business (
  769. id serial PRIMARY KEY,
  770. description text,
  771. discount numeric
  772. );
  773. --
  774. -- SIC
  775. CREATE TABLE sic (
  776. code varchar(6) PRIMARY KEY,
  777. sictype char(1),
  778. description text
  779. );
  780. --
  781. CREATE TABLE warehouse (
  782. id serial PRIMARY KEY,
  783. description text
  784. );
  785. --
  786. CREATE TABLE inventory (
  787. entity_id integer references entity_employee(entity_id),
  788. warehouse_id int,
  789. parts_id int,
  790. trans_id int,
  791. orderitems_id int,
  792. qty numeric,
  793. shippingdate date,
  794. entry_id SERIAL PRIMARY KEY
  795. );
  796. --
  797. CREATE TABLE yearend (
  798. trans_id int PRIMARY KEY,
  799. transdate date
  800. );
  801. --
  802. CREATE TABLE partsvendor (
  803. entity_id int not null references entity_credit_account(id) on delete cascade,
  804. parts_id int,
  805. partnumber text,
  806. leadtime int2,
  807. lastcost NUMERIC,
  808. curr char(3),
  809. entry_id SERIAL PRIMARY KEY
  810. );
  811. --
  812. CREATE TABLE partscustomer (
  813. parts_id int,
  814. customer_id int not null references entity_credit_account(id) on delete cascade,
  815. pricegroup_id int,
  816. pricebreak numeric,
  817. sellprice NUMERIC,
  818. validfrom date,
  819. validto date,
  820. curr char(3),
  821. entry_id SERIAL PRIMARY KEY
  822. );
  823. -- How does partscustomer.customer_id relate here?
  824. --
  825. CREATE TABLE language (
  826. code varchar(6) PRIMARY KEY,
  827. description text
  828. );
  829. --
  830. CREATE TABLE audittrail (
  831. trans_id int,
  832. tablename text,
  833. reference text,
  834. formname text,
  835. action text,
  836. transdate timestamp default current_timestamp,
  837. person_id integer references person(id) not null,
  838. entry_id BIGSERIAL PRIMARY KEY
  839. );
  840. --
  841. CREATE TABLE translation (
  842. trans_id int,
  843. language_code varchar(6),
  844. description text,
  845. PRIMARY KEY (trans_id, language_code)
  846. );
  847. --
  848. CREATE TABLE user_preference (
  849. id int PRIMARY KEY REFERENCES users(id),
  850. language varchar(6) REFERENCES language(code),
  851. stylesheet text default 'ledgersmb.css' not null,
  852. printer text,
  853. dateformat text default 'yyyy-mm-dd' not null,
  854. numberformat text default '1000.00' not null
  855. );
  856. -- user_preference is here due to a dependency on language.code
  857. COMMENT ON TABLE user_preference IS
  858. $$ This table sets the basic preferences for formats, languages, printers, and user-selected stylesheets.$$;
  859. CREATE TABLE recurring (
  860. id int DEFAULT nextval ( 'id' ) PRIMARY KEY,
  861. reference text,
  862. startdate date,
  863. nextdate date,
  864. enddate date,
  865. repeat int2,
  866. unit varchar(6),
  867. howmany int,
  868. payment bool default 'f'
  869. );
  870. --
  871. CREATE TABLE recurringemail (
  872. id int,
  873. formname text,
  874. format text,
  875. message text,
  876. PRIMARY KEY (id, formname)
  877. );
  878. --
  879. CREATE TABLE recurringprint (
  880. id int,
  881. formname text,
  882. format text,
  883. printer text,
  884. PRIMARY KEY (id, formname)
  885. );
  886. --
  887. CREATE TABLE jcitems (
  888. id serial PRIMARY KEY,
  889. project_id int,
  890. parts_id int,
  891. description text,
  892. qty numeric,
  893. allocated numeric,
  894. sellprice NUMERIC,
  895. fxsellprice NUMERIC,
  896. serialnumber text,
  897. checkedin timestamp with time zone,
  898. checkedout timestamp with time zone,
  899. person_id integer references person(id) not null,
  900. notes text
  901. );
  902. insert into transactions (id, table_name) SELECT id, 'ap' FROM ap;
  903. insert into transactions (id, table_name) SELECT id, 'ar' FROM ap;
  904. INSERT INTO transactions (id, table_name) SELECT id, 'gl' FROM gl;
  905. CREATE OR REPLACE FUNCTION track_global_sequence() RETURNS TRIGGER AS
  906. $$
  907. BEGIN
  908. IF tg_op = 'INSERT' THEN
  909. INSERT INTO transactions (id, table_name)
  910. VALUES (new.id, TG_RELNAME);
  911. ELSEIF tg_op = 'UPDATE' THEN
  912. IF new.id = old.id THEN
  913. return new;
  914. ELSE
  915. UPDATE transactions SET id = new.id WHERE id = old.id;
  916. END IF;
  917. ELSE
  918. DELETE FROM transactions WHERE id = old_id;
  919. END IF;
  920. RETURN new;
  921. END;
  922. $$ LANGUAGE PLPGSQL;
  923. CREATE TRIGGER ap_track_global_sequence before insert or update or delete on ap
  924. for each row execute procedure track_global_sequence();
  925. CREATE TRIGGER ar_track_global_sequence before insert or update or delete on ar
  926. for each row execute procedure track_global_sequence();
  927. CREATE TRIGGER gl_track_global_sequence before insert or update or delete on gl
  928. for each row execute procedure track_global_sequence();
  929. CREATE TABLE custom_table_catalog (
  930. table_id SERIAL PRIMARY KEY,
  931. extends TEXT,
  932. table_name TEXT
  933. );
  934. CREATE TABLE custom_field_catalog (
  935. field_id SERIAL PRIMARY KEY,
  936. table_id INT REFERENCES custom_table_catalog,
  937. field_name TEXT
  938. );
  939. INSERT INTO taxmodule (
  940. taxmodule_id, taxmodulename
  941. ) VALUES (
  942. 1, 'Simple'
  943. );
  944. create index acc_trans_trans_id_key on acc_trans (trans_id);
  945. create index acc_trans_chart_id_key on acc_trans (chart_id);
  946. create index acc_trans_transdate_key on acc_trans (transdate);
  947. create index acc_trans_source_key on acc_trans (lower(source));
  948. --
  949. create index ap_id_key on ap (id);
  950. create index ap_transdate_key on ap (transdate);
  951. create index ap_invnumber_key on ap (invnumber);
  952. create index ap_ordnumber_key on ap (ordnumber);
  953. create index ap_quonumber_key on ap (quonumber);
  954. --
  955. create index ar_id_key on ar (id);
  956. create index ar_transdate_key on ar (transdate);
  957. create index ar_invnumber_key on ar (invnumber);
  958. create index ar_ordnumber_key on ar (ordnumber);
  959. create index ar_quonumber_key on ar (quonumber);
  960. --
  961. create index assembly_id_key on assembly (id);
  962. --
  963. create index chart_id_key on chart (id);
  964. create unique index chart_accno_key on chart (accno);
  965. create index chart_category_key on chart (category);
  966. create index chart_link_key on chart (link);
  967. create index chart_gifi_accno_key on chart (gifi_accno);
  968. --
  969. create index customer_customer_id_key on customertax (customer_id);
  970. --
  971. create index exchangerate_ct_key on exchangerate (curr, transdate);
  972. --
  973. create unique index gifi_accno_key on gifi (accno);
  974. --
  975. create index gl_id_key on gl (id);
  976. create index gl_transdate_key on gl (transdate);
  977. create index gl_reference_key on gl (reference);
  978. create index gl_description_key on gl (lower(description));
  979. --
  980. create index invoice_id_key on invoice (id);
  981. create index invoice_trans_id_key on invoice (trans_id);
  982. --
  983. create index makemodel_parts_id_key on makemodel (parts_id);
  984. create index makemodel_make_key on makemodel (lower(make));
  985. create index makemodel_model_key on makemodel (lower(model));
  986. --
  987. create index oe_id_key on oe (id);
  988. create index oe_transdate_key on oe (transdate);
  989. create index oe_ordnumber_key on oe (ordnumber);
  990. create index orderitems_trans_id_key on orderitems (trans_id);
  991. create index orderitems_id_key on orderitems (id);
  992. --
  993. create index parts_id_key on parts (id);
  994. create index parts_partnumber_key on parts (lower(partnumber));
  995. create index parts_description_key on parts (lower(description));
  996. create index partstax_parts_id_key on partstax (parts_id);
  997. --
  998. --
  999. create index shipto_trans_id_key on shipto (trans_id);
  1000. --
  1001. create index project_id_key on project (id);
  1002. create unique index projectnumber_key on project (projectnumber);
  1003. --
  1004. create index partsgroup_id_key on partsgroup (id);
  1005. create unique index partsgroup_key on partsgroup (partsgroup);
  1006. --
  1007. create index status_trans_id_key on status (trans_id);
  1008. --
  1009. create index department_id_key on department (id);
  1010. --
  1011. create index partsvendor_parts_id_key on partsvendor (parts_id);
  1012. --
  1013. create index pricegroup_pricegroup_key on pricegroup (pricegroup);
  1014. create index pricegroup_id_key on pricegroup (id);
  1015. --
  1016. create index audittrail_trans_id_key on audittrail (trans_id);
  1017. --
  1018. create index translation_trans_id_key on translation (trans_id);
  1019. --
  1020. create unique index language_code_key on language (code);
  1021. --
  1022. create index jcitems_id_key on jcitems (id);
  1023. -- Popular some entity data
  1024. INSERT INTO country(short_name,name) VALUES ('AC','Ascension Island');
  1025. INSERT INTO country(short_name,name) VALUES ('AD','Andorra');
  1026. INSERT INTO country(short_name,name) VALUES ('AE','United Arab Emirates');
  1027. INSERT INTO country(short_name,name) VALUES ('AF','Afghanistan');
  1028. INSERT INTO country(short_name,name) VALUES ('AG','Antigua and Barbuda');
  1029. INSERT INTO country(short_name,name) VALUES ('AI','Anguilla');
  1030. INSERT INTO country(short_name,name) VALUES ('AL','Albania');
  1031. INSERT INTO country(short_name,name) VALUES ('AM','Armenia');
  1032. INSERT INTO country(short_name,name) VALUES ('AN','Netherlands Antilles');
  1033. INSERT INTO country(short_name,name) VALUES ('AO','Angola');
  1034. INSERT INTO country(short_name,name) VALUES ('AQ','Antarctica');
  1035. INSERT INTO country(short_name,name) VALUES ('AR','Argentina');
  1036. INSERT INTO country(short_name,name) VALUES ('AS','American Samoa');
  1037. INSERT INTO country(short_name,name) VALUES ('AT','Austria');
  1038. INSERT INTO country(short_name,name) VALUES ('AU','Australia');
  1039. INSERT INTO country(short_name,name) VALUES ('AW','Aruba');
  1040. INSERT INTO country(short_name,name) VALUES ('AX','Aland Islands');
  1041. INSERT INTO country(short_name,name) VALUES ('AZ','Azerbaijan');
  1042. INSERT INTO country(short_name,name) VALUES ('BA','Bosnia and Herzegovina');
  1043. INSERT INTO country(short_name,name) VALUES ('BB','Barbados');
  1044. INSERT INTO country(short_name,name) VALUES ('BD','Bangladesh');
  1045. INSERT INTO country(short_name,name) VALUES ('BE','Belgium');
  1046. INSERT INTO country(short_name,name) VALUES ('BF','Burkina Faso');
  1047. INSERT INTO country(short_name,name) VALUES ('BG','Bulgaria');
  1048. INSERT INTO country(short_name,name) VALUES ('BH','Bahrain');
  1049. INSERT INTO country(short_name,name) VALUES ('BI','Burundi');
  1050. INSERT INTO country(short_name,name) VALUES ('BJ','Benin');
  1051. INSERT INTO country(short_name,name) VALUES ('BM','Bermuda');
  1052. INSERT INTO country(short_name,name) VALUES ('BN','Brunei Darussalam');
  1053. INSERT INTO country(short_name,name) VALUES ('BO','Bolivia');
  1054. INSERT INTO country(short_name,name) VALUES ('BR','Brazil');
  1055. INSERT INTO country(short_name,name) VALUES ('BS','Bahamas');
  1056. INSERT INTO country(short_name,name) VALUES ('BT','Bhutan');
  1057. INSERT INTO country(short_name,name) VALUES ('BV','Bouvet Island');
  1058. INSERT INTO country(short_name,name) VALUES ('BW','Botswana');
  1059. INSERT INTO country(short_name,name) VALUES ('BY','Belarus');
  1060. INSERT INTO country(short_name,name) VALUES ('BZ','Belize');
  1061. INSERT INTO country(short_name,name) VALUES ('CA','Canada');
  1062. INSERT INTO country(short_name,name) VALUES ('CC','Cocos (Keeling) Islands');
  1063. INSERT INTO country(short_name,name) VALUES ('CD','Congo, Democratic Republic');
  1064. INSERT INTO country(short_name,name) VALUES ('CF','Central African Republic');
  1065. INSERT INTO country(short_name,name) VALUES ('CG','Congo');
  1066. INSERT INTO country(short_name,name) VALUES ('CH','Switzerland');
  1067. INSERT INTO country(short_name,name) VALUES ('CI','Cote D\'Ivoire (Ivory Coast)');
  1068. INSERT INTO country(short_name,name) VALUES ('CK','Cook Islands');
  1069. INSERT INTO country(short_name,name) VALUES ('CL','Chile');
  1070. INSERT INTO country(short_name,name) VALUES ('CM','Cameroon');
  1071. INSERT INTO country(short_name,name) VALUES ('CN','China');
  1072. INSERT INTO country(short_name,name) VALUES ('CO','Colombia');
  1073. INSERT INTO country(short_name,name) VALUES ('CR','Costa Rica');
  1074. INSERT INTO country(short_name,name) VALUES ('CS','Czechoslovakia (former)');
  1075. INSERT INTO country(short_name,name) VALUES ('CU','Cuba');
  1076. INSERT INTO country(short_name,name) VALUES ('CV','Cape Verde');
  1077. INSERT INTO country(short_name,name) VALUES ('CX','Christmas Island');
  1078. INSERT INTO country(short_name,name) VALUES ('CY','Cyprus');
  1079. INSERT INTO country(short_name,name) VALUES ('CZ','Czech Republic');
  1080. INSERT INTO country(short_name,name) VALUES ('DE','Germany');
  1081. INSERT INTO country(short_name,name) VALUES ('DJ','Djibouti');
  1082. INSERT INTO country(short_name,name) VALUES ('DK','Denmark');
  1083. INSERT INTO country(short_name,name) VALUES ('DM','Dominica');
  1084. INSERT INTO country(short_name,name) VALUES ('DO','Dominican Republic');
  1085. INSERT INTO country(short_name,name) VALUES ('DZ','Algeria');
  1086. INSERT INTO country(short_name,name) VALUES ('EC','Ecuador');
  1087. INSERT INTO country(short_name,name) VALUES ('EE','Estonia');
  1088. INSERT INTO country(short_name,name) VALUES ('EG','Egypt');
  1089. INSERT INTO country(short_name,name) VALUES ('EH','Western Sahara');
  1090. INSERT INTO country(short_name,name) VALUES ('ER','Eritrea');
  1091. INSERT INTO country(short_name,name) VALUES ('ES','Spain');
  1092. INSERT INTO country(short_name,name) VALUES ('ET','Ethiopia');
  1093. INSERT INTO country(short_name,name) VALUES ('FI','Finland');
  1094. INSERT INTO country(short_name,name) VALUES ('FJ','Fiji');
  1095. INSERT INTO country(short_name,name) VALUES ('FK','Falkland Islands (Malvinas)');
  1096. INSERT INTO country(short_name,name) VALUES ('FM','Micronesia');
  1097. INSERT INTO country(short_name,name) VALUES ('FO','Faroe Islands');
  1098. INSERT INTO country(short_name,name) VALUES ('FR','France');
  1099. INSERT INTO country(short_name,name) VALUES ('FX','France, Metropolitan');
  1100. INSERT INTO country(short_name,name) VALUES ('GA','Gabon');
  1101. INSERT INTO country(short_name,name) VALUES ('GB','Great Britain (UK)');
  1102. INSERT INTO country(short_name,name) VALUES ('GD','Grenada');
  1103. INSERT INTO country(short_name,name) VALUES ('GE','Georgia');
  1104. INSERT INTO country(short_name,name) VALUES ('GF','French Guiana');
  1105. INSERT INTO country(short_name,name) VALUES ('GH','Ghana');
  1106. INSERT INTO country(short_name,name) VALUES ('GI','Gibraltar');
  1107. INSERT INTO country(short_name,name) VALUES ('GL','Greenland');
  1108. INSERT INTO country(short_name,name) VALUES ('GM','Gambia');
  1109. INSERT INTO country(short_name,name) VALUES ('GN','Guinea');
  1110. INSERT INTO country(short_name,name) VALUES ('GP','Guadeloupe');
  1111. INSERT INTO country(short_name,name) VALUES ('GQ','Equatorial Guinea');
  1112. INSERT INTO country(short_name,name) VALUES ('GR','Greece');
  1113. INSERT INTO country(short_name,name) VALUES ('GS','S. Georgia and S. Sandwich Isls.');
  1114. INSERT INTO country(short_name,name) VALUES ('GT','Guatemala');
  1115. INSERT INTO country(short_name,name) VALUES ('GU','Guam');
  1116. INSERT INTO country(short_name,name) VALUES ('GW','Guinea-Bissau');
  1117. INSERT INTO country(short_name,name) VALUES ('GY','Guyana');
  1118. INSERT INTO country(short_name,name) VALUES ('HK','Hong Kong');
  1119. INSERT INTO country(short_name,name) VALUES ('HM','Heard and McDonald Islands');
  1120. INSERT INTO country(short_name,name) VALUES ('HN','Honduras');
  1121. INSERT INTO country(short_name,name) VALUES ('HR','Croatia (Hrvatska)');
  1122. INSERT INTO country(short_name,name) VALUES ('HT','Haiti');
  1123. INSERT INTO country(short_name,name) VALUES ('HU','Hungary');
  1124. INSERT INTO country(short_name,name) VALUES ('ID','Indonesia');
  1125. INSERT INTO country(short_name,name) VALUES ('IE','Ireland');
  1126. INSERT INTO country(short_name,name) VALUES ('IL','Israel');
  1127. INSERT INTO country(short_name,name) VALUES ('IM','Isle of Man');
  1128. INSERT INTO country(short_name,name) VALUES ('IN','India');
  1129. INSERT INTO country(short_name,name) VALUES ('IO','British Indian Ocean Territory');
  1130. INSERT INTO country(short_name,name) VALUES ('IQ','Iraq');
  1131. INSERT INTO country(short_name,name) VALUES ('IR','Iran');
  1132. INSERT INTO country(short_name,name) VALUES ('IS','Iceland');
  1133. INSERT INTO country(short_name,name) VALUES ('IT','Italy');
  1134. INSERT INTO country(short_name,name) VALUES ('JE','Jersey');
  1135. INSERT INTO country(short_name,name) VALUES ('JM','Jamaica');
  1136. INSERT INTO country(short_name,name) VALUES ('JO','Jordan');
  1137. INSERT INTO country(short_name,name) VALUES ('JP','Japan');
  1138. INSERT INTO country(short_name,name) VALUES ('KE','Kenya');
  1139. INSERT INTO country(short_name,name) VALUES ('KG','Kyrgyzstan');
  1140. INSERT INTO country(short_name,name) VALUES ('KH','Cambodia');
  1141. INSERT INTO country(short_name,name) VALUES ('KI','Kiribati');
  1142. INSERT INTO country(short_name,name) VALUES ('KM','Comoros');
  1143. INSERT INTO country(short_name,name) VALUES ('KN','Saint Kitts and Nevis');
  1144. INSERT INTO country(short_name,name) VALUES ('KP','Korea (North)');
  1145. INSERT INTO country(short_name,name) VALUES ('KR','Korea (South)');
  1146. INSERT INTO country(short_name,name) VALUES ('KW','Kuwait');
  1147. INSERT INTO country(short_name,name) VALUES ('KY','Cayman Islands');
  1148. INSERT INTO country(short_name,name) VALUES ('KZ','Kazakhstan');
  1149. INSERT INTO country(short_name,name) VALUES ('LA','Laos');
  1150. INSERT INTO country(short_name,name) VALUES ('LB','Lebanon');
  1151. INSERT INTO country(short_name,name) VALUES ('LC','Saint Lucia');
  1152. INSERT INTO country(short_name,name) VALUES ('LI','Liechtenstein');
  1153. INSERT INTO country(short_name,name) VALUES ('LK','Sri Lanka');
  1154. INSERT INTO country(short_name,name) VALUES ('LR','Liberia');
  1155. INSERT INTO country(short_name,name) VALUES ('LS','Lesotho');
  1156. INSERT INTO country(short_name,name) VALUES ('LT','Lithuania');
  1157. INSERT INTO country(short_name,name) VALUES ('LU','Luxembourg');
  1158. INSERT INTO country(short_name,name) VALUES ('LV','Latvia');
  1159. INSERT INTO country(short_name,name) VALUES ('LY','Libya');
  1160. INSERT INTO country(short_name,name) VALUES ('MA','Morocco');
  1161. INSERT INTO country(short_name,name) VALUES ('MC','Monaco');
  1162. INSERT INTO country(short_name,name) VALUES ('MD','Moldova');
  1163. INSERT INTO country(short_name,name) VALUES ('MG','Madagascar');
  1164. INSERT INTO country(short_name,name) VALUES ('MH','Marshall Islands');
  1165. INSERT INTO country(short_name,name) VALUES ('MK','F.Y.R.O.M. (Macedonia)');
  1166. INSERT INTO country(short_name,name) VALUES ('ML','Mali');
  1167. INSERT INTO country(short_name,name) VALUES ('MM','Myanmar');
  1168. INSERT INTO country(short_name,name) VALUES ('MN','Mongolia');
  1169. INSERT INTO country(short_name,name) VALUES ('MO','Macau');
  1170. INSERT INTO country(short_name,name) VALUES ('MP','Northern Mariana Islands');
  1171. INSERT INTO country(short_name,name) VALUES ('MQ','Martinique');
  1172. INSERT INTO country(short_name,name) VALUES ('MR','Mauritania');
  1173. INSERT INTO country(short_name,name) VALUES ('MS','Montserrat');
  1174. INSERT INTO country(short_name,name) VALUES ('MT','Malta');
  1175. INSERT INTO country(short_name,name) VALUES ('MU','Mauritius');
  1176. INSERT INTO country(short_name,name) VALUES ('MV','Maldives');
  1177. INSERT INTO country(short_name,name) VALUES ('MW','Malawi');
  1178. INSERT INTO country(short_name,name) VALUES ('MX','Mexico');
  1179. INSERT INTO country(short_name,name) VALUES ('MY','Malaysia');
  1180. INSERT INTO country(short_name,name) VALUES ('MZ','Mozambique');
  1181. INSERT INTO country(short_name,name) VALUES ('NA','Namibia');
  1182. INSERT INTO country(short_name,name) VALUES ('NC','New Caledonia');
  1183. INSERT INTO country(short_name,name) VALUES ('NE','Niger');
  1184. INSERT INTO country(short_name,name) VALUES ('NF','Norfolk Island');
  1185. INSERT INTO country(short_name,name) VALUES ('NG','Nigeria');
  1186. INSERT INTO country(short_name,name) VALUES ('NI','Nicaragua');
  1187. INSERT INTO country(short_name,name) VALUES ('NL','Netherlands');
  1188. INSERT INTO country(short_name,name) VALUES ('NO','Norway');
  1189. INSERT INTO country(short_name,name) VALUES ('NP','Nepal');
  1190. INSERT INTO country(short_name,name) VALUES ('NR','Nauru');
  1191. INSERT INTO country(short_name,name) VALUES ('NT','Neutral Zone');
  1192. INSERT INTO country(short_name,name) VALUES ('NU','Niue');
  1193. INSERT INTO country(short_name,name) VALUES ('NZ','New Zealand (Aotearoa)');
  1194. INSERT INTO country(short_name,name) VALUES ('OM','Oman');
  1195. INSERT INTO country(short_name,name) VALUES ('PA','Panama');
  1196. INSERT INTO country(short_name,name) VALUES ('PE','Peru');
  1197. INSERT INTO country(short_name,name) VALUES ('PF','French Polynesia');
  1198. INSERT INTO country(short_name,name) VALUES ('PG','Papua New Guinea');
  1199. INSERT INTO country(short_name,name) VALUES ('PH','Philippines');
  1200. INSERT INTO country(short_name,name) VALUES ('PK','Pakistan');
  1201. INSERT INTO country(short_name,name) VALUES ('PL','Poland');
  1202. INSERT INTO country(short_name,name) VALUES ('PM','St. Pierre and Miquelon');
  1203. INSERT INTO country(short_name,name) VALUES ('PN','Pitcairn');
  1204. INSERT INTO country(short_name,name) VALUES ('PR','Puerto Rico');
  1205. INSERT INTO country(short_name,name) VALUES ('PS','Palestinian Territory, Occupied');
  1206. INSERT INTO country(short_name,name) VALUES ('PT','Portugal');
  1207. INSERT INTO country(short_name,name) VALUES ('PW','Palau');
  1208. INSERT INTO country(short_name,name) VALUES ('PY','Paraguay');
  1209. INSERT INTO country(short_name,name) VALUES ('QA','Qatar');
  1210. INSERT INTO country(short_name,name) VALUES ('RE','Reunion');
  1211. INSERT INTO country(short_name,name) VALUES ('RO','Romania');
  1212. INSERT INTO country(short_name,name) VALUES ('RS','Serbia');
  1213. INSERT INTO country(short_name,name) VALUES ('RU','Russian Federation');
  1214. INSERT INTO country(short_name,name) VALUES ('RW','Rwanda');
  1215. INSERT INTO country(short_name,name) VALUES ('SA','Saudi Arabia');
  1216. INSERT INTO country(short_name,name) VALUES ('SB','Solomon Islands');
  1217. INSERT INTO country(short_name,name) VALUES ('SC','Seychelles');
  1218. INSERT INTO country(short_name,name) VALUES ('SD','Sudan');
  1219. INSERT INTO country(short_name,name) VALUES ('SE','Sweden');
  1220. INSERT INTO country(short_name,name) VALUES ('SG','Singapore');
  1221. INSERT INTO country(short_name,name) VALUES ('SH','St. Helena');
  1222. INSERT INTO country(short_name,name) VALUES ('SI','Slovenia');
  1223. INSERT INTO country(short_name,name) VALUES ('SJ','Svalbard & Jan Mayen Islands');
  1224. INSERT INTO country(short_name,name) VALUES ('SK','Slovak Republic');
  1225. INSERT INTO country(short_name,name) VALUES ('SL','Sierra Leone');
  1226. INSERT INTO country(short_name,name) VALUES ('SM','San Marino');
  1227. INSERT INTO country(short_name,name) VALUES ('SN','Senegal');
  1228. INSERT INTO country(short_name,name) VALUES ('SO','Somalia');
  1229. INSERT INTO country(short_name,name) VALUES ('SR','Suriname');
  1230. INSERT INTO country(short_name,name) VALUES ('ST','Sao Tome and Principe');
  1231. INSERT INTO country(short_name,name) VALUES ('SU','USSR (former)');
  1232. INSERT INTO country(short_name,name) VALUES ('SV','El Salvador');
  1233. INSERT INTO country(short_name,name) VALUES ('SY','Syria');
  1234. INSERT INTO country(short_name,name) VALUES ('SZ','Swaziland');
  1235. INSERT INTO country(short_name,name) VALUES ('TC','Turks and Caicos Islands');
  1236. INSERT INTO country(short_name,name) VALUES ('TD','Chad');
  1237. INSERT INTO country(short_name,name) VALUES ('TF','French Southern Territories');
  1238. INSERT INTO country(short_name,name) VALUES ('TG','Togo');
  1239. INSERT INTO country(short_name,name) VALUES ('TH','Thailand');
  1240. INSERT INTO country(short_name,name) VALUES ('TJ','Tajikistan');
  1241. INSERT INTO country(short_name,name) VALUES ('TK','Tokelau');
  1242. INSERT INTO country(short_name,name) VALUES ('TM','Turkmenistan');
  1243. INSERT INTO country(short_name,name) VALUES ('TN','Tunisia');
  1244. INSERT INTO country(short_name,name) VALUES ('TO','Tonga');
  1245. INSERT INTO country(short_name,name) VALUES ('TP','East Timor');
  1246. INSERT INTO country(short_name,name) VALUES ('TR','Turkey');
  1247. INSERT INTO country(short_name,name) VALUES ('TT','Trinidad and Tobago');
  1248. INSERT INTO country(short_name,name) VALUES ('TV','Tuvalu');
  1249. INSERT INTO country(short_name,name) VALUES ('TW','Taiwan');
  1250. INSERT INTO country(short_name,name) VALUES ('TZ','Tanzania');
  1251. INSERT INTO country(short_name,name) VALUES ('UA','Ukraine');
  1252. INSERT INTO country(short_name,name) VALUES ('UG','Uganda');
  1253. INSERT INTO country(short_name,name) VALUES ('UK','United Kingdom');
  1254. INSERT INTO country(short_name,name) VALUES ('UM','US Minor Outlying Islands');
  1255. INSERT INTO country(short_name,name) VALUES ('US','United States');
  1256. INSERT INTO country(short_name,name) VALUES ('UY','Uruguay');
  1257. INSERT INTO country(short_name,name) VALUES ('UZ','Uzbekistan');
  1258. INSERT INTO country(short_name,name) VALUES ('VA','Vatican City State (Holy See)');
  1259. INSERT INTO country(short_name,name) VALUES ('VC','Saint Vincent & the Grenadines');
  1260. INSERT INTO country(short_name,name) VALUES ('VE','Venezuela');
  1261. INSERT INTO country(short_name,name) VALUES ('VG','British Virgin Islands');
  1262. INSERT INTO country(short_name,name) VALUES ('VI','Virgin Islands (U.S.)');
  1263. INSERT INTO country(short_name,name) VALUES ('VN','Viet Nam');
  1264. INSERT INTO country(short_name,name) VALUES ('VU','Vanuatu');
  1265. INSERT INTO country(short_name,name) VALUES ('WF','Wallis and Futuna Islands');
  1266. INSERT INTO country(short_name,name) VALUES ('WS','Samoa');
  1267. INSERT INTO country(short_name,name) VALUES ('YE','Yemen');
  1268. INSERT INTO country(short_name,name) VALUES ('YT','Mayotte');
  1269. INSERT INTO country(short_name,name) VALUES ('YU','Yugoslavia (former)');
  1270. INSERT INTO country(short_name,name) VALUES ('ZA','South Africa');
  1271. INSERT INTO country(short_name,name) VALUES ('ZM','Zambia');
  1272. INSERT INTO country(short_name,name) VALUES ('ZR','Zaire');
  1273. INSERT INTO country(short_name,name) VALUES ('ZW','Zimbabwe');
  1274. --
  1275. CREATE FUNCTION del_yearend() RETURNS TRIGGER AS '
  1276. begin
  1277. delete from yearend where trans_id = old.id;
  1278. return NULL;
  1279. end;
  1280. ' language 'plpgsql';
  1281. -- end function
  1282. --
  1283. CREATE TRIGGER del_yearend AFTER DELETE ON gl FOR EACH ROW EXECUTE PROCEDURE del_yearend();
  1284. -- end trigger
  1285. --
  1286. CREATE FUNCTION del_department() RETURNS TRIGGER AS '
  1287. begin
  1288. delete from dpt_trans where trans_id = old.id;
  1289. return NULL;
  1290. end;
  1291. ' language 'plpgsql';
  1292. -- end function
  1293. --
  1294. CREATE TRIGGER del_department AFTER DELETE ON ar FOR EACH ROW EXECUTE PROCEDURE del_department();
  1295. -- end trigger
  1296. CREATE TRIGGER del_department AFTER DELETE ON ap FOR EACH ROW EXECUTE PROCEDURE del_department();
  1297. -- end trigger
  1298. CREATE TRIGGER del_department AFTER DELETE ON gl FOR EACH ROW EXECUTE PROCEDURE del_department();
  1299. -- end trigger
  1300. CREATE TRIGGER del_department AFTER DELETE ON oe FOR EACH ROW EXECUTE PROCEDURE del_department();
  1301. -- end trigger
  1302. --
  1303. CREATE FUNCTION del_exchangerate() RETURNS TRIGGER AS '
  1304. declare
  1305. t_transdate date;
  1306. t_curr char(3);
  1307. t_id int;
  1308. d_curr text;
  1309. begin
  1310. select into d_curr substr(value,1,3) from defaults where setting_key = ''curr'';
  1311. if TG_RELNAME = ''ar'' then
  1312. select into t_curr, t_transdate curr, transdate from ar where id = old.id;
  1313. end if;
  1314. if TG_RELNAME = ''ap'' then
  1315. select into t_curr, t_transdate curr, transdate from ap where id = old.id;
  1316. end if;
  1317. if TG_RELNAME = ''oe'' then
  1318. select into t_curr, t_transdate curr, transdate from oe where id = old.id;
  1319. end if;
  1320. if d_curr != t_curr then
  1321. select into t_id a.id from acc_trans ac
  1322. join ar a on (a.id = ac.trans_id)
  1323. where a.curr = t_curr
  1324. and ac.transdate = t_transdate
  1325. except select a.id from ar a where a.id = old.id
  1326. union
  1327. select a.id from acc_trans ac
  1328. join ap a on (a.id = ac.trans_id)
  1329. where a.curr = t_curr
  1330. and ac.transdate = t_transdate
  1331. except select a.id from ap a where a.id = old.id
  1332. union
  1333. select o.id from oe o
  1334. where o.curr = t_curr
  1335. and o.transdate = t_transdate
  1336. except select o.id from oe o where o.id = old.id;
  1337. if not found then
  1338. delete from exchangerate where curr = t_curr and transdate = t_transdate;
  1339. end if;
  1340. end if;
  1341. return old;
  1342. end;
  1343. ' language 'plpgsql';
  1344. -- end function
  1345. --
  1346. CREATE TRIGGER del_exchangerate BEFORE DELETE ON ar FOR EACH ROW EXECUTE PROCEDURE del_exchangerate();
  1347. -- end trigger
  1348. --
  1349. CREATE TRIGGER del_exchangerate BEFORE DELETE ON ap FOR EACH ROW EXECUTE PROCEDURE del_exchangerate();
  1350. -- end trigger
  1351. --
  1352. CREATE TRIGGER del_exchangerate BEFORE DELETE ON oe FOR EACH ROW EXECUTE PROCEDURE del_exchangerate();
  1353. -- end trigger
  1354. --
  1355. CREATE FUNCTION check_inventory() RETURNS TRIGGER AS '
  1356. declare
  1357. itemid int;
  1358. row_data inventory%rowtype;
  1359. begin
  1360. if not old.quotation then
  1361. for row_data in select * from inventory where trans_id = old.id loop
  1362. select into itemid id from orderitems where trans_id = old.id and id = row_data.orderitems_id;
  1363. if itemid is null then
  1364. delete from inventory where trans_id = old.id and orderitems_id = row_data.orderitems_id;
  1365. end if;
  1366. end loop;
  1367. end if;
  1368. return old;
  1369. end;
  1370. ' language 'plpgsql';
  1371. -- end function
  1372. --
  1373. CREATE TRIGGER check_inventory AFTER UPDATE ON oe FOR EACH ROW EXECUTE PROCEDURE check_inventory();
  1374. -- end trigger
  1375. --
  1376. --
  1377. CREATE FUNCTION check_department() RETURNS TRIGGER AS '
  1378. declare
  1379. dpt_id int;
  1380. begin
  1381. if new.department_id = 0 then
  1382. delete from dpt_trans where trans_id = new.id;
  1383. return NULL;
  1384. end if;
  1385. select into dpt_id trans_id from dpt_trans where trans_id = new.id;
  1386. if dpt_id > 0 then
  1387. update dpt_trans set department_id = new.department_id where trans_id = dpt_id;
  1388. else
  1389. insert into dpt_trans (trans_id, department_id) values (new.id, new.department_id);
  1390. end if;
  1391. return NULL;
  1392. end;
  1393. ' language 'plpgsql';
  1394. -- end function
  1395. --
  1396. CREATE TRIGGER check_department AFTER INSERT OR UPDATE ON ar FOR EACH ROW EXECUTE PROCEDURE check_department();
  1397. -- end trigger
  1398. CREATE TRIGGER check_department AFTER INSERT OR UPDATE ON ap FOR EACH ROW EXECUTE PROCEDURE check_department();
  1399. -- end trigger
  1400. CREATE TRIGGER check_department AFTER INSERT OR UPDATE ON gl FOR EACH ROW EXECUTE PROCEDURE check_department();
  1401. -- end trigger
  1402. CREATE TRIGGER check_department AFTER INSERT OR UPDATE ON oe FOR EACH ROW EXECUTE PROCEDURE check_department();
  1403. -- end trigger
  1404. --
  1405. CREATE FUNCTION del_recurring() RETURNS TRIGGER AS '
  1406. BEGIN
  1407. DELETE FROM recurring WHERE id = old.id;
  1408. DELETE FROM recurringemail WHERE id = old.id;
  1409. DELETE FROM recurringprint WHERE id = old.id;
  1410. RETURN NULL;
  1411. END;
  1412. ' language 'plpgsql';
  1413. --end function
  1414. CREATE TRIGGER del_recurring AFTER DELETE ON ar FOR EACH ROW EXECUTE PROCEDURE del_recurring();
  1415. -- end trigger
  1416. CREATE TRIGGER del_recurring AFTER DELETE ON ap FOR EACH ROW EXECUTE PROCEDURE del_recurring();
  1417. -- end trigger
  1418. CREATE TRIGGER del_recurring AFTER DELETE ON gl FOR EACH ROW EXECUTE PROCEDURE del_recurring();
  1419. -- end trigger
  1420. --
  1421. CREATE FUNCTION avgcost(int) RETURNS FLOAT AS '
  1422. DECLARE
  1423. v_cost float;
  1424. v_qty float;
  1425. v_parts_id alias for $1;
  1426. BEGIN
  1427. SELECT INTO v_cost, v_qty SUM(i.sellprice * i.qty), SUM(i.qty)
  1428. FROM invoice i
  1429. JOIN ap a ON (a.id = i.trans_id)
  1430. WHERE i.parts_id = v_parts_id;
  1431. IF v_cost IS NULL THEN
  1432. v_cost := 0;
  1433. END IF;
  1434. IF NOT v_qty IS NULL THEN
  1435. IF v_qty = 0 THEN
  1436. v_cost := 0;
  1437. ELSE
  1438. v_cost := v_cost/v_qty;
  1439. END IF;
  1440. END IF;
  1441. RETURN v_cost;
  1442. END;
  1443. ' language 'plpgsql';
  1444. -- end function
  1445. --
  1446. CREATE FUNCTION lastcost(int) RETURNS FLOAT AS '
  1447. DECLARE
  1448. v_cost float;
  1449. v_parts_id alias for $1;
  1450. BEGIN
  1451. SELECT INTO v_cost sellprice FROM invoice i
  1452. JOIN ap a ON (a.id = i.trans_id)
  1453. WHERE i.parts_id = v_parts_id
  1454. ORDER BY a.transdate desc, a.id desc
  1455. LIMIT 1;
  1456. IF v_cost IS NULL THEN
  1457. v_cost := 0;
  1458. END IF;
  1459. RETURN v_cost;
  1460. END;
  1461. ' language plpgsql;
  1462. -- end function
  1463. --
  1464. CREATE OR REPLACE FUNCTION trigger_parts_short() RETURNS TRIGGER
  1465. AS
  1466. '
  1467. BEGIN
  1468. IF NEW.onhand >= NEW.rop THEN
  1469. NOTIFY parts_short;
  1470. END IF;
  1471. RETURN NEW;
  1472. END;
  1473. ' LANGUAGE PLPGSQL;
  1474. -- end function
  1475. CREATE TRIGGER parts_short AFTER UPDATE ON parts
  1476. FOR EACH ROW EXECUTE PROCEDURE trigger_parts_short();
  1477. -- end function
  1478. CREATE OR REPLACE FUNCTION add_custom_field (VARCHAR, VARCHAR, VARCHAR)
  1479. RETURNS BOOL AS
  1480. '
  1481. DECLARE
  1482. table_name ALIAS FOR $1;
  1483. new_field_name ALIAS FOR $2;
  1484. field_datatype ALIAS FOR $3;
  1485. BEGIN
  1486. EXECUTE ''SELECT TABLE_ID FROM custom_table_catalog
  1487. WHERE extends = '''''' || table_name || '''''' '';
  1488. IF NOT FOUND THEN
  1489. BEGIN
  1490. INSERT INTO custom_table_catalog (extends)
  1491. VALUES (table_name);
  1492. EXECUTE ''CREATE TABLE custom_''||table_name ||
  1493. '' (row_id INT PRIMARY KEY)'';
  1494. EXCEPTION WHEN duplicate_table THEN
  1495. -- do nothing
  1496. END;
  1497. END IF;
  1498. EXECUTE ''INSERT INTO custom_field_catalog (field_name, table_id)
  1499. VALUES ( '''''' || new_field_name ||'''''', (SELECT table_id FROM custom_table_catalog
  1500. WHERE extends = ''''''|| table_name || ''''''))'';
  1501. EXECUTE ''ALTER TABLE custom_''||table_name || '' ADD COLUMN ''
  1502. || new_field_name || '' '' || field_datatype;
  1503. RETURN TRUE;
  1504. END;
  1505. ' LANGUAGE PLPGSQL;
  1506. -- end function
  1507. CREATE OR REPLACE FUNCTION drop_custom_field (VARCHAR, VARCHAR)
  1508. RETURNS BOOL AS
  1509. '
  1510. DECLARE
  1511. table_name ALIAS FOR $1;
  1512. custom_field_name ALIAS FOR $2;
  1513. BEGIN
  1514. DELETE FROM custom_field_catalog
  1515. WHERE field_name = custom_field_name AND
  1516. table_id = (SELECT table_id FROM custom_table_catalog
  1517. WHERE extends = table_name);
  1518. EXECUTE ''ALTER TABLE custom_'' || table_name ||
  1519. '' DROP COLUMN '' || custom_field_name;
  1520. RETURN TRUE;
  1521. END;
  1522. ' LANGUAGE PLPGSQL;
  1523. -- end function
  1524. CREATE TABLE menu_node (
  1525. id serial NOT NULL,
  1526. label character varying NOT NULL,
  1527. parent integer,
  1528. "position" integer NOT NULL
  1529. );
  1530. --ALTER TABLE public.menu_node OWNER TO ledgersmb;
  1531. --
  1532. -- Name: menu_node_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ledgersmb
  1533. --
  1534. SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('menu_node', 'id'), 193, true);
  1535. --
  1536. -- Data for Name: menu_node; Type: TABLE DATA; Schema: public; Owner: ledgersmb
  1537. --
  1538. COPY menu_node (id, label, parent, "position") FROM stdin;
  1539. 0 Top-level \N 0
  1540. 1 AR 0 1
  1541. 2 Add Transaction 1 1
  1542. 3 Sales Invoice 1 2
  1543. 5 Transactions 4 1
  1544. 6 Outstanding 4 2
  1545. 7 AR Aging 4 3
  1546. 9 Taxable Sales 4 4
  1547. 10 Non-Taxable 4 5
  1548. 12 Add Customer 11 1
  1549. 13 Reports 11 2
  1550. 14 Search 13 1
  1551. 15 History 13 2
  1552. 16 Point of Sale 0 2
  1553. 17 Sale 16 1
  1554. 18 Open 16 2
  1555. 19 Receipts 16 3
  1556. 20 Close Till 16 4
  1557. 21 AP 0 3
  1558. 22 Add Transaction 21 1
  1559. 23 Vendor Invoice 21 2
  1560. 25 Transactions 24 1
  1561. 26 Outstanding 24 2
  1562. 27 AP Aging 24 3
  1563. 28 Taxable 24 4
  1564. 29 Non-taxable 24 5
  1565. 31 Add Vendor 30 1
  1566. 32 Reports 30 2
  1567. 33 Search 32 1
  1568. 34 History 32 2
  1569. 35 Cash 0 4
  1570. 36 Receipt 35 1
  1571. 38 Payment 35 3
  1572. 37 Receipts 35 2
  1573. 39 Payments 35 4
  1574. 40 Transfer 35 5
  1575. 42 Receipts 41 1
  1576. 43 Payments 41 2
  1577. 44 Reconciliation 41 3
  1578. 41 Reports 35 7
  1579. 45 Reconciliation 35 6
  1580. 46 HR 0 5
  1581. 47 Employees 46 1
  1582. 48 Add Employee 47 1
  1583. 49 Search 47 2
  1584. 50 Order Entry 0 6
  1585. 51 Sales Order 50 1
  1586. 52 Purchase Order 50 2
  1587. 53 Reports 50 3
  1588. 54 Sales Orders 53 1
  1589. 55 Purchase Orders 53 2
  1590. 57 Sales Orders 56 1
  1591. 58 Purchase Orders 56 2
  1592. 56 Generate 50 4
  1593. 60 Consolidate 50 5
  1594. 61 Sales Orders 60 1
  1595. 62 Purchase Orders 60 2
  1596. 63 Shipping 0 7
  1597. 64 Ship 63 1
  1598. 65 Receive 63 2
  1599. 66 Transfer 63 3
  1600. 67 Quotations 0 8
  1601. 68 Quotation 67 1
  1602. 69 RFQ 67 2
  1603. 70 Reports 67 3
  1604. 71 Quotations 70 1
  1605. 72 RFQs 70 2
  1606. 73 General Journal 0 9
  1607. 74 Journal Entry 73 1
  1608. 75 Adjust Till 73 2
  1609. 76 Reports 73 3
  1610. 77 Goods and Services 0 10
  1611. 78 Add Part 77 1
  1612. 79 Add Service 77 2
  1613. 80 Add Assembly 77 3
  1614. 81 Add Overhead 77 4
  1615. 82 Add Group 77 5
  1616. 83 Add Pricegroup 77 6
  1617. 84 Stock Assembly 77 7
  1618. 85 Reports 77 8
  1619. 86 All Items 85 1
  1620. 87 Parts 85 2
  1621. 88 Requirements 85 3
  1622. 89 Services 85 4
  1623. 90 Labor 85 5
  1624. 91 Groups 85 6
  1625. 92 Pricegroups 85 7
  1626. 93 Assembly 85 8
  1627. 94 Components 85 9
  1628. 95 Translations 77 9
  1629. 96 Description 95 1
  1630. 97 Partsgroup 95 2
  1631. 98 Projects 0 11
  1632. 99 Add Project 98 1
  1633. 100 Add Timecard 98 2
  1634. 101 Generate 98 3
  1635. 102 Sales Orders 101 1
  1636. 103 Reports 98 4
  1637. 104 Search 103 1
  1638. 105 Transactions 103 2
  1639. 106 Time Cards 103 3
  1640. 107 Translations 98 5
  1641. 108 Description 107 1
  1642. 109 Reports 0 12
  1643. 110 Chart of Accounts 109 1
  1644. 111 Trial Balance 109 2
  1645. 112 Income Statement 109 3
  1646. 113 Balance Sheet 109 4
  1647. 114 Inventory Activity 109 5
  1648. 115 Recurring Transactions 0 13
  1649. 116 Batch Printing 0 14
  1650. 117 Sales Invoices 116 1
  1651. 118 Sales Orders 116 2
  1652. 119 Checks 116 3
  1653. 120 Work Orders 116 4
  1654. 121 Quotations 116 5
  1655. 122 Packing Lists 116 6
  1656. 123 Pick Lists 116 7
  1657. 124 Purchase Orders 116 8
  1658. 125 Bin Lists 116 9
  1659. 126 RFQs 116 10
  1660. 127 Time Cards 116 11
  1661. 128 System 0 15
  1662. 129 Audit Control 128 1
  1663. 130 Taxes 128 2
  1664. 131 Defaults 128 3
  1665. 132 Yearend 128 4
  1666. 133 Backup 128 5
  1667. 134 Send to File 133 1
  1668. 135 Send to Email 133 2
  1669. 136 Chart of Accounts 128 6
  1670. 137 Add Accounts 136 1
  1671. 138 List Accounts 136 2
  1672. 139 Add GIFI 136 3
  1673. 140 List GIFI 136 4
  1674. 141 Warehouses 128 7
  1675. 142 Add Warehouse 141 1
  1676. 143 List Warehouse 141 2
  1677. 144 Departments 128 8
  1678. 145 Add Department 144 1
  1679. 146 List Departments 144 2
  1680. 147 Type of Business 128 9
  1681. 148 Add Business 147 1
  1682. 149 List Businesses 147 2
  1683. 150 Language 128 10
  1684. 151 Add Language 150 1
  1685. 152 List Languages 150 2
  1686. 153 SIC 128 11
  1687. 154 Add SIC 153 1
  1688. 155 List SIC 153 2
  1689. 156 HTML Templates 128 12
  1690. 157 Income Statement 156 1
  1691. 158 Balance Sheet 156 2
  1692. 159 Invoice 156 3
  1693. 160 AR Transaction 156 4
  1694. 161 AP Transaction 156 5
  1695. 162 Packing List 156 6
  1696. 163 Pick List 156 7
  1697. 164 Sales Order 156 8
  1698. 165 Work Order 156 9
  1699. 166 Purchase Order 156 10
  1700. 167 Bin List 156 11
  1701. 168 Statement 156 12
  1702. 169 Quotation 156 13
  1703. 170 RFQ 156 14
  1704. 171 Timecard 156 15
  1705. 172 LaTeX Templates 128 13
  1706. 173 Invoice 172 1
  1707. 174 AR Transaction 172 2
  1708. 175 AP Transaction 172 3
  1709. 176 Packing List 172 4
  1710. 177 Pick List 172 5
  1711. 178 Sales Order 172 6
  1712. 179 Work Order 172 7
  1713. 180 Purchase Order 172 8
  1714. 181 Bin List 172 9
  1715. 182 Statement 172 10
  1716. 183 Check 172 11
  1717. 184 Receipt 172 12
  1718. 185 Quotation 172 13
  1719. 186 RFQ 172 14
  1720. 187 Timecard 172 15
  1721. 188 Text Templates 128 14
  1722. 189 POS Invoice 188 1
  1723. 190 Stylesheet 0 16
  1724. 191 Preferences 0 17
  1725. 192 New Window 0 18
  1726. 193 Logout 0 19
  1727. 11 Customers 1 6
  1728. 4 Reports 1 5
  1729. 194 Credit Note 1 3
  1730. 195 Credit Invoice 1 4
  1731. 24 Reports 21 5
  1732. 30 Vendors 21 6
  1733. 196 Debit Note 21 3
  1734. 197 Debit Invoice 21 4
  1735. \.
  1736. --
  1737. -- Name: menu_node_parent_key; Type: CONSTRAINT; Schema: public; Owner: ledgersmb; Tablespace:
  1738. --
  1739. ALTER TABLE ONLY menu_node
  1740. ADD CONSTRAINT menu_node_parent_key UNIQUE (parent, "position");
  1741. --
  1742. -- Name: menu_node_pkey; Type: CONSTRAINT; Schema: public; Owner: ledgersmb; Tablespace:
  1743. --
  1744. ALTER TABLE ONLY menu_node
  1745. ADD CONSTRAINT menu_node_pkey PRIMARY KEY (id);
  1746. --
  1747. -- Name: menu_node_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ledgersmb
  1748. --
  1749. ALTER TABLE ONLY menu_node
  1750. ADD CONSTRAINT menu_node_parent_fkey FOREIGN KEY (parent) REFERENCES menu_node(id);
  1751. CREATE TABLE menu_attribute (
  1752. node_id integer NOT NULL,
  1753. attribute character varying NOT NULL,
  1754. value character varying NOT NULL,
  1755. id serial NOT NULL
  1756. );
  1757. --
  1758. -- Name: menu_attribute_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ledgersmb
  1759. --
  1760. SELECT pg_catalog.setval(pg_catalog.pg_get_serial_sequence('menu_attribute', 'id'), 551, true);
  1761. --
  1762. -- Data for Name: menu_attribute; Type: TABLE DATA; Schema: public; Owner: ledgersmb
  1763. --
  1764. COPY menu_attribute (node_id, attribute, value, id) FROM stdin;
  1765. 1 menu 1 1
  1766. 2 module ar.pl 2
  1767. 2 action add 3
  1768. 3 action add 4
  1769. 3 module is.pl 5
  1770. 3 type invoice 6
  1771. 4 menu 1 7
  1772. 5 module ar.pl 8
  1773. 5 action search 9
  1774. 5 nextsub transactions 10
  1775. 6 module ar.pl 12
  1776. 6 action search 13
  1777. 6 nextsub transactions 14
  1778. 7 module rp.pl 15
  1779. 7 action report 16
  1780. 7 report ar_aging 17
  1781. 9 module rp.pl 21
  1782. 9 action report 22
  1783. 9 report tax_collected 23
  1784. 10 module rp.pl 24
  1785. 10 action report 25
  1786. 10 report nontaxable_sales 26
  1787. 11 menu 1 27
  1788. 12 module customer.pl 28
  1789. 12 action add 29
  1790. 13 menu 1 31
  1791. 14 module customer.pl 32
  1792. 14 action search 36
  1793. 15 module ct.pl 35
  1794. 15 db customer 37
  1795. 15 action history 33
  1796. 16 menu 1 38
  1797. 17 module ps.pl 39
  1798. 17 action add 40
  1799. 17 nextsub openinvoices 41
  1800. 18 action openinvoices 42
  1801. 18 module ps.pl 43
  1802. 19 module ps.pl 44
  1803. 19 action receipts 46
  1804. 20 module rc.pl 47
  1805. 20 action till_closing 48
  1806. 20 pos true 49
  1807. 21 menu 1 50
  1808. 22 action add 52
  1809. 22 module ap.pl 51
  1810. 23 action add 53
  1811. 23 type invoice 55
  1812. 23 module ir.pl 54
  1813. 24 menu 1 56
  1814. 25 action search 58
  1815. 25 nextsub transactions 59
  1816. 25 module ap.pl 57
  1817. 26 action search 61
  1818. 26 nextsub transactions 62
  1819. 26 module ap.pl 60
  1820. 27 module rp.pl 63
  1821. 27 action report 64
  1822. 28 module rp.pl 66
  1823. 28 action report 67
  1824. 28 report tax_collected 68
  1825. 27 report tax_paid 65
  1826. 29 module rp.pl 69
  1827. 29 action report 70
  1828. 29 report report 71
  1829. 30 menu 1 72
  1830. 31 module vendor.pl 73
  1831. 31 action add 74
  1832. 31 db vendor 75
  1833. 32 menu 1 76
  1834. 33 module vendor.pl 77
  1835. 33 action search 79
  1836. 33 db vendor 78
  1837. 34 module vendor.pl 80
  1838. 34 action history 81
  1839. 34 db vendor 82
  1840. 35 menu 1 83
  1841. 36 module payment.pl 84
  1842. 36 action payment 85
  1843. 36 type receipt 86
  1844. 37 module cp.pl 87
  1845. 38 module cp.pl 90
  1846. 38 action payment 91
  1847. 37 type receipt 89
  1848. 37 action payments 88
  1849. 38 type check 92
  1850. 39 module cp.pl 93
  1851. 39 type check 95
  1852. 39 action payments 94
  1853. 40 module gl.pl 96
  1854. 40 action add 97
  1855. 40 transfer 1 98
  1856. 41 menu 1 99
  1857. 42 module rp.pl 100
  1858. 42 action report 101
  1859. 42 report receipts 102
  1860. 43 module rp.pl 103
  1861. 43 action report 104
  1862. 43 report payments 105
  1863. 45 module rc.pl 106
  1864. 45 action reconciliation 107
  1865. 44 module rc.pl 108
  1866. 44 action reconciliation 109
  1867. 44 report 1 110
  1868. 46 menu 1 111
  1869. 47 menu 1 112
  1870. 48 module employee.pl 113
  1871. 48 action add 114
  1872. 48 db employee 115
  1873. 49 module hr.pl 116
  1874. 49 db employee 118
  1875. 49 action search 117
  1876. 50 menu 1 119
  1877. 51 module oe.pl 120
  1878. 51 action add 121
  1879. 51 type sales_order 122
  1880. 52 module oe.pl 123
  1881. 52 action add 124
  1882. 52 type purchase_order 125
  1883. 53 menu 1 126
  1884. 54 module oe.pl 127
  1885. 54 type sales_order 129
  1886. 54 action search 128
  1887. 55 module oe.pl 130
  1888. 55 type purchase_order 132
  1889. 55 action search 131
  1890. 56 menu 1 133
  1891. 57 module oe.pl 134
  1892. 57 action search 136
  1893. 58 module oe.pl 137
  1894. 58 action search 139
  1895. 57 type generate_sales_order 135
  1896. 58 type generate_purchase_order 138
  1897. 60 menu 1 550
  1898. 61 module oe.pl 140
  1899. 61 action search 141
  1900. 62 module oe.pl 143
  1901. 62 action search 144
  1902. 62 type consolidate_purchase_order 145
  1903. 61 type consolidate_sales_order 142
  1904. 63 menu 1 146
  1905. 64 module oe.pl 147
  1906. 64 action search 148
  1907. 65 module oe.pl 150
  1908. 65 action search 151
  1909. 65 type consolidate_sales_order 152
  1910. 64 type receive_order 149
  1911. 66 module oe.pl 153
  1912. 66 action search_transfer 154
  1913. 67 menu 1 155
  1914. 68 module oe.pl 156
  1915. 68 action add 157
  1916. 69 module oe.pl 159
  1917. 69 action add 160
  1918. 68 type sales_quotation 158
  1919. 69 type request_quotation 161
  1920. 70 menu 1 162
  1921. 71 module oe.pl 163
  1922. 71 type sales_quotation 165
  1923. 71 action search 164
  1924. 72 module oe.pl 166
  1925. 72 action search 168
  1926. 72 type request_quotation 167
  1927. 73 menu 1 169
  1928. 74 module gl.pl 170
  1929. 74 action add 171
  1930. 75 module gl.pl 172
  1931. 75 action add_pos_adjust 174
  1932. 75 rowcount 3 175
  1933. 75 pos_adjust 1 176
  1934. 75 reference Adjusting Till: (Till) Source: (Source) 177
  1935. 75 descripton Adjusting till due to data entry error 178
  1936. 76 module gl.pl 180
  1937. 76 action search 181
  1938. 77 menu 1 182
  1939. 78 module ic.pl 183
  1940. 78 action add 184
  1941. 78 item part 185
  1942. 79 module ic.pl 186
  1943. 79 action add 187
  1944. 79 item service 188
  1945. 80 module ic.pl 189
  1946. 80 action add 190
  1947. 81 module ic.pl 192
  1948. 81 action add 193
  1949. 81 item part 194
  1950. 80 item labor 191
  1951. 82 action add 195
  1952. 82 module pe.pl 196
  1953. 83 action add 198
  1954. 83 module pe.pl 199
  1955. 83 type partsgroup 200
  1956. 82 type pricegroup 197
  1957. 84 module ic.pl 202
  1958. 84 action stock_assembly 203
  1959. 85 menu 1 204
  1960. 86 module ic.pl 205
  1961. 87 action search 206
  1962. 86 action search 207
  1963. 87 module ic.pl 208
  1964. 86 searchitems all 209
  1965. 88 module ic.pl 211
  1966. 88 action requirements 212
  1967. 89 action search 213
  1968. 89 module ic.pl 214
  1969. 89 searchitems service 215
  1970. 87 searchitems part 210
  1971. 90 action search 216
  1972. 90 module ic.pl 217
  1973. 90 searchitems labor 218
  1974. 91 module pe.pl 221
  1975. 91 type pricegroup 222
  1976. 91 action search 220
  1977. 92 module pe.pl 224
  1978. 92 type partsgroup 225
  1979. 92 action search 223
  1980. 93 action search 226
  1981. 93 module ic.pl 227
  1982. 93 searchitems assembly 228
  1983. 94 action search 229
  1984. 94 module ic.pl 230
  1985. 94 searchitems component 231
  1986. 95 menu 1 232
  1987. 96 module pe.pl 233
  1988. 96 action translation 234
  1989. 96 translation description 235
  1990. 97 module pe.pl 236
  1991. 97 action translation 237
  1992. 97 translation partsgroup 238
  1993. 98 menu 1 239
  1994. 99 module pe.pl 240
  1995. 99 action add 241
  1996. 99 type project 242
  1997. 100 module jc.pl 243
  1998. 100 action add 244
  1999. 99 project project 245
  2000. 100 project project 246
  2001. 100 type timecard 247
  2002. 101 menu 1 248
  2003. 102 module pe.pl 249
  2004. 102 action project_sales_order 250
  2005. 103 menu 1 255
  2006. 104 module pe.pl 256
  2007. 104 type project 258
  2008. 104 action search 257
  2009. 105 action report 260
  2010. 105 report projects 261
  2011. 105 module rp.pl 262
  2012. 106 module jc.pl 263
  2013. 106 action search 264
  2014. 106 type timecard 265
  2015. 106 project project 266
  2016. 107 menu 1 268
  2017. 108 module pe.pl 269
  2018. 108 action translation 270
  2019. 108 translation project 271
  2020. 109 menu 1 272
  2021. 110 module ca.pl 273
  2022. 110 action chart_of_accounts 274
  2023. 111 action report 275
  2024. 111 module rp.pl 276
  2025. 111 report trial_balance 277
  2026. 112 action report 278
  2027. 112 module rp.pl 279
  2028. 112 report income_statement 280
  2029. 113 action report 281
  2030. 113 module rp.pl 282
  2031. 113 report balance_sheet 283
  2032. 114 action report 284
  2033. 114 module rp.pl 285
  2034. 114 report inv_activity 286
  2035. 115 action recurring_transactions 287
  2036. 115 module am.pl 288
  2037. 116 menu 1 289
  2038. 119 module bp.pl 290
  2039. 119 action search 291
  2040. 119 type check 292
  2041. 119 vc vendor 293
  2042. 117 module bp.pl 294
  2043. 117 action search 295
  2044. 117 vc customer 297
  2045. 118 module bp.pl 298
  2046. 118 action search 299
  2047. 118 vc customer 300
  2048. 118 type invoice 301
  2049. 117 type sales_order 296
  2050. 120 module bp.pl 302
  2051. 120 action search 303
  2052. 120 vc customer 304
  2053. 121 module bp.pl 306
  2054. 121 action search 307
  2055. 121 vc customer 308
  2056. 122 module bp.pl 310
  2057. 122 action search 311
  2058. 122 vc customer 312
  2059. 120 type work_order 305
  2060. 121 type sales_quotation 309
  2061. 122 type packing_list 313
  2062. 123 module bp.pl 314
  2063. 123 action search 315
  2064. 123 vc customer 316
  2065. 123 type pick_list 317
  2066. 124 module bp.pl 318
  2067. 124 action search 319
  2068. 124 vc vendor 321
  2069. 124 type purchase_order 320
  2070. 125 module bp.pl 322
  2071. 125 action search 323
  2072. 125 vc vendor 325
  2073. 126 module bp.pl 326
  2074. 126 action search 327
  2075. 126 vc vendor 329
  2076. 127 module bp.pl 330
  2077. 127 action search 331
  2078. 127 type timecard 332
  2079. 125 type bin_list 324
  2080. 126 type request_quotation 328
  2081. 127 vc employee 333
  2082. 128 menu 1 334
  2083. 129 module am.pl 337
  2084. 130 module am.pl 338
  2085. 131 module am.pl 339
  2086. 129 action audit_control 340
  2087. 130 taxes audit_control 341
  2088. 131 action defaults 342
  2089. 130 action taxes 343
  2090. 132 module am.pl 346
  2091. 132 action yearend 347
  2092. 133 menu 1 348
  2093. 134 module am.pl 349
  2094. 135 module am.pl 350
  2095. 134 action backup 351
  2096. 135 action backup 352
  2097. 134 media file 353
  2098. 135 media email 354
  2099. 137 module am.pl 355
  2100. 138 module am.pl 356
  2101. 139 module am.pl 357
  2102. 140 module am.pl 358
  2103. 137 action add_account 359
  2104. 138 action list_account 360
  2105. 139 action add_gifi 361
  2106. 140 action list_gifi 362
  2107. 141 menu 1 363
  2108. 142 module am.pl 364
  2109. 143 module am.pl 365
  2110. 142 action add_warehouse 366
  2111. 143 action list_warehouse 367
  2112. 145 module am.pl 368
  2113. 146 module am.pl 369
  2114. 145 action add_department 370
  2115. 146 action list_department 371
  2116. 147 menu 1 372
  2117. 148 module am.pl 373
  2118. 149 module am.pl 374
  2119. 148 action add_business 375
  2120. 149 action list_business 376
  2121. 150 menu 1 377
  2122. 151 module am.pl 378
  2123. 152 module am.pl 379
  2124. 151 action add_language 380
  2125. 152 action list_language 381
  2126. 153 menu 1 382
  2127. 154 module am.pl 383
  2128. 155 module am.pl 384
  2129. 154 action add_sic 385
  2130. 155 action list_sic 386
  2131. 156 menu 1 387
  2132. 157 module am.pl 388
  2133. 158 module am.pl 389
  2134. 159 module am.pl 390
  2135. 160 module am.pl 391
  2136. 161 module am.pl 392
  2137. 162 module am.pl 393
  2138. 163 module am.pl 394
  2139. 164 module am.pl 395
  2140. 165 module am.pl 396
  2141. 166 module am.pl 397
  2142. 167 module am.pl 398
  2143. 168 module am.pl 399
  2144. 169 module am.pl 400
  2145. 170 module am.pl 401
  2146. 171 module am.pl 402
  2147. 157 action list_templates 403
  2148. 158 action list_templates 404
  2149. 159 action list_templates 405
  2150. 160 action list_templates 406
  2151. 161 action list_templates 407
  2152. 162 action list_templates 408
  2153. 163 action list_templates 409
  2154. 164 action list_templates 410
  2155. 165 action list_templates 411
  2156. 166 action list_templates 412
  2157. 167 action list_templates 413
  2158. 168 action list_templates 414
  2159. 169 action list_templates 415
  2160. 170 action list_templates 416
  2161. 171 action list_templates 417
  2162. 157 template income_statement 418
  2163. 158 template balance_sheet 419
  2164. 159 template invoice 420
  2165. 160 template ar_transaction 421
  2166. 161 template ap_transaction 422
  2167. 162 template packing_list 423
  2168. 163 template pick_list 424
  2169. 164 template sales_order 425
  2170. 165 template work_order 426
  2171. 166 template purchase_order 427
  2172. 167 template bin_list 428
  2173. 168 template statement 429
  2174. 169 template quotation 430
  2175. 170 template rfq 431
  2176. 171 template timecard 432
  2177. 157 format HTML 433
  2178. 158 format HTML 434
  2179. 159 format HTML 435
  2180. 160 format HTML 436
  2181. 161 format HTML 437
  2182. 162 format HTML 438
  2183. 163 format HTML 439
  2184. 164 format HTML 440
  2185. 165 format HTML 441
  2186. 166 format HTML 442
  2187. 167 format HTML 443
  2188. 168 format HTML 444
  2189. 169 format HTML 445
  2190. 170 format HTML 446
  2191. 171 format HTML 447
  2192. 172 menu 1 448
  2193. 173 action list_templates 449
  2194. 174 action list_templates 450
  2195. 175 action list_templates 451
  2196. 176 action list_templates 452
  2197. 177 action list_templates 453
  2198. 178 action list_templates 454
  2199. 179 action list_templates 455
  2200. 180 action list_templates 456
  2201. 181 action list_templates 457
  2202. 182 action list_templates 458
  2203. 183 action list_templates 459
  2204. 184 action list_templates 460
  2205. 185 action list_templates 461
  2206. 186 action list_templates 462
  2207. 187 action list_templates 463
  2208. 173 module am.pl 464
  2209. 174 module am.pl 465
  2210. 175 module am.pl 466
  2211. 176 module am.pl 467
  2212. 177 module am.pl 468
  2213. 178 module am.pl 469
  2214. 179 module am.pl 470
  2215. 180 module am.pl 471
  2216. 181 module am.pl 472
  2217. 182 module am.pl 473
  2218. 183 module am.pl 474
  2219. 184 module am.pl 475
  2220. 185 module am.pl 476
  2221. 186 module am.pl 477
  2222. 187 module am.pl 478
  2223. 173 format LATEX 479
  2224. 174 format LATEX 480
  2225. 175 format LATEX 481
  2226. 176 format LATEX 482
  2227. 177 format LATEX 483
  2228. 178 format LATEX 484
  2229. 179 format LATEX 485
  2230. 180 format LATEX 486
  2231. 181 format LATEX 487
  2232. 182 format LATEX 488
  2233. 183 format LATEX 489
  2234. 184 format LATEX 490
  2235. 185 format LATEX 491
  2236. 186 format LATEX 492
  2237. 187 format LATEX 493
  2238. 173 template invoice 506
  2239. 174 template ar_transaction 507
  2240. 175 template ap_transaction 508
  2241. 176 template packing_list 509
  2242. 177 template pick_list 510
  2243. 178 template sales_order 511
  2244. 179 template work_order 512
  2245. 180 template purchase_order 513
  2246. 181 template bin_list 514
  2247. 182 template statement 515
  2248. 185 template quotation 518
  2249. 186 template rfq 519
  2250. 187 template timecard 520
  2251. 183 template check 516
  2252. 184 template receipt 517
  2253. 188 menu 1 521
  2254. 189 module am.pl 522
  2255. 189 action list_templates 523
  2256. 189 template pos_invoice 524
  2257. 189 format TEXT 525
  2258. 190 action display_stylesheet 526
  2259. 190 module am.pl 527
  2260. 191 module am.pl 528
  2261. 191 action config 529
  2262. 193 module login.pl 532
  2263. 193 action logout 533
  2264. 193 target _top 534
  2265. 192 menu 1 530
  2266. 192 new 1 531
  2267. 0 menu 1 535
  2268. 136 menu 1 536
  2269. 144 menu 1 537
  2270. 194 module ar.pl 538
  2271. 194 action add 539
  2272. 195 action add 540
  2273. 195 module is.pl 541
  2274. 196 action add 543
  2275. 196 module ap.pl 544
  2276. 197 action add 545
  2277. 197 module ir.pl 547
  2278. 196 type debit_note 549
  2279. 194 type credit_note 548
  2280. 195 type credit_invoice 542
  2281. 197 type debit_invoice 546
  2282. 36 account_class 1 551
  2283. \.
  2284. --
  2285. -- Name: menu_attribute_id_key; Type: CONSTRAINT; Schema: public; Owner: ledgersmb; Tablespace:
  2286. --
  2287. ALTER TABLE ONLY menu_attribute
  2288. ADD CONSTRAINT menu_attribute_id_key UNIQUE (id);
  2289. --
  2290. -- Name: menu_attribute_pkey; Type: CONSTRAINT; Schema: public; Owner: ledgersmb; Tablespace:
  2291. --
  2292. ALTER TABLE ONLY menu_attribute
  2293. ADD CONSTRAINT menu_attribute_pkey PRIMARY KEY (node_id, attribute);
  2294. --
  2295. -- Name: menu_attribute_node_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ledgersmb
  2296. --
  2297. ALTER TABLE ONLY menu_attribute
  2298. ADD CONSTRAINT menu_attribute_node_id_fkey FOREIGN KEY (node_id) REFERENCES menu_node(id);
  2299. --
  2300. -- PostgreSQL database dump complete
  2301. --
  2302. --
  2303. CREATE TABLE menu_acl (
  2304. id serial NOT NULL,
  2305. role_name character varying,
  2306. acl_type character varying,
  2307. node_id integer,
  2308. CONSTRAINT menu_acl_acl_type_check CHECK ((((acl_type)::text = 'allow'::text) OR ((acl_type)::text = 'deny'::text)))
  2309. );
  2310. ALTER TABLE ONLY menu_acl
  2311. ADD CONSTRAINT menu_acl_pkey PRIMARY KEY (id);
  2312. ALTER TABLE ONLY menu_acl
  2313. ADD CONSTRAINT menu_acl_node_id_fkey FOREIGN KEY (node_id) REFERENCES menu_node(id);
  2314. --
  2315. -- PostgreSQL database dump complete
  2316. --
  2317. CREATE TYPE menu_item AS (
  2318. position int,
  2319. id int,
  2320. level int,
  2321. label varchar,
  2322. path varchar,
  2323. args varchar[]
  2324. );
  2325. CREATE OR REPLACE FUNCTION menu_generate() RETURNS SETOF menu_item AS
  2326. $$
  2327. DECLARE
  2328. item menu_item;
  2329. arg menu_attribute%ROWTYPE;
  2330. BEGIN
  2331. FOR item IN
  2332. SELECT n.position, n.id, c.level, n.label, c.path, '{}'
  2333. FROM connectby('menu_node', 'id', 'parent', 'position', '0',
  2334. 0, ',')
  2335. c(id integer, parent integer, "level" integer,
  2336. path text, list_order integer)
  2337. JOIN menu_node n USING(id)
  2338. LOOP
  2339. FOR arg IN
  2340. SELECT *
  2341. FROM menu_attribute
  2342. WHERE node_id = item.id
  2343. LOOP
  2344. item.args := item.args ||
  2345. (arg.attribute || '=' || arg.value)::varchar;
  2346. END LOOP;
  2347. RETURN NEXT item;
  2348. END LOOP;
  2349. END;
  2350. $$ language plpgsql;
  2351. CREATE OR REPLACE FUNCTION menu_children(in_parent_id int) RETURNS SETOF menu_item
  2352. AS $$
  2353. declare
  2354. item menu_item;
  2355. arg menu_attribute%ROWTYPE;
  2356. begin
  2357. FOR item IN
  2358. SELECT n.position, n.id, c.level, n.label, c.path, '{}'
  2359. FROM connectby('menu_node', 'id', 'parent', 'position',
  2360. in_parent_id, 1, ',')
  2361. c(id integer, parent integer, "level" integer,
  2362. path text, list_order integer)
  2363. JOIN menu_node n USING(id)
  2364. LOOP
  2365. FOR arg IN
  2366. SELECT *
  2367. FROM menu_attribute
  2368. WHERE node_id = item.id
  2369. LOOP
  2370. item.args := item.args ||
  2371. (arg.attribute || '=' || arg.value)::varchar;
  2372. END LOOP;
  2373. return next item;
  2374. end loop;
  2375. end;
  2376. $$ language plpgsql;
  2377. COMMENT ON FUNCTION menu_children(int) IS $$ This function returns all menu items which are children of in_parent_id (the only input parameter. $$;
  2378. CREATE OR REPLACE FUNCTION
  2379. menu_insert(in_parent_id int, in_position int, in_label text)
  2380. returns int
  2381. AS $$
  2382. DECLARE
  2383. new_id int;
  2384. BEGIN
  2385. UPDATE menu_node
  2386. SET position = position * -1
  2387. WHERE parent = in_parent_id
  2388. AND position >= in_position;
  2389. INSERT INTO menu_node (parent, position, label)
  2390. VALUES (in_parent_id, in_position, in_label);
  2391. SELECT INTO new_id currval('menu_node_id_seq');
  2392. UPDATE menu_node
  2393. SET position = (position * -1) + 1
  2394. WHERE parent = in_parent_id
  2395. AND position < 0;
  2396. RETURN new_id;
  2397. END;
  2398. $$ language plpgsql;
  2399. comment on function menu_insert(int, int, text) is $$
  2400. This function inserts menu items at arbitrary positions. The arguments are, in
  2401. order: parent, position, label. The return value is the id number of the menu
  2402. item created. $$;
  2403. CREATE VIEW menu_friendly AS
  2404. SELECT t."level", t.path, t.list_order, (repeat(' '::text, (2 * t."level")) || (n.label)::text) AS label, n.id, n."position" FROM (connectby('menu_node'::text, 'id'::text, 'parent'::text, 'position'::text, '0'::text, 0, ','::text) t(id integer, parent integer, "level" integer, path text, list_order integer) JOIN menu_node n USING (id));
  2405. --ALTER TABLE public.menu_friendly OWNER TO ledgersmb;
  2406. --
  2407. -- PostgreSQL database dump complete
  2408. --
  2409. CREATE AGGREGATE as_array (
  2410. BASETYPE = ANYELEMENT,
  2411. STYPE = ANYARRAY,
  2412. SFUNC = ARRAY_APPEND,
  2413. INITCOND = '{}'
  2414. );
  2415. CREATE AGGREGATE compound_array (
  2416. BASETYPE = ANYARRAY,
  2417. STYPE = ANYARRAY,
  2418. SFUNC = ARRAY_CAT,
  2419. INITCOND = '{}'
  2420. );
  2421. CREATE TABLE pending_reports (
  2422. id bigserial primary key not null,
  2423. report_id int,
  2424. scn int,
  2425. their_balance INT,
  2426. our_balance INT,
  2427. errorcode INT,
  2428. entered_by int references entity(id) not null,
  2429. corrections INT NOT NULL DEFAULT 0,
  2430. clear_time TIMESTAMP NOT NULL,
  2431. insert_time TIMESTAMPTZ NOT NULL DEFAULT now(),
  2432. ledger_id int REFERENCES acc_trans(entry_id),
  2433. overlook boolean not null default 'f'
  2434. );
  2435. CREATE TABLE report_corrections (
  2436. id serial primary key not null,
  2437. correction_id int not null default 1,
  2438. entry_in int references pending_reports(id) not null,
  2439. entered_by int not null,
  2440. reason text not null,
  2441. insert_time timestamptz not null default now()
  2442. );
  2443. CREATE INDEX company_name_gist__idx ON company USING gist(legal_name gist_trgm_ops);
  2444. CREATE INDEX location_address_one_gist__idx ON location USING gist(line_one gist_trgm_ops);
  2445. CREATE INDEX location_address_two_gist__idx ON location USING gist(line_two gist_trgm_ops);
  2446. CREATE INDEX location_address_three_gist__idx ON location USING gist(line_three gist_trgm_ops);
  2447. CREATE INDEX location_city_prov_gist_idx ON location USING gist(city gist_trgm_ops);
  2448. CREATE INDEX entity_name_gist_idx ON entity USING gist(name gist_trgm_ops);
  2449. commit;