summaryrefslogtreecommitdiff
path: root/sql/modules/Payment.sql
blob: 930e5ea7521b4c7f1546ba6dcd961e3ce6ff1c81 (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. has_vouchers int
  110. );
  111. CREATE OR REPLACE FUNCTION payment_get_all_contact_invoices
  112. (in_account_class int, in_business_id int, in_currency char(3),
  113. in_date_from date, in_date_to date, in_batch_id int,
  114. in_ar_ap_accno text)
  115. RETURNS SETOF payment_contact_invoice AS
  116. $$
  117. DECLARE payment_item payment_contact_invoice;
  118. BEGIN
  119. FOR payment_item IN
  120. SELECT c.id AS contact_id, e.name AS contact_name,
  121. c.meta_number AS account_number,
  122. sum(a.amount - a.paid) AS total_due,
  123. compound_array(ARRAY[[
  124. a.id::text, a.invnumber, a.transdate::text,
  125. a.amount::text, a.paid::text,
  126. (CASE WHEN c.discount_terms
  127. > extract('days' FROM age(a.transdate))
  128. THEN 0
  129. ELSE (a.amount - coalesce(a.paid, 0)) * coalesce(c.discount, 0) / 100
  130. END)::text,
  131. (a.amount - coalesce(a.paid, 0) -
  132. (CASE WHEN c.discount_terms
  133. > extract('days' FROM age(a.transdate))
  134. THEN 0
  135. ELSE (a.amount - coalesce(a.paid, 0)) * coalesce(c.discount, 0) / 100
  136. END))::text]]),
  137. sum(case when v.batch_id = in_batch_id then 1
  138. else 0 END),
  139. bool_and(lock_record(a.id, (select max(session_id) FROM "session" where users_id = (
  140. select id from users WHERE username =
  141. SESSION_USER))))
  142. FROM entity e
  143. JOIN entity_credit_account c ON (e.id = c.entity_id)
  144. JOIN (SELECT id, invnumber, transdate, amount, entity_id,
  145. paid, curr, 1 as invoice_class,
  146. entity_credit_account, on_hold
  147. FROM ap
  148. WHERE in_account_class = 1
  149. UNION
  150. SELECT id, invnumber, transdate, amount, entity_id,
  151. paid, curr, 2 as invoice_class,
  152. entity_credit_account, on_hold
  153. FROM ar
  154. WHERE in_account_class = 2
  155. ORDER BY transdate
  156. ) a USING (entity_id)
  157. JOIN transactions t ON (a.id = t.id)
  158. LEFT JOIN voucher v ON (v.trans_id = a.id)
  159. WHERE v.batch_id = in_batch_id
  160. OR (a.invoice_class = in_account_class
  161. AND c.business_id =
  162. coalesce(in_business_id, c.business_id)
  163. AND ((a.transdate >= COALESCE(in_date_from, a.transdate)
  164. AND a.transdate <= COALESCE(in_date_to, a.transdate)))
  165. AND c.entity_class = in_account_class
  166. AND a.curr = in_currency
  167. AND a.entity_credit_account = c.id
  168. AND a.amount - a.paid <> 0
  169. AND NOT a.on_hold
  170. AND NOT (t.locked_by IS NOT NULL AND t.locked_by IN
  171. (select "session_id" FROM "session"
  172. WHERE users_id IN
  173. (select id from users
  174. where username <> SESSION_USER)))
  175. AND EXISTS (select trans_id FROM acc_trans
  176. WHERE trans_id = a.id AND
  177. chart_id = (SELECT id frOM chart
  178. WHERE accno
  179. = in_ar_ap_accno)
  180. ))
  181. GROUP BY c.id, e.name, c.meta_number, c.threshold
  182. HAVING sum(a.amount - a.paid) > c.threshold
  183. OR sum(case when v.batch_id = in_batch_id then 1
  184. else 0 END) > 0
  185. LOOP
  186. RETURN NEXT payment_item;
  187. END LOOP;
  188. END;
  189. $$ LANGUAGE plpgsql;
  190. COMMENT ON FUNCTION payment_get_all_contact_invoices
  191. (in_account_class int, in_business_type int, in_currency char(3),
  192. in_date_from date, in_date_to date, in_batch_id int,
  193. in_ar_ap_accno text) IS
  194. $$
  195. This function takes the following arguments (all prefaced with in_ in the db):
  196. account_class: 1 for vendor, 2 for customer
  197. business_type: integer of business.id.
  198. currency: char(3) of currency (for example 'USD')
  199. date_from, date_to: These dates are inclusive.
  200. 1;3B
  201. batch_id: For payment batches, where fees are concerned.
  202. ar_ap_accno: The AR/AP account number.
  203. This then returns a set of contact information with a 2 dimensional array
  204. cnsisting of outstanding invoices.
  205. $$;
  206. CREATE OR REPLACE FUNCTION payment_bulk_queue
  207. (in_transactions numeric[], in_batch_id int, in_source text, in_total numeric,
  208. in_ar_ap_accno text, in_cash_accno text,
  209. in_payment_date date, in_account_class int)
  210. returns int as
  211. $$
  212. BEGIN
  213. INSERT INTO payments_queue
  214. (transactions, batch_id, source, total, ar_ap_accno, cash_accno,
  215. payment_date, account_class)
  216. VALUES
  217. (in_transactions, in_batch_id, in_source, in_total, in_ar_ap_accno,
  218. in_cash_accno, in_payment_date, in_account_class);
  219. RETURN array_upper(in_transactions, 1) -
  220. array_lower(in_transactions, 1);
  221. END;
  222. $$ LANGUAGE PLPGSQL;
  223. CREATE OR REPLACE FUNCTION job__process_payment(in_job_id int)
  224. RETURNS bool AS $$
  225. DECLARE
  226. queue_record RECORD;
  227. t_auth_name text;
  228. t_counter int;
  229. BEGIN
  230. -- TODO: Move the set session authorization into a utility function
  231. SELECT entered_by INTO t_auth_name FROM pending_job
  232. WHERE id = in_job_id;
  233. EXECUTE 'SET SESSION AUTHORIZATION ' || quote_ident(t_auth_name);
  234. t_counter := 0;
  235. FOR queue_record IN
  236. SELECT *
  237. FROM payments_queue WHERE job_id = in_job_id
  238. LOOP
  239. PERFORM payment_bulk_post
  240. (queue_record.transactions, queue_record.batch_id,
  241. queue_record.source, queue_record.total,
  242. queue_record.ar_ap_accno,
  243. queue_record.cash_accno,
  244. queue_record.payment_date,
  245. queue_record.account_class);
  246. t_counter := t_counter + 1;
  247. RAISE NOTICE 'Processed record %, starting transaction %',
  248. t_counter, queue_record.transactions[1][1];
  249. END LOOP;
  250. DELETE FROM payments_queue WHERE job_id = in_job_id;
  251. UPDATE pending_job
  252. SET completed_at = timeofday()::timestamp,
  253. success = true
  254. WHERE id = in_job_id;
  255. RETURN TRUE;
  256. END;
  257. $$ language plpgsql;
  258. CREATE OR REPLACE FUNCTION job__create(in_batch_class int, in_batch_id int)
  259. RETURNS int AS
  260. $$
  261. BEGIN
  262. INSERT INTO pending_job (batch_class, batch_id)
  263. VALUES (coalesce(in_batch_class, 3), in_batch_id);
  264. RETURN currval('pending_job_id_seq');
  265. END;
  266. $$ LANGUAGE PLPGSQL;
  267. CREATE TYPE job__status AS (
  268. completed int, -- 1 for completed, 0 for no
  269. success int, -- 1 for success, 0 for no
  270. completed_at timestamp,
  271. error_condition text -- error if not successful
  272. );
  273. CREATE OR REPLACE FUNCTION job__status(in_job_id int) RETURNS job__status AS
  274. $$
  275. DECLARE out_row job__status;
  276. BEGIN
  277. SELECT (completed_at IS NULL)::INT, success::int, completed_at,
  278. error_condition
  279. INTO out_row
  280. FROM pending_job
  281. WHERE id = in_job_id;
  282. RETURN out_row;
  283. END;
  284. $$ language plpgsql;
  285. CREATE OR REPLACE FUNCTION payment_bulk_post
  286. (in_transactions numeric[], in_batch_id int, in_source text, in_total numeric,
  287. in_ar_ap_accno text, in_cash_accno text,
  288. in_payment_date date, in_account_class int)
  289. RETURNS int AS
  290. $$
  291. DECLARE
  292. out_count int;
  293. t_voucher_id int;
  294. t_trans_id int;
  295. t_amount numeric;
  296. t_ar_ap_id int;
  297. t_cash_id int;
  298. BEGIN
  299. IF in_batch_id IS NULL THEN
  300. -- t_voucher_id := NULL;
  301. RAISE EXCEPTION 'Bulk Post Must be from Batch!';
  302. ELSE
  303. INSERT INTO voucher (batch_id, batch_class, trans_id)
  304. values (in_batch_id, 3, in_transactions[1][1]);
  305. t_voucher_id := currval('voucher_id_seq');
  306. END IF;
  307. select id into t_ar_ap_id from chart where accno = in_ar_ap_accno;
  308. select id into t_cash_id from chart where accno = in_cash_accno;
  309. FOR out_count IN
  310. array_lower(in_transactions, 1) ..
  311. array_upper(in_transactions, 1)
  312. LOOP
  313. INSERT INTO acc_trans
  314. (trans_id, chart_id, amount, approved, voucher_id,
  315. transdate, source)
  316. VALUES
  317. (in_transactions[out_count][1],
  318. case when in_account_class = 1 THEN t_cash_id
  319. WHEN in_account_class = 2 THEN t_ar_ap_id
  320. ELSE -1 END,
  321. in_transactions[out_count][2],
  322. CASE WHEN t_voucher_id IS NULL THEN true
  323. ELSE false END,
  324. t_voucher_id, in_payment_date, in_source),
  325. (in_transactions[out_count][1],
  326. case when in_account_class = 1 THEN t_ar_ap_id
  327. WHEN in_account_class = 2 THEN t_cash_id
  328. ELSE -1 END,
  329. in_transactions[out_count][2]* -1,
  330. CASE WHEN t_voucher_id IS NULL THEN true
  331. ELSE false END,
  332. t_voucher_id, in_payment_date, in_source);
  333. UPDATE ap
  334. set paid = paid +in_transactions[out_count][2]
  335. where id =in_transactions[out_count][1];
  336. END LOOP;
  337. return out_count;
  338. END;
  339. $$ language plpgsql;
  340. COMMENT ON FUNCTION payment_bulk_post
  341. (in_transactions numeric[], in_batch_id int, in_source text, in_total numeric,
  342. in_ar_ap_accno text, in_cash_accno text,
  343. in_payment_date date, in_account_class int)
  344. IS
  345. $$ Note that in_transactions is a two-dimensional numeric array. Of each
  346. sub-array, the first element is the (integer) transaction id, and the second
  347. is the amount for that transaction. If the total of the amounts do not add up
  348. to in_total, then an error is generated. $$;
  349. CREATE OR REPLACE FUNCTION payment_post
  350. (in_trans_id int, in_batch_id int, in_source text, in_amount numeric,
  351. in_ar_ap_accno text, in_cash_accno text, in_approved bool,
  352. in_payment_date date, in_account_class int)
  353. RETURNS INT AS
  354. $$
  355. DECLARE out_entry_id int;
  356. BEGIN
  357. INSERT INTO acc_trans (chart_id, amount,
  358. trans_id, transdate, approved, source)
  359. VALUES ((SELECT id FROM chart WHERE accno = in_ar_ap_accno),
  360. CASE WHEN in_account_class = 1 THEN in_amount * -1
  361. ELSE amount
  362. END,
  363. in_trans_id, in_payment_date, in_approved, in_source);
  364. INSERT INTO acc_trans (chart_id, amount,
  365. trans_id, transdate, approved, source)
  366. VALUES ((SELECT id FROM chart WHERE accno = in_cash_accno),
  367. CASE WHEN in_account_class = 2 THEN in_amount * -1
  368. ELSE amount
  369. END,
  370. in_trans_id, in_payment_date, coalesce(in_approved, true),
  371. in_source);
  372. SELECT currval('acc_trans_entry_id_seq') INTO out_entry_id;
  373. RETURN out_entry_id;
  374. END;
  375. $$ LANGUAGE PLPGSQL;
  376. COMMENT ON FUNCTION payment_post
  377. (in_trans_id int, in_source text, in_amount numeric, in_ar_ap_accno text,
  378. in_cash_accno text, in_approved bool, in_payment_date date,
  379. in_account_class int)
  380. IS $$
  381. This function takes the following arguments (prefaced with in_ in the db):
  382. trans_id: Id for ar/ap transaction.
  383. source: text for source documnet identifier (for example, check number)
  384. amount: numeric for the amount of the transaction
  385. ar_ap_accno: AR/AP account number
  386. cash_accno: Cash Account number, i.e. the account where the payment will be
  387. held
  388. approved: False, for a voucher.
  389. This function posts the payment or saves the payment voucher.
  390. $$;
  391. -- Move this to the projects module when we start on that. CT
  392. CREATE OR REPLACE FUNCTION project_list_open(in_date date)
  393. RETURNS SETOF project AS
  394. $$
  395. DECLARE out_project project%ROWTYPE;
  396. BEGIN
  397. FOR out_project IN
  398. SELECT * from project
  399. WHERE startdate <= in_date AND enddate >= in_date
  400. AND completed = 0
  401. LOOP
  402. return next out_project;
  403. END LOOP;
  404. END;
  405. $$ language plpgsql;
  406. comment on function project_list_open(in_date date) is
  407. $$ This function returns all projects that were open as on the date provided as
  408. the argument.$$;
  409. -- Move this to the projects module when we start on that. CT
  410. CREATE OR REPLACE FUNCTION department_list(in_role char)
  411. RETURNS SETOF department AS
  412. $$
  413. DECLARE out_department department%ROWTYPE;
  414. BEGIN
  415. FOR out_department IN
  416. SELECT * from department
  417. WHERE role = coalesce(in_role, role)
  418. LOOP
  419. return next out_department;
  420. END LOOP;
  421. END;
  422. $$ language plpgsql;
  423. -- Move this into another module.
  424. comment on function department_list(in_role char) is
  425. $$ This function returns all department that match the role provided as
  426. the argument.$$;
  427. CREATE OR REPLACE FUNCTION payments_get_open_currencies(in_account_class int)
  428. RETURNS SETOF char(3) AS
  429. $$
  430. DECLARE resultrow record;
  431. BEGIN
  432. FOR resultrow IN
  433. SELECT curr AS curr FROM ar
  434. WHERE amount <> paid
  435. OR paid IS NULL
  436. AND in_account_class=2
  437. UNION
  438. SELECT curr FROM ap
  439. WHERE amount <> paid
  440. OR paid IS NULL
  441. AND in_account_class=1
  442. ORDER BY curr
  443. LOOP
  444. return next resultrow.curr;
  445. END LOOP;
  446. END;
  447. $$ language plpgsql;
  448. CREATE OR REPLACE FUNCTION currency_get_exchangerate(in_currency char(3), in_date date, in_account_class int)
  449. RETURNS NUMERIC AS
  450. $$
  451. DECLARE
  452. out_exrate exchangerate.buy%TYPE;
  453. BEGIN
  454. IF in_account_class = 1 THEN
  455. SELECT INTO out_exrate buy
  456. FROM exchangerate
  457. WHERE transdate = in_date AND curr = in_currency;
  458. ELSE
  459. SELECT INTO out_exrate sell
  460. FROM exchangerate
  461. WHERE transdate = in_date AND curr = in_currency;
  462. END IF;
  463. RETURN out_exrate;
  464. END;
  465. $$ language plpgsql;
  466. COMMENT ON FUNCTION currency_get_exchangerate(in_currency char(3), in_date date, in_account_class int) IS
  467. $$ This function return the exchange rate of a given currency, date and exchange rate class (buy or sell). $$;
  468. CREATE OR REPLACE FUNCTION payment_get_vc_info(in_entity_id int)
  469. RETURNS SETOF entity AS
  470. $$
  471. DECLARE
  472. out_info entity%ROWTYPE;
  473. BEGIN
  474. FOR out_info IN
  475. SELECT e.id, e.name FROM entity e
  476. JOIN company c ON (e.id = c.entity_id)
  477. WHERE e.id = in_entity_id
  478. --SELECT e.id, c.legal_name, l.line_one, l.city_province, cy.name FROM entity e
  479. --JOIN company c ON (e.id = c.entity_id)
  480. --JOIN company_to_location cl ON (c.id = cl.company_id)
  481. --JOIN location l ON (l.id = cl.location_id)
  482. --JOIN country cy ON (cy.id = l.country_id)
  483. LOOP
  484. return next out_info;
  485. END LOOP;
  486. IF NOT FOUND THEN
  487. RAISE EXCEPTION 'ID % not found', in_entity_id;
  488. END IF;
  489. END;
  490. $$ language plpgsql;
  491. COMMENT ON FUNCTION payment_get_vc_info(in_entity_id int) IS
  492. $$ This function return vendor or customer info, its under construction $$;
  493. CREATE TYPE payment_record AS (
  494. amount numeric,
  495. meta_number text,
  496. credit_id int,
  497. company_paid text,
  498. accounts text[],
  499. source text,
  500. date_paid date
  501. );
  502. CREATE OR REPLACE FUNCTION payment__search
  503. (in_source text, in_date_from date, in_date_to date, in_credit_id int,
  504. in_cash_accno text, in_account_class int)
  505. RETURNS SETOF payment_record AS
  506. $$
  507. DECLARE
  508. out_row payment_record;
  509. BEGIN
  510. FOR out_row IN
  511. select sum(CASE WHEN c.entity_class = 1 then a.amount
  512. ELSE a.amount * -1 END), c.meta_number,
  513. c.id, co.legal_name,
  514. compound_array(ARRAY[ARRAY[ch.id::text, ch.accno,
  515. ch.description]]), a.source, a.transdate
  516. FROM entity_credit_account c
  517. JOIN ( select entity_credit_account, id
  518. FROM ar WHERE in_account_class = 2
  519. UNION
  520. SELECT entity_credit_account, id
  521. FROM ap WHERE in_account_class = 1
  522. ) arap ON (arap.entity_credit_account = c.id)
  523. JOIN acc_trans a ON (arap.id = a.trans_id)
  524. JOIN chart ch ON (ch.id = a.chart_id)
  525. JOIN company co ON (c.entity_id = co.entity_id)
  526. WHERE (ch.accno = in_cash_accno)
  527. AND (c.id = in_credit_id OR in_credit_id IS NULL)
  528. AND (a.transdate >= in_date_from
  529. OR in_date_from IS NULL)
  530. AND (a.transdate <= in_date_to OR in_date_to IS NULL)
  531. AND (source = in_source OR in_source IS NULL)
  532. GROUP BY c.meta_number, c.id, co.legal_name, a.transdate,
  533. a.source
  534. ORDER BY a.transdate, c.meta_number, a.source
  535. LOOP
  536. RETURN NEXT out_row;
  537. END LOOP;
  538. END;
  539. $$ language plpgsql;
  540. CREATE OR REPLACE FUNCTION payment__reverse
  541. (in_source text, in_date_paid date, in_credit_id int, in_cash_accno text,
  542. in_date_reversed date, in_account_class int, in_batch_id int)
  543. RETURNS INT
  544. AS $$
  545. DECLARE
  546. pay_row record;
  547. t_voucher_id int;
  548. t_voucher_inserted bool;
  549. BEGIN
  550. IF in_batch_id IS NOT NULL THEN
  551. t_voucher_id := nextval('voucher_id_seq');
  552. t_voucher_inserted := FALSE;
  553. END IF;
  554. FOR pay_row IN
  555. SELECT a.*, c.ar_ap_account_id
  556. FROM acc_trans a
  557. JOIN (select id, entity_credit_account
  558. FROM ar WHERE in_account_class = 2
  559. UNION
  560. SELECT id, entity_credit_account
  561. FROM ap WHERE in_account_class = 1
  562. ) arap ON (a.trans_id = arap.id)
  563. JOIN entity_credit_account c
  564. ON (arap.entity_credit_account = c.id)
  565. JOIN chart ch ON (a.chart_id = ch.id)
  566. WHERE coalesce(source, '') = coalesce(in_source, '')
  567. AND transdate = in_date_paid
  568. AND in_credit_id = c.id
  569. AND in_cash_accno = ch.accno
  570. LOOP
  571. IF in_batch_id IS NOT NULL
  572. AND t_voucher_inserted IS NOT TRUE
  573. THEN
  574. INSERT INTO voucher
  575. (id, trans_id, batch_id, batch_class)
  576. VALUES
  577. (t_voucher_id, pay_row.trans_id, in_batch_id,
  578. CASE WHEN in_account_class = 1 THEN 4
  579. WHEN in_account_class = 2 THEN 7
  580. END);
  581. t_voucher_inserted := TRUE;
  582. END IF;
  583. INSERT INTO acc_trans
  584. (trans_id, chart_id, amount, transdate, source, memo, approved,
  585. voucher_id)
  586. VALUES
  587. (pay_row.trans_id, pay_row.chart_id, pay_row.amount * -1,
  588. in_date_reversed, in_source, 'Reversing ' ||
  589. COALESCE(in_source, ''),
  590. case when in_batch_id is not null then false
  591. else true end, t_voucher_id),
  592. (pay_row.trans_id, pay_row.ar_ap_account_id, pay_row.amount,
  593. in_date_reversed, in_source, 'Reversing ' ||
  594. COALESCE(in_source, ''),
  595. case when in_batch_id is not null then false
  596. else true end, t_voucher_id);
  597. IF in_account_class = 1 THEN
  598. UPDATE ap SET paid = amount -
  599. (SELECT sum(a.amount)
  600. FROM acc_trans a
  601. JOIN chart c ON (a.chart_id = c.id)
  602. WHERE c.link = 'AP'
  603. AND trans_id = pay_row.trans_id
  604. )
  605. WHERE id = pay_row.trans_id;
  606. ELSIF in_account_class = 2 THEN
  607. update ar SET paid = amount -
  608. (SELECT sum(a.amount)
  609. FROM acc_trans a
  610. JOIN chart c ON (a.chart_id = c.id)
  611. WHERE c.link = 'AR'
  612. AND trans_id = pay_row.trans_id
  613. ) * -1
  614. WHERE id = pay_row.trans_id;
  615. ELSE
  616. RAISE EXCEPTION 'Unknown account class for payments %',
  617. in_account_class;
  618. END IF;
  619. END LOOP;
  620. RETURN 1;
  621. END;
  622. $$ LANGUAGE PLPGSQL;