1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
|
set client_min_messages = 'warning';
BEGIN;
CREATE OR REPLACE FUNCTION batch__lock_for_update (in_batch_id integer)
RETURNS batch LANGUAGE SQL
SECURITY DEFINER AS
$$
SELECT * FROM batch WHERE id = $1 FOR UPDATE;
$$;
REVOKE EXECUTE ON FUNCTION batch__lock_for_update(int) FROM PUBLIC;
COMMENT ON FUNCTION batch__lock_for_update(in_batch_id integer) is
$$ Locks a batch for the duration of the running transaction.
To be used when adding vouchers to the batch to prevent others
from hitting the batch for other purposes (e.g. approval) $$;
CREATE OR REPLACE FUNCTION voucher_get_batch (in_batch_id integer)
RETURNS batch AS
$$
DECLARE
batch_out batch%ROWTYPE;
BEGIN
SELECT * INTO batch_out FROM batch b WHERE b.id = in_batch_id;
RETURN batch_out;
END;
$$ language plpgsql;
COMMENT ON FUNCTION voucher_get_batch (in_batch_id integer) is
$$ Retrieves basic batch information based on batch_id.$$;
DROP TYPE IF EXISTS voucher_list CASCADE;
CREATE TYPE voucher_list AS (
id int,
invoice bool,
reference text,
description text,
batch_id int,
transaction_id integer,
amount numeric,
transaction_date date,
batch_class text,
batch_class_id int
);
-- voucher_list could use refactoring
CREATE OR REPLACE FUNCTION voucher__list (in_batch_id integer)
RETURNS SETOF voucher_list AS
$$
SELECT v.id, a.invoice, a.invnumber, e.name,
v.batch_id, v.trans_id,
a.amount, a.transdate, 'Payable', v.batch_class
FROM voucher v
JOIN ap a ON (v.trans_id = a.id)
JOIN entity_credit_account eca
ON (eca.id = a.entity_credit_account)
JOIN entity e ON (eca.entity_id = e.id)
WHERE v.batch_id = in_batch_id
AND v.batch_class = (select id from batch_class
WHERE class = 'ap')
UNION
SELECT v.id, a.invoice, a.invnumber, e.name,
v.batch_id, v.trans_id,
a.amount, a.transdate, 'Receivable', v.batch_class
FROM voucher v
JOIN ar a ON (v.trans_id = a.id)
JOIN entity_credit_account eca
ON (eca.id = a.entity_credit_account)
JOIN entity e ON (eca.entity_id = e.id)
WHERE v.batch_id = in_batch_id
AND v.batch_class = (select id from batch_class
WHERE class = 'ar')
UNION ALL
-- TODO: Add the class labels to the class table.
SELECT v.id, false, a.source,
cr.meta_number || '--' || co.legal_name ,
v.batch_id, v.trans_id,
sum(CASE WHEN bc.class LIKE 'payment%' THEN a.amount * -1
ELSE a.amount END), a.transdate,
CASE WHEN bc.class = 'payment' THEN 'Payment'
WHEN bc.class = 'payment_reversal'
THEN 'Payment Reversal'
END, v.batch_class
FROM voucher v
JOIN acc_trans a ON (v.id = a.voucher_id)
JOIN batch_class bc ON (bc.id = v.batch_class)
JOIN account_link l ON (a.chart_id = l.account_id)
JOIN ap ON (ap.id = a.trans_id)
JOIN entity_credit_account cr
ON (ap.entity_credit_account = cr.id)
JOIN company co ON (cr.entity_id = co.entity_id)
WHERE v.batch_id = in_batch_id
AND a.voucher_id = v.id
AND (bc.class like 'payment%' AND l.description = 'AP')
GROUP BY v.id, a.source, cr.meta_number, co.legal_name ,
v.batch_id, v.trans_id, a.transdate, bc.class
UNION ALL
SELECT v.id, false, a.source, a.memo,
v.batch_id, v.trans_id,
CASE WHEN bc.class LIKE 'receipt%' THEN sum(a.amount) * -1
ELSE sum(a.amount) END, a.transdate,
CASE WHEN bc.class = 'receipt' THEN 'Receipt'
WHEN bc.class = 'receipt_reversal'
THEN 'Receipt Reversal'
END, v.batch_class
FROM voucher v
JOIN acc_trans a ON (v.id = a.voucher_id)
JOIN batch_class bc ON (bc.id = v.batch_class)
JOIN account_link l ON (a.chart_id = l.account_id)
JOIN ar ON (ar.id = a.trans_id)
JOIN entity_credit_account cr
ON (ar.entity_credit_account = cr.id)
JOIN company co ON (cr.entity_id = co.entity_id)
WHERE v.batch_id = in_batch_id
AND a.voucher_id = v.id
AND (bc.class like 'receipt%' AND l.description = 'AR')
GROUP BY v.id, a.source, cr.meta_number, co.legal_name ,
a.memo, v.batch_id, v.trans_id, a.transdate, bc.class
UNION ALL
SELECT v.id, false, g.reference, g.description,
v.batch_id, v.trans_id,
sum(a.amount), g.transdate, 'GL', v.batch_class
FROM voucher v
JOIN gl g ON (g.id = v.trans_id)
JOIN acc_trans a ON (v.trans_id = a.trans_id)
WHERE a.amount > 0
AND v.batch_id = in_batch_id
AND v.batch_class IN (select id from batch_class
where class = 'gl')
GROUP BY v.id, g.reference, g.description, v.batch_id,
v.trans_id, g.transdate
ORDER BY 7, 1
$$ language sql;
COMMENT ON FUNCTION voucher__list (in_batch_id integer) IS
$$ Retrieves a list of vouchers and amounts attached to the batch.$$;
DROP TYPE IF EXISTS batch_list_item CASCADE;
CREATE TYPE batch_list_item AS (
id integer,
batch_class text,
control_code text,
description text,
created_by text,
created_on date,
default_date date,
transaction_total numeric,
payment_total numeric,
lock_success bool
);
CREATE OR REPLACE FUNCTION batch__lock(in_batch_id int)
RETURNS BOOL LANGUAGE SQL SECURITY DEFINER AS
$$
UPDATE batch SET locked_by = (select max(session_id)
FROM "session" where users_id = (
select id from users
WHERE username = SESSION_USER))
WHERE locked_by IS NULL
RETURNING true;
$$;
CREATE OR REPLACE FUNCTION batch__unlock(in_batch_id int)
RETURNS BOOL LANGUAGE sql SECURITY DEFINER AS
$$
UPDATE batch SET locked_by = NULL
WHERE id = $1 AND locked_by IN (select session_id
from "session" s
join users u on (u.id = s.users_id)
where username = SESSION_USER)
RETURNING true;
$$;
CREATE OR REPLACE FUNCTION
batch__search(in_class_id int, in_description text, in_created_by_eid int,
in_date_from date, in_date_to date,
in_amount_gt numeric,
in_amount_lt numeric, in_approved bool)
RETURNS SETOF batch_list_item AS
$$
SELECT b.id, c.class, b.control_code, b.description, u.username,
b.created_on, b.default_date,
sum(
CASE WHEN vc.id = 5 AND al.amount < 0 -- GL
THEN al.amount
WHEN vc.id = 1
THEN ap.amount
WHEN vc.id = 2
THEN ar.amount
ELSE 0
END) AS transaction_total,
sum(
CASE WHEN l.description = 'AR' AND vc.id IN (6, 7)
THEN al.amount
WHEN l.description = 'AP' AND vc.id IN (3, 4)
THEN al.amount * -1
ELSE 0
END
) AS payment_total,
batch__lock(b.id)
FROM batch b
JOIN batch_class c ON (b.batch_class_id = c.id)
LEFT JOIN users u ON (u.entity_id = b.created_by)
LEFT JOIN voucher v ON (v.batch_id = b.id)
LEFT JOIN batch_class vc ON (v.batch_class = vc.id)
LEFT JOIN ar ON (vc.id = 2 AND v.trans_id = ar.id)
LEFT JOIN ap ON (vc.id = 1 AND v.trans_id = ap.id)
LEFT JOIN acc_trans al ON
((vc.id = 5 AND v.trans_id = al.trans_id) OR
(vc.id IN (3, 4, 6, 7)
AND al.voucher_id = v.id))
LEFT JOIN account_link l ON (al.chart_id = l.account_id)
WHERE (c.id = in_class_id OR in_class_id IS NULL) AND
(b.description LIKE
'%' || in_description || '%' OR
in_description IS NULL) AND
(in_created_by_eid = b.created_by OR
in_created_by_eid IS NULL) AND
(((in_approved = false OR in_approved IS NULL)
AND approved_on IS NULL)
OR (in_approved = true AND approved_on IS NOT NULL))
and (in_date_from IS NULL
or b.default_date >= in_date_from)
and (in_date_to IS NULL
or b.default_date <= in_date_to)
GROUP BY b.id, c.class, b.description, u.username, b.created_on,
b.control_code, b.default_date
HAVING
(in_amount_gt IS NULL OR
sum(coalesce(ar.amount, ap.amount,
al.amount))
>= in_amount_gt)
AND
(in_amount_lt IS NULL OR
sum(coalesce(ar.amount, ap.amount,
al.amount))
<= in_amount_lt)
ORDER BY b.control_code, b.description
$$ LANGUAGE SQL;
COMMENT ON FUNCTION
batch__search(in_class_id int, in_description text, in_created_by_eid int,
in_date_from date, in_date_to date,
in_amount_gt numeric,
in_amount_lt numeric, in_approved bool) IS
$$Returns a list of batches and amounts processed on the batch.
Nulls match all values.
in_date_from and in_date_to specify date ranges.
in_description is a partial match.
All other criteria are exact matches.
$$;
CREATE OR REPLACE FUNCTION batch_get_class_id (in_type text) returns int AS
$$
SELECT id FROM batch_class WHERE class = $1;
$$ language sql;
COMMENT ON FUNCTION batch_get_class_id (in_type text) IS
$$ returns the batch class id associated with the in_type label provided.$$;
CREATE OR REPLACE FUNCTION
batch_search_mini
(in_class_id int, in_description text, in_created_by_eid int, in_approved bool)
RETURNS SETOF batch_list_item AS
$$
SELECT b.id, c.class, b.control_code, b.description, u.username,
b.created_on, b.default_date, NULL::NUMERIC, NULL::numeric, false
FROM batch b
JOIN batch_class c ON (b.batch_class_id = c.id)
LEFT JOIN users u ON (u.entity_id = b.created_by)
WHERE (c.id = in_class_id OR in_class_id IS NULL) AND
(b.description LIKE
'%' || in_description || '%' OR
in_description IS NULL) AND
(in_created_by_eid = b.created_by OR
in_created_by_eid IS NULL) AND
((in_approved = false OR in_approved IS NULL AND
approved_on IS NULL) OR
(in_approved = true AND approved_on IS NOT NULL)
)
GROUP BY b.id, c.class, b.description, u.username, b.created_on,
b.control_code, b.default_date
$$ LANGUAGE SQL;
COMMENT ON FUNCTION batch_search_mini
(in_class_id int, in_description text, in_created_by_eid int, in_approved bool)
IS $$ This performs a simple search of open batches created by the entity_id
in question. This is used to pull up batches that were currently used so that
they can be picked up and more vouchers added.
NULLs match all values.
in_description is a partial match
All other inouts are exact matches.
$$;
CREATE OR REPLACE FUNCTION
batch_search_empty(in_class_id int, in_description text, in_created_by_eid int,
in_amount_gt numeric,
in_amount_lt numeric, in_approved bool)
RETURNS SETOF batch_list_item AS
$$
SELECT b.id, c.class, b.control_code, b.description, u.username,
b.created_on, b.default_date, 0::numeric, 0::numeric, false
FROM batch b
JOIN batch_class c ON (b.batch_class_id = c.id)
JOIN users u ON (u.entity_id = b.created_by)
LEFT JOIN voucher v ON (v.batch_id = b.id)
where v.id is null
and(u.entity_id = in_created_by_eid
or in_created_by_eid is null) and
(in_description is null or b.description
like '%' || in_description || '%') and
(in_class_id is null or c.id = in_class_id)
GROUP BY b.id, c.class, b.description, u.username, b.created_on,
b.control_code, b.default_date
ORDER BY b.control_code, b.description
$$ LANGUAGE SQL;
COMMENT ON FUNCTION
batch_search_empty(in_class_id int, in_description text, in_created_by_eid int,
in_amount_gt numeric,
in_amount_lt numeric, in_approved bool) IS
$$ This is a full search for the batches, listing them by amount processed.
in_amount_gt and in_amount_lt provide a range to search for.
in_description is a partial match field.
Other fields are exact matches.
NULLs match all values.
$$;
CREATE OR REPLACE FUNCTION batch_post(in_batch_id INTEGER)
returns date AS
$$
UPDATE ar SET approved = true
WHERE id IN (select trans_id FROM voucher
WHERE batch_id = in_batch_id
AND batch_class = 2);
UPDATE ap SET approved = true
WHERE id IN (select trans_id FROM voucher
WHERE batch_id = in_batch_id
AND batch_class = 1);
UPDATE gl SET approved = true
WHERE id IN (select trans_id FROM voucher
WHERE batch_id = in_batch_id
AND batch_class = 5);
UPDATE acc_trans SET approved = true
WHERE voucher_id IN (select id FROM voucher
WHERE batch_id = in_batch_id
AND batch_class IN (3, 4, 6, 7));
UPDATE batch
SET approved_on = now(),
approved_by = (select entity_id FROM users
WHERE username = SESSION_USER)
WHERE id = in_batch_id;
SELECT now()::date;
$$ LANGUAGE SQL SECURITY DEFINER;
REVOKE EXECUTE ON FUNCTION batch_post(in_batch_id INTEGER) FROM public;
COMMENT ON FUNCTION batch_post(in_batch_id INTEGER) is
$$ Posts the specified batch to the books. Only posted batches should show up
on standard financial reports.$$;
CREATE OR REPLACE FUNCTION batch_list_classes() RETURNS SETOF batch_class AS
$$
DECLARE out_val record;
BEGIN
FOR out_val IN select * from batch_class order by id
LOOP
return next out_val;
END LOOP;
END;
$$ language plpgsql;
COMMENT ON FUNCTION batch_list_classes()
IS $$ Returns a list of all batch classes.$$;
-- Move to the admin module and call it from there.
CREATE OR REPLACE FUNCTION batch_get_users() RETURNS SETOF users AS
$$
SELECT * from users WHERE entity_id IN (select created_by from batch)
$$ LANGUAGE SQL;
COMMENT ON FUNCTION batch_get_users() IS
$$ Returns a sim[ple set of user objects. This should be renamed so that
it is more obvious it is a general purpose function.$$;
CREATE OR REPLACE FUNCTION batch_create(
in_batch_number text, in_description text, in_batch_class text,
in_batch_date date)
RETURNS int AS
$$
INSERT INTO
batch (batch_class_id, default_date, description, control_code,
created_by)
VALUES ((SELECT id FROM batch_class WHERE class = in_batch_class),
in_batch_date, in_description, in_batch_number,
(select entity_id FROM users WHERE username = session_user))
RETURNING id;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION batch_create(
in_batch_number text, in_description text, in_batch_class text,
in_batch_date date) IS
$$ Inserts the batch into the table.$$;
CREATE OR REPLACE FUNCTION batch_delete(in_batch_id int) RETURNS int AS
$$
DECLARE
t_transaction_ids int[];
BEGIN
-- Adjust AR/AP tables for payment and payment reversal vouchers
-- voucher_id is only set in acc_trans on payment/receipt vouchers and
-- their reversals. -CT
perform * from batch where id = in_batch_id and approved_on IS NULL;
IF NOT FOUND THEN
RAISE EXCEPTION 'Batch not found';
END IF;
DELETE FROM ac_tax_form WHERE entry_id IN
(select entry_id from acc_trans where voucher_id in
(select id from voucher where batch_id = in_batch_id)
);
DELETE FROM acc_trans WHERE voucher_id IN
(select id FROM voucher where batch_id = in_batch_id);
-- The rest of this function involves the deletion of actual
-- transactions, vouchers, and batches, and jobs which are in progress.
-- -CT
SELECT as_array(trans_id) INTO t_transaction_ids
FROM voucher WHERE batch_id = in_batch_id AND batch_class IN (1, 2, 5, 8, 9);
DELETE FROM ac_tax_form WHERE entry_id in
(select entry_id from acc_trans
where trans_id = any(t_transaction_ids));
DELETE FROM invoice_tax_form WHERE invoice_id in
(select id from invoice
where trans_id = any(t_transaction_ids));
DELETE FROM invoice WHERE trans_id = ANY(t_transaction_ids);
DELETE FROM acc_trans WHERE trans_id = ANY(t_transaction_ids);
DELETE FROM ar WHERE id = ANY(t_transaction_ids);
DELETE FROM ap WHERE id = ANY(t_transaction_ids);
DELETE FROM gl WHERE id = ANY(t_transaction_ids);
DELETE FROM voucher WHERE batch_id = in_batch_id;
DELETE FROM batch WHERE id = in_batch_id;
DELETE FROM transactions WHERE id = ANY(t_transaction_ids);
RETURN 1;
END;
$$ language plpgsql SECURITY DEFINER;
COMMENT ON FUNCTION batch_delete(in_batch_id int) IS
$$ If the batch is found and unapproved, deletes it and returns 1.
Otherwise raises an exception.$$;
REVOKE ALL ON FUNCTION batch_delete(int) FROM PUBLIC;
CREATE OR REPLACE FUNCTION voucher__delete(in_voucher_id int)
RETURNS int AS
$$
DECLARE
voucher_row RECORD;
BEGIN
SELECT * INTO voucher_row FROM voucher WHERE id = in_voucher_id;
IF voucher_row.batch_class IN (1, 2, 5) THEN
DELETE FROM ac_tax_form WHERE entry_id IN (
SELECT entry_id
FROM acc_trans
WHERE trans_id = voucher_row.trans_id);
DELETE FROM acc_trans WHERE trans_id = voucher_row.trans_id;
-- deletion of the ar/ap/gl row causes removal of the `transactions`
-- row, which fails if the voucher isn't deleted...
DELETE FROM voucher WHERE id = voucher_row.id;
DELETE FROM ar WHERE id = voucher_row.trans_id;
DELETE FROM ap WHERE id = voucher_row.trans_id;
DELETE FROM gl WHERE id = voucher_row.trans_id;
ELSE
DELETE FROM ac_tax_form WHERE entry_id IN
(select entry_id from acc_trans
where voucher_id = voucher_row.id);
DELETE FROM acc_trans where voucher_id = voucher_row.id;
DELETE FROM voucher WHERE id = voucher_row.id;
END IF;
RETURN 1;
END;
$$ LANGUAGE PLPGSQL SECURITY DEFINER;
REVOKE ALL ON FUNCTION voucher__delete(int) FROM public;
COMMENT ON FUNCTION voucher__delete(in_voucher_id int) IS
$$ Deletes the specified voucher from the batch.$$;
update defaults set value = 'yes' where setting_key = 'module_load_ok';
COMMIT;
|