summaryrefslogtreecommitdiff
path: root/sql/modules/Payment.sql
blob: d19a821be5c57839322c219338fecb22807285a4 (plain)
  1. -- payment_get_open_accounts and the option to get all accounts need to be
  2. -- refactored and redesigned. -- CT
  3. CREATE OR REPLACE FUNCTION payment_get_open_accounts(in_account_class int)
  4. returns SETOF entity AS
  5. $$
  6. DECLARE out_entity entity%ROWTYPE;
  7. BEGIN
  8. FOR out_entity IN
  9. SELECT ec.id, e.name, e.entity_class, e.created
  10. FROM entity e
  11. JOIN entity_credit_account ec ON (ec.entity_id = e.id)
  12. WHERE ec.entity_class = in_account_class
  13. AND CASE WHEN in_account_class = 1 THEN
  14. id IN (SELECT entity_id FROM ap
  15. WHERE amount <> paid
  16. GROUP BY entity_id)
  17. WHEN in_account_class = 2 THEN
  18. id IN (SELECT entity_id FROM ar
  19. WHERE amount <> paid
  20. GROUP BY entity_id)
  21. END
  22. LOOP
  23. RETURN NEXT out_entity;
  24. END LOOP;
  25. END;
  26. $$ LANGUAGE PLPGSQL;
  27. COMMENT ON FUNCTION payment_get_open_accounts(int) IS
  28. $$ This function takes a single argument (1 for vendor, 2 for customer as
  29. always) and returns all entities with open accounts of the appropriate type. $$;
  30. CREATE OR REPLACE FUNCTION payment_get_all_accounts(in_account_class int)
  31. RETURNS SETOF entity AS
  32. $$
  33. DECLARE out_entity entity%ROWTYPE;
  34. BEGIN
  35. FOR out_entity IN
  36. SELECT ec.id,
  37. e.name, e.entity_class, e.created
  38. FROM entity e
  39. JOIN entity_credit_account ec ON (ec.entity_id = e.id)
  40. WHERE e.entity_class = in_account_class
  41. LOOP
  42. RETURN NEXT out_entity;
  43. END LOOP;
  44. END;
  45. $$ LANGUAGE PLPGSQL;
  46. COMMENT ON FUNCTION payment_get_open_accounts(int) IS
  47. $$ This function takes a single argument (1 for vendor, 2 for customer as
  48. always) and returns all entities with accounts of the appropriate type. $$;
  49. CREATE TYPE payment_invoice AS (
  50. invoice_id int,
  51. invnumber text,
  52. invoice_date date,
  53. amount numeric,
  54. discount numeric,
  55. due numeric
  56. );
  57. CREATE OR REPLACE FUNCTION payment_get_open_invoices
  58. (in_account_class int, in_entity_credit_id int, in_curr char(3))
  59. RETURNS SETOF payment_invoice AS
  60. $$
  61. DECLARE payment_inv payment_invoice;
  62. BEGIN
  63. FOR payment_inv IN
  64. SELECT a.id AS invoice_id, a.invnumber,
  65. a.transdate AS invoice_date, a.amount,
  66. CASE WHEN discount_terms
  67. > extract('days' FROM age(a.transdate))
  68. THEN 0
  69. ELSE (a.amount - a.paid) * c.discount / 100
  70. END AS discount,
  71. a.amount - a.paid -
  72. CASE WHEN discount_terms
  73. > extract('days' FROM age(a.transdate))
  74. THEN 0
  75. ELSE (a.amount - a.paid) * c.discount / 100
  76. END AS due
  77. FROM (SELECT id, invnumber, transdate, amount, entity_id,
  78. 1 as invoice_class, paid, curr
  79. FROM ap
  80. UNION
  81. SELECT id, invnumber, transdate, amount, entity_id,
  82. 2 AS invoice_class, paid, curr
  83. FROM ar
  84. ) a
  85. JOIN entity_credit_account c USING (entity_id)
  86. WHERE a.invoice_class = in_account_class
  87. AND c.entity_class = in_account_class
  88. AND a.amount - a.paid <> 0
  89. AND a.curr = in_curr
  90. AND a.credit_account = coalesce(in_entity_credit_id,
  91. a.credit_account)
  92. LOOP
  93. RETURN NEXT payment_inv;
  94. END LOOP;
  95. END;
  96. $$ LANGUAGE PLPGSQL;
  97. COMMENT ON FUNCTION payment_get_open_invoices(int, int, char(3)) IS
  98. $$ This function takes three arguments:
  99. Type: 1 for vendor, 2 for customer
  100. Entity_id: The entity_id of the customer or vendor
  101. Currency: 3 characters for currency ('USD' for example).
  102. Returns all open invoices for the entity in question. $$;
  103. CREATE TYPE payment_contact_invoice AS (
  104. contact_id int,
  105. contact_name text,
  106. account_number text,
  107. total_due numeric,
  108. invoices text[]
  109. );
  110. CREATE OR REPLACE FUNCTION payment_get_all_contact_invoices
  111. (in_account_class int, in_business_type int, in_currency char(3),
  112. in_date_from date, in_date_to date, in_batch_id int,
  113. in_ar_ap_accno text)
  114. RETURNS SETOF payment_contact_invoice AS
  115. $$
  116. DECLARE payment_item payment_contact_invoice;
  117. BEGIN
  118. FOR payment_item IN
  119. SELECT e.id AS contact_id, e.name AS contact_name,
  120. c.meta_number AS account_number,
  121. sum(a.amount - a.paid) AS total_due,
  122. compound_array(ARRAY[[
  123. a.id::text, a.invnumber, a.transdate::text,
  124. a.amount::text, a.paid::text,
  125. (CASE WHEN c.discount_terms
  126. > extract('days' FROM age(a.transdate))
  127. THEN 0
  128. ELSE (a.amount - a.paid) * c.discount / 100
  129. END)::text,
  130. (a.amount - a.paid -
  131. (CASE WHEN c.discount_terms
  132. > extract('days' FROM age(a.transdate))
  133. THEN 0
  134. ELSE (a.amount - a.paid) * c.discount / 100
  135. END))::text]]),
  136. bool_and(lock_record(a.id, (select max(session_id) FROM "session" where users_id = (
  137. select id from users WHERE username =
  138. SESSION_USER))))
  139. FROM entity e
  140. JOIN entity_credit_account c ON (e.id = c.entity_id)
  141. JOIN (SELECT id, invnumber, transdate, amount, entity_id,
  142. paid, curr, 1 as invoice_class,
  143. entity_credit_account
  144. FROM ap
  145. UNION
  146. SELECT id, invnumber, transdate, amount, entity_id,
  147. paid, curr, 2 as invoice_class,
  148. entity_credit_account
  149. FROM ar
  150. ORDER BY transdate
  151. ) a USING (entity_id)
  152. JOIN transactions t ON (a.id = t.id)
  153. WHERE a.invoice_class = in_account_class
  154. AND ((a.transdate >= in_date_from
  155. AND a.transdate <= in_date_to)
  156. OR a.id IN (select voucher.trans_id FROM voucher
  157. WHERE batch_id = in_batch_id))
  158. AND c.entity_class = in_account_class
  159. AND a.curr = in_currency
  160. AND a.entity_credit_account = c.id
  161. AND a.amount - a.paid <> 0
  162. AND t.locked_by NOT IN
  163. (select "session_id" FROM "session"
  164. WHERE users_id IN
  165. (select id from users
  166. where username <> SESSION_USER))
  167. AND EXISTS (select trans_id FROM acc_trans
  168. WHERE trans_id = a.id AND
  169. chart_id = (SELECT id frOM chart
  170. WHERE accno
  171. = in_ar_ap_accno)
  172. )
  173. GROUP BY e.id, e.name, c.meta_number, c.threshold
  174. HAVING sum(a.amount - a.paid) > c.threshold
  175. LOOP
  176. RETURN NEXT payment_item;
  177. END LOOP;
  178. END;
  179. $$ LANGUAGE plpgsql;
  180. COMMENT ON FUNCTION payment_get_all_contact_invoices
  181. (in_account_class int, in_business_type int, in_currency char(3),
  182. in_date_from date, in_date_to date, in_batch_id int,
  183. in_ar_ap_accno text) IS
  184. $$
  185. This function takes the following arguments (all prefaced with in_ in the db):
  186. account_class: 1 for vendor, 2 for customer
  187. business_type: integer of business.id.
  188. currency: char(3) of currency (for example 'USD')
  189. date_from, date_to: These dates are inclusive.
  190. batch_id: For payment batches, where fees are concerned.
  191. ar_ap_accno: The AR/AP account number.
  192. This then returns a set of contact information with a 2 dimensional array
  193. cnsisting of outstanding invoices.
  194. $$;
  195. CREATE OR REPLACE FUNCTION payment_bulk_post
  196. (in_transactions numeric[], in_batch_id int, in_source text, in_total numeric,
  197. in_ar_ap_accno text, in_cash_accno text, in_approved bool,
  198. in_payment_date date, in_account_class int)
  199. RETURNS int AS
  200. $$
  201. DECLARE payment_trans numeric[];
  202. BEGIN
  203. END;
  204. $$ language plpgsql;
  205. COMMENT ON FUNCTION payment_bulk_post
  206. (in_transactions numeric[], in_batch_id int, in_source text, in_total numeric,
  207. in_ar_ap_accno text, in_cash_accno text, in_approved bool,
  208. in_payment_date date, in_account_class int)
  209. IS
  210. $$ Note that in_transactions is a two-dimensional numeric array. Of each
  211. sub-array, the first element is the (integer) transaction id, and the second
  212. is the amount for that transaction. If the total of the amounts do not add up
  213. to in_total, then an error is generated. $$;
  214. CREATE OR REPLACE FUNCTION payment_post
  215. (in_trans_id int, in_batch_id int, in_source text, in_amount numeric,
  216. in_ar_ap_accno text, in_cash_accno text, in_approved bool,
  217. in_payment_date date, in_account_class int)
  218. RETURNS INT AS
  219. $$
  220. DECLARE out_entry_id int;
  221. BEGIN
  222. INSERT INTO acc_trans (chart_id, amount,
  223. trans_id, transdate, approved, source)
  224. VALUES ((SELECT id FROM chart WHERE accno = in_ar_ap_accno),
  225. CASE WHEN in_account_class = 1 THEN in_amount * -1
  226. ELSE amount
  227. END,
  228. in_trans_id, in_payment_date, in_approved, in_source);
  229. INSERT INTO acc_trans (chart_id, amount,
  230. trans_id, transdate, approved, source)
  231. VALUES ((SELECT id FROM chart WHERE accno = in_cash_accno),
  232. CASE WHEN in_account_class = 2 THEN in_amount * -1
  233. ELSE amount
  234. END,
  235. in_trans_id, in_payment_date, coalesce(in_approved, true),
  236. in_source);
  237. SELECT currval('acc_trans_entry_id_seq') INTO out_entry_id;
  238. RETURN out_entry_id;
  239. END;
  240. $$ LANGUAGE PLPGSQL;
  241. COMMENT ON FUNCTION payment_post
  242. (in_trans_id int, in_source text, in_amount numeric, in_ar_ap_accno text,
  243. in_cash_accno text, in_approved bool, in_payment_date date,
  244. in_account_class int)
  245. IS $$
  246. This function takes the following arguments (prefaced with in_ in the db):
  247. trans_id: Id for ar/ap transaction.
  248. source: text for source documnet identifier (for example, check number)
  249. amount: numeric for the amount of the transaction
  250. ar_ap_accno: AR/AP account number
  251. cash_accno: Cash Account number, i.e. the account where the payment will be
  252. held
  253. approved: False, for a voucher.
  254. This function posts the payment or saves the payment voucher.
  255. $$;
  256. -- Move this to the projects module when we start on that. CT
  257. CREATE OR REPLACE FUNCTION project_list_open(in_date date)
  258. RETURNS SETOF project AS
  259. $$
  260. DECLARE out_project project%ROWTYPE;
  261. BEGIN
  262. FOR out_project IN
  263. SELECT * from project
  264. WHERE startdate <= in_date AND enddate >= in_date
  265. AND completed = 0
  266. LOOP
  267. return next out_project;
  268. END LOOP;
  269. END;
  270. $$ language plpgsql;
  271. comment on function project_list_open(in_date date) is
  272. $$ This function returns all projects that were open as on the date provided as
  273. the argument.$$;
  274. -- Move this to the projects module when we start on that. CT
  275. CREATE OR REPLACE FUNCTION department_list(in_role char)
  276. RETURNS SETOF department AS
  277. $$
  278. DECLARE out_department department%ROWTYPE;
  279. BEGIN
  280. FOR out_department IN
  281. SELECT * from department
  282. WHERE role = coalesce(in_role, role)
  283. LOOP
  284. return next out_department;
  285. END LOOP;
  286. END;
  287. $$ language plpgsql;
  288. -- Move this into another module.
  289. comment on function department_list(in_role char) is
  290. $$ This function returns all department that match the role provided as
  291. the argument.$$;
  292. CREATE OR REPLACE FUNCTION payments_get_open_currencies(in_account_class int)
  293. RETURNS SETOF char(3) AS
  294. $$
  295. DECLARE resultrow record;
  296. BEGIN
  297. FOR resultrow IN
  298. SELECT curr AS curr FROM ar
  299. WHERE amount <> paid
  300. OR paid IS NULL
  301. AND in_account_class=2
  302. UNION
  303. SELECT curr FROM ap
  304. WHERE amount <> paid
  305. OR paid IS NULL
  306. AND in_account_class=1
  307. ORDER BY curr
  308. LOOP
  309. return next resultrow.curr;
  310. END LOOP;
  311. END;
  312. $$ language plpgsql;
  313. CREATE OR REPLACE FUNCTION currency_get_exchangerate(in_currency char(3), in_date date, in_account_class int)
  314. RETURNS NUMERIC AS
  315. $$
  316. DECLARE
  317. out_exrate exchangerate.buy%TYPE;
  318. BEGIN
  319. IF in_account_class = 1 THEN
  320. SELECT INTO out_exrate buy
  321. FROM exchangerate
  322. WHERE transdate = in_date AND curr = in_currency;
  323. ELSE
  324. SELECT INTO out_exrate sell
  325. FROM exchangerate
  326. WHERE transdate = in_date AND curr = in_currency;
  327. END IF;
  328. RETURN out_exrate;
  329. END;
  330. $$ language plpgsql;
  331. COMMENT ON FUNCTION currency_get_exchangerate(in_currency char(3), in_date date, in_account_class int) IS
  332. $$ This function return the exchange rate of a given currency, date and exchange rate class (buy or sell). $$;
  333. CREATE OR REPLACE FUNCTION payment_get_vc_info(in_entity_id int)
  334. RETURNS SETOF entity AS
  335. $$
  336. DECLARE
  337. out_info entity%ROWTYPE;
  338. BEGIN
  339. FOR out_info IN
  340. SELECT e.id, e.name FROM entity e
  341. JOIN company c ON (e.id = c.entity_id)
  342. WHERE e.id = in_entity_id
  343. --SELECT e.id, c.legal_name, l.line_one, l.city_province, cy.name FROM entity e
  344. --JOIN company c ON (e.id = c.entity_id)
  345. --JOIN company_to_location cl ON (c.id = cl.company_id)
  346. --JOIN location l ON (l.id = cl.location_id)
  347. --JOIN country cy ON (cy.id = l.country_id)
  348. LOOP
  349. return next out_info;
  350. END LOOP;
  351. IF NOT FOUND THEN
  352. RAISE EXCEPTION 'ID % not found!!!!!', in_entity_id;
  353. END IF;
  354. END;
  355. $$ language plpgsql;
  356. COMMENT ON FUNCTION payment_get_vc_info(in_entity_id int) IS
  357. $$ This function return vendor or customer info, its under construction $$;