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