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 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676
|
set client_min_messages = 'warning';
-- Copyright (C) 2011 LedgerSMB Core Team. Licensed under the GNU General
-- Public License v 2 or at your option any later version.
-- Docstrings already added to this file.
BEGIN;
DROP TYPE IF EXISTS company_entity CASCADE;
CREATE TYPE company_entity AS(
entity_id int,
entity_class int,
legal_name text,
tax_id text,
sales_tax_id text,
license_number text,
sic_code varchar,
control_code text,
country_id int
);
DROP TYPE IF EXISTS eca__pricematrix CASCADE;
CREATE TYPE eca__pricematrix AS (
parts_id int,
int_partnumber text,
description text,
credit_id int,
pricebreak numeric,
sellprice numeric,
lastcost numeric,
leadtime int,
partnumber text,
validfrom date,
validto date,
curr char(3),
entry_id int,
qty numeric
);
DROP TYPE IF EXISTS contact_search_result CASCADE;
CREATE TYPE contact_search_result AS (
entity_id int,
entity_control_code text,
entity_credit_id int,
meta_number text,
credit_description text,
entity_class int,
name text,
sic_code text,
business_type text,
curr text
);
DROP TYPE IF EXISTS eca_history_result CASCADE;
create type eca_history_result as (
id int,
name text,
meta_number text,
inv_id int,
invnumber text,
curr text,
parts_id int,
partnumber text,
description text,
qty numeric,
unit text,
sellprice numeric,
discount numeric,
delivery_date date,
serialnumber text,
exchangerate numeric,
salesperson_id int,
salesperson_name text
);
CREATE OR REPLACE FUNCTION eca__get_by_meta_number
(in_meta_number text, in_entity_class int)
RETURNS entity_credit_account AS
$$
SELECT * FROM entity_credit_account
WHERE entity_class = $2 AND meta_number = $1;
$$ language sql;
DROP FUNCTION IF EXISTS eca__history
(in_name text, in_meta_number text, in_contact_info text, in_address_line text,
in_city text, in_state text, in_zip text, in_salesperson text, in_notes text,
in_country_id int, in_from_date date, in_to_date date, in_type char(1),
in_start_from date, in_start_to date, in_entity_class int,
in_inc_open bool, in_inc_closed bool);
CREATE OR REPLACE FUNCTION eca__history
(in_name_part text, in_meta_number text, in_contact_info text, in_address_line text,
in_city text, in_state text, in_zip text, in_salesperson text, in_notes text,
in_country_id int, in_from_date date, in_to_date date, in_type char(1),
in_start_from date, in_start_to date, in_entity_class int,
in_inc_open bool, in_inc_closed bool)
RETURNS SETOF eca_history_result AS
$$
WITH arap AS (
select invnumber, curr, ar.transdate, entity_credit_account, id,
person_id, notes
FROM ar
JOIN acc_trans ON ar.id = acc_trans.trans_id
JOIN account_link l ON acc_trans.chart_id = l.account_id
and l.description = 'AR'
where $16 = 2 and $13 = 'i'
GROUP BY 1, 2, 3, 4, 5, 6, 7
having (($17 and sum(acc_trans.amount) = 0)
or ($18 and 0 <> sum(acc_trans.amount)))
UNION ALL
select invnumber, curr, ap.transdate, entity_credit_account, id,
person_id, notes
FROM ap
JOIN acc_trans ON ap.id = acc_trans.trans_id
JOIN account_link l ON acc_trans.chart_id = l.account_id
and l.description = 'AP'
where $16 = 1 and $13 = 'i'
GROUP BY 1, 2, 3, 4, 5, 6, 7
having (($17 and sum(acc_trans.amount) = 0) or
($18 and sum(acc_trans.amount) <> 0))
)
SELECT eca.id, e.name, eca.meta_number,
a.id as invoice_id, a.invnumber, a.curr::text,
p.id AS parts_id, p.partnumber,
i.description,
i.qty * case when eca.entity_class = 1 THEN -1 ELSE 1 END,
i.unit::text, i.sellprice, i.discount,
i.deliverydate,
i.serialnumber,
case when $16 = 1 then ex.buy else ex.sell end as exchange_rate,
ee.id as salesperson_id,
ep.last_name || ', ' || ep.first_name as salesperson_name
FROM (select * from entity_credit_account
where meta_number = $2
UNION
select * from entity_credit_account WHERE $2 is null
) eca -- broken into unions for performance
join entity e on eca.entity_id = e.id
JOIN (
SELECT * FROM arap
union
select ordnumber, curr, transdate, entity_credit_account, id,
person_id, notes
from oe
where ($16= 1 and oe.oe_class_id = 2 and $13 = 'o'
and quotation is not true)
and (($17 and not closed) or ($18 and closed))
union
select ordnumber, curr, transdate, entity_credit_account, id,
person_id, notes
from oe
where ($16= 2 and oe.oe_class_id = 1 and $13 = 'o'
and quotation is not true)
and (($17 and not closed) or ($18 and closed))
union
select quonumber, curr, transdate, entity_credit_account, id,
person_id, notes
from oe
where($16= 1 and oe.oe_class_id = 4 and $13 = 'q'
and quotation is true)
and (($17 and not closed) or ($18 and closed))
union
select quonumber, curr, transdate, entity_credit_account, id,
person_id, notes
from oe
where($16= 2 and oe.oe_class_id = 4 and $13 = 'q'
and quotation is true)
and (($17 and not closed) or ($18 and closed))
) a ON (a.entity_credit_account = eca.id) -- broken into unions
-- for performance
JOIN ( select id, trans_id, parts_id, qty, description, unit, discount,
deliverydate, serialnumber, sellprice
FROM invoice where $13 = 'i'
union
select id, trans_id, parts_id, qty, description, unit, discount,
reqdate, serialnumber, sellprice
FROM orderitems where $13 <> 'i'
) i on i.trans_id = a.id
JOIN parts p ON (p.id = i.parts_id)
LEFT JOIN exchangerate ex ON (ex.transdate = a.transdate)
LEFT JOIN entity ee ON (a.person_id = ee.id)
LEFT JOIN person ep ON (ep.entity_id = ee.id)
-- these filters don't perform as well on large databases
WHERE (e.name ilike '%' || $1 || '%' or $1 is null)
and ($3 is null or eca.id in
(select credit_id from eca_to_contact
where contact ilike '%' || $3 || '%'))
-- and (($4 is null and $5 is null and $6 is null and $7 is null)
-- or eca.id in
-- (select credit_id from eca_to_location
-- where location_id in
-- (select id from location
-- where ($4 is null or line_one ilike '%' || $4 || '%'
-- or line_two ilike '%' || $4 || '%')
-- and ($5 is null or city
-- ilike '%' || $5 || '%')
-- and ($6 is null or state
-- ilike '%' || $6 || '%')
-- and ($7 is null or mail_code
-- ilike '%' || $7 || '%')
-- and ($10 is null or country_id = $10))
-- )
-- )
-- and (a.transdate >= $11 or $11 is null)
-- and (a.transdate <= $12 or $12 is null)
-- and (eca.startdate >= $14 or $14 is null)
-- and (eca.startdate <= $15 or $15 is null)
-- and (a.notes @@ plainto_tsquery($9) or $9 is null)
ORDER BY eca.meta_number, p.partnumber;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION eca__history
(in_name_part text, in_meta_number text, in_contact_info text, in_address_line text,
in_city text, in_state text, in_zip text, in_salesperson text, in_notes text,
in_country_id int, in_from_date date, in_to_date date, in_type char(1),
in_start_from date, in_start_to date, in_entity_class int,
in_inc_open bool, in_inc_closed bool) IS
$$This produces a history detail report, i.e. a list of all products purchased by
a customer over a specific date range.
meta_number is an exact match, as are in_open and inc_closed. All other fields
allow for partial matches. NULL matches all values.$$;
DROP FUNCTION IF EXISTS eca__history_summary
(in_name text, in_meta_number text, in_contact_info text, in_address_line text,
in_city text, in_state text, in_zip text, in_salesperson text, in_notes text,
in_country_id int, in_from_date date, in_to_date date, in_type char(1),
in_start_from date, in_start_to date, in_entity_class int,
in_inc_open bool, in_inc_closed bool);
CREATE OR REPLACE FUNCTION eca__history_summary
(in_name_part text, in_meta_number text, in_contact_info text, in_address_line text,
in_city text, in_state text, in_zip text, in_salesperson text, in_notes text,
in_country_id int, in_from_date date, in_to_date date, in_type char(1),
in_start_from date, in_start_to date, in_entity_class int,
in_inc_open bool, in_inc_closed bool)
RETURNS SETOF eca_history_result AS
$$
SELECT id, name, meta_number, null::int, null::text, curr, parts_id, partnumber,
description, sum(qty), unit, null::numeric, null::numeric, null::date,
null::text, null::numeric,
null::int, null::text
FROM eca__history($1, $2, $3, $4, $5, $6, $7, $8, $9,
$10, $11, $12, $13, $14, $15, $16, $17, $18)
group by id, name, meta_number, curr, parts_id, partnumber, description, unit,
sellprice
order by meta_number;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION eca__history_summary
(in_name text, in_meta_number text, in_contact_info text, in_address_line text,
in_city text, in_state text, in_zip text, in_salesperson text, in_notes text,
in_country_id int, in_from_date date, in_to_date date, in_type char(1),
in_start_from date, in_start_to date, in_entity_class int,
in_inc_open bool, in_inc_closed bool) IS
$$Creates a summary account (no quantities, just parts group by invoice).
meta_number must match exactly or be NULL. inc_open and inc_closed are exact
matches too. All other values specify ranges or may match partially.$$;
DROP FUNCTION IF EXISTS contact__search
(in_entity_class int, in_contact text, in_contact_info text[],
in_meta_number text, in_address text, in_city text, in_state text,
in_mail_code text, in_country text, in_active_date_from date,
in_active_date_to date,
in_business_id int, in_name_part text, in_control_code text);
DROP FUNCTION IF EXISTS contact__search
(in_entity_class int, in_contact text, in_contact_info text[],
in_meta_number text, in_address text, in_city text, in_state text,
in_mail_code text, in_country text, in_active_date_from date,
in_active_date_to date,
in_business_id int, in_name_part text, in_control_code text,
in_notes text);
CREATE OR REPLACE FUNCTION contact__search
(in_entity_class int, in_contact text, in_contact_info text[],
in_meta_number text, in_address text, in_city text, in_state text,
in_mail_code text, in_country text, in_active_date_from date,
in_active_date_to date,
in_business_id int, in_name_part text, in_control_code text,
in_notes text, in_users bool)
RETURNS SETOF contact_search_result AS $$
WITH entities_matching_name AS (
SELECT legal_name, sic_code, entity_id
FROM company
WHERE in_name_part IS NULL
OR legal_name @@ plainto_tsquery(in_name_part)
OR legal_name ilike in_name_part || '%'
UNION ALL
SELECT coalesce(first_name, '') || ' '
|| coalesce(middle_name, '')
|| ' ' || coalesce(last_name, ''), null, entity_id
FROM person
WHERE in_name_part IS NULL
OR coalesce(first_name, '') || ' ' || coalesce(middle_name, '')
|| ' ' || coalesce(last_name, '')
@@ plainto_tsquery(in_name_part)
),
matching_eca_contacts AS (
SELECT credit_id
FROM eca_to_contact
WHERE (in_contact_info IS NULL
OR contact = ANY(in_contact_info))
AND (in_contact IS NULL
OR description @@ plainto_tsquery(in_contact))
),
matching_entity_contacts AS (
SELECT entity_id
FROM entity_to_contact
WHERE (in_contact_info IS NULL
OR contact = ANY(in_contact_info))
AND (in_contact IS NULL
OR description @@ plainto_tsquery(in_contact))
),
matching_locations AS (
SELECT id
FROM location
WHERE (in_address IS NULL
OR line_one @@ plainto_tsquery(in_address)
OR line_two @@ plainto_tsquery(in_address)
OR line_three @@ plainto_tsquery(in_address))
AND (in_city IS NULL
OR city ILIKE '%' || in_city || '%')
AND (in_state IS NULL
OR state ILIKE '%' || in_state || '%')
AND (in_mail_code IS NULL
OR mail_code ILIKE in_mail_code || '%')
AND (in_country IS NULL
OR EXISTS (select 1 from country
where name ilike '%' || in_country || '%'
or short_name ilike '%' || in_country || '%'))
)
SELECT e.id, e.control_code, ec.id, ec.meta_number,
ec.description, ec.entity_class,
c.legal_name, c.sic_code, b.description , ec.curr::text
FROM entity e
JOIN entities_matching_name c ON c.entity_id = e.id
LEFT JOIN entity_credit_account ec ON (ec.entity_id = e.id)
LEFT JOIN business b ON (ec.business_id = b.id)
WHERE (in_entity_class is null
OR coalesce(ec.entity_class, e.entity_class) = in_entity_class)
AND (in_control_code IS NULL
OR e.control_code like in_control_code || '%')
AND ((in_contact_info IS NULL AND in_contact IS NULL)
OR EXISTS (select 1
from matching_eca_contacts mec
where mec.credit_id = ec.id)
OR EXISTS (select 1
from matching_entity_contacts mec
where mec.entity_id = e.id))
AND ((in_address IS NULL AND in_city IS NULL
AND in_state IS NULL AND in_mail_code IS NULL
AND in_country IS NULL)
OR EXISTS (select 1
from matching_locations m
join eca_to_location etl ON m.id = etl.location_id
where etl.credit_id = ec.id)
OR EXISTS (select 1
from matching_locations m
join entity_to_location etl
ON m.id = etl.location_id
where etl.entity_id = e.id))
AND (in_business_id IS NULL
OR ec.business_id = in_business_id)
AND (in_active_date_to IS NULL
OR ec.startdate <= in_active_date_to)
AND (in_active_date_from IS NULL
OR ec.enddate >= ec.enddate)
AND (in_meta_number IS NULL
OR ec.meta_number like in_meta_number || '%')
AND (in_notes IS NULL
OR EXISTS (select 1 from entity_note n
where e.id = n.entity_id
and note @@ plainto_tsquery(in_notes))
OR EXISTS (select 1 from eca_note n
where ec.id = n.ref_key
and note @@ plainto_tsquery(in_notes)))
AND (in_users IS NULL OR NOT in_users
OR EXISTS (select 1 from users where entity_id = e.id))
ORDER BY legal_name;
$$ language sql;
DROP FUNCTION IF EXISTS eca__get_taxes(in_credit_id int);
CREATE OR REPLACE FUNCTION eca__get_taxes(in_id int)
returns setof eca_tax AS
$$
select * from eca_tax where eca_id = $1;
$$ language sql;
COMMENT ON FUNCTION eca__get_taxes(in_credit_id int) IS
$$ Returns a set of taxable account id's.$$; --'
DROP FUNCTION IF EXISTS eca__set_taxes(int, int[]);
CREATE OR REPLACE FUNCTION eca__set_taxes(in_id int, in_tax_ids int[])
RETURNS bool AS
$$
DELETE FROM eca_tax WHERE eca_id = $1;
INSERT INTO eca_tax (eca_id, chart_id)
SELECT $1, tax_id
FROM unnest($2) tax_id;
SELECT TRUE;
$$ language sql;
comment on function eca__set_taxes(in_id int, in_tax_ids int[]) is
$$Sets the tax values for the customer or vendor.
The entity credit account must exist before calling this function, and must
have a type of either 1 or 2.
$$;
DROP FUNCTION if exists entity__save_notes(integer,text,text);
CREATE OR REPLACE FUNCTION entity__save_notes(in_entity_id int, in_note text, in_subject text)
RETURNS entity_note AS
$$
-- TODO, change this to create vector too
INSERT INTO entity_note (ref_key, note_class, entity_id, note, vector, subject)
VALUES (in_entity_id, 1, in_entity_id, in_note, '', in_subject)
RETURNING *;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION entity__save_notes
(in_entity_id int, in_note text, in_subject text) IS
$$ Saves an entity-level note. Such a note is valid for all credit accounts
attached to that entity. Returns the id of the note. $$;
DROP FUNCTION if exists eca__save_notes(integer,text,text);
CREATE OR REPLACE FUNCTION eca__save_notes(in_credit_id int, in_note text, in_subject text)
RETURNS eca_note AS
$$
-- TODO, change this to create vector too
INSERT INTO eca_note (ref_key, note_class, note, vector, subject)
VALUES (in_credit_id, 3, in_note, '', in_subject)
RETURNING *;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION eca__save_notes
(in_entity_id int, in_note text, in_subject text) IS
$$ Saves an entity credit account-level note. Such a note is valid for only one
credit account. Returns the id of the note. $$;
CREATE OR REPLACE FUNCTION entity_credit_get_id_by_meta_number
(in_meta_number text, in_account_class int)
returns int AS
$$
SELECT id
FROM entity_credit_account
WHERE meta_number = in_meta_number
AND entity_class = in_account_class;
$$ LANGUAGE sql;
COMMENT ON FUNCTION entity_credit_get_id_by_meta_number
(in_meta_number text, in_account_class int) is
$$ Returns the credit id from the meta_number and entity_class.$$;
CREATE OR REPLACE FUNCTION entity_credit__get(in_id int)
RETURNS entity_credit_account AS
$$
SELECT * FROM entity_credit_account WHERE id = $1;
$$ language sql;
COMMENT ON FUNCTION entity_credit__get(in_id int) IS
$$ Returns the entity credit account info.$$;
CREATE OR REPLACE FUNCTION contact_class__list()
RETURNS SETOF contact_class AS
$$
SELECT * FROM contact_class ORDER BY id;
$$ language sql;
COMMENT ON FUNCTION contact_class__list() IS
$$ Returns a list of contact classes ordered by ID.$$;
DROP TYPE IF EXISTS entity_credit_search_return CASCADE;
CREATE TYPE entity_credit_search_return AS (
legal_name text,
id int,
entity_id int,
entity_control_code text,
entity_class int,
discount numeric,
taxincluded bool,
creditlimit numeric,
terms int2,
meta_number text,
credit_description text,
business_id int,
language_code text,
pricegroup_id int,
curr char(3),
startdate date,
enddate date,
ar_ap_account_id int,
cash_account_id int,
tax_id text,
threshold numeric
);
DROP TYPE IF EXISTS entity_credit_retrieve CASCADE;
CREATE TYPE entity_credit_retrieve AS (
id int,
entity_id int,
entity_class int,
discount numeric,
discount_terms int,
taxincluded bool,
creditlimit numeric,
terms int2,
meta_number text,
description text,
business_id int,
language_code text,
pricegroup_id int,
curr text,
startdate date,
enddate date,
ar_ap_account_id int,
cash_account_id int,
discount_account_id int,
threshold numeric,
control_code text,
credit_id int,
pay_to_name text,
taxform_id int
);
COMMENT ON TYPE entity_credit_search_return IS
$$ This may change in 1.4 and should not be relied upon too much $$;
CREATE OR REPLACE FUNCTION entity_credit_get_id
(in_entity_id int, in_entity_class int, in_meta_number text)
RETURNS int AS $$
SELECT id FROM entity_credit_account
WHERE entity_id = in_entity_id
AND in_entity_class = entity_class
AND in_meta_number = meta_number;
$$ language sql;
COMMENT ON FUNCTION entity_credit_get_id
(in_entity_id int, in_entity_class int, in_meta_number text) IS
$$ Returns an entity credit id, based on entity_id, entity_class,
and meta_number. This is the preferred way to locate an account if all three of
these are known$$;
CREATE OR REPLACE FUNCTION entity__list_credit
(in_entity_id int, in_entity_class int)
RETURNS SETOF entity_credit_retrieve AS
$$
SELECT ec.id, e.id, ec.entity_class, ec.discount,
ec.discount_terms,
ec.taxincluded, ec.creditlimit, ec.terms,
ec.meta_number, ec.description, ec.business_id,
ec.language_code,
ec.pricegroup_id, ec.curr::text, ec.startdate,
ec.enddate, ec.ar_ap_account_id, ec.cash_account_id,
ec.discount_account_id,
ec.threshold, e.control_code, ec.id, ec.pay_to_name,
ec.taxform_id
FROM entity e
JOIN entity_credit_account ec ON (e.id = ec.entity_id)
WHERE e.id = in_entity_id
$$ LANGUAGE SQL;
COMMENT ON FUNCTION entity__list_credit (in_entity_id int, in_entity_class int)
IS $$ Returns a list of entity credit account entries for the entity and of the
entity class.$$;
CREATE OR REPLACE FUNCTION company__get (in_entity_id int)
RETURNS company_entity AS
$$
SELECT c.entity_id, e.entity_class, c.legal_name, c.tax_id, c.sales_tax_id,
c.license_number, c.sic_code, e.control_code, e.country_id
FROM company c
JOIN entity e ON e.id = c.entity_id
WHERE entity_id = $1;
$$ language sql;
COMMENT ON FUNCTION company__get (in_entity_id int) IS
$$ Returns all attributes for the company attached to the entity.$$;
CREATE OR REPLACE FUNCTION company__get_by_cc (in_control_code text)
RETURNS company_entity AS
$$
SELECT c.entity_id, e.entity_class, c.legal_name, c.tax_id, c.sales_tax_id,
c.license_number, c.sic_code, e.control_code, e.country_id
FROM company c
JOIN entity e ON e.id = c.entity_id
WHERE e.control_code = $1;
$$ language sql;
COMMENT ON FUNCTION company__get_by_cc (in_control_code text) IS
$$ Returns the entity/company row attached to the control code. $$;
create or replace function save_taxform
(in_country_code int, in_taxform_name text)
RETURNS bool AS
$$
INSERT INTO country_tax_form(country_id, form_name)
values (in_country_code, in_taxform_name);
SELECT true;
$$ LANGUAGE SQL;
COMMENT ON function save_taxform (in_country_code int, in_taxform_name text) IS
$$ Saves tax form information. Returns true or raises exception.$$;
CREATE OR REPLACE FUNCTION list_taxforms (in_entity_id int) RETURNS SETOF country_tax_form AS
$$
DECLARE t_country_tax_form country_tax_form;
BEGIN
FOR t_country_tax_form IN
SELECT *
FROM country_tax_form where country_id in(SELECT country_id from entity where id=in_entity_id)
LOOP
RETURN NEXT t_country_tax_form;
END LOOP;
END;
$$ language plpgsql;
COMMENT ON FUNCTION list_taxforms (in_entity_id int) IS
$$Returns a list of tax forms for the entity's country.$$; --'
DROP TYPE IF EXISTS company_billing_info CASCADE;
CREATE TYPE company_billing_info AS (
name text,
meta_number text,
control_code text,
cash_account_id int,
tax_id text,
street1 text,
street2 text,
street3 text,
city text,
state text,
mail_code text,
country text
);
CREATE OR REPLACE FUNCTION company_get_billing_info (in_id int)
returns company_billing_info as
$$
select coalesce(eca.pay_to_name, c.legal_name), eca.meta_number,
e.control_code, eca.cash_account_id, c.tax_id,
a.line_one, a.line_two, a.line_three,
a.city, a.state, a.mail_code, cc.name
FROM (select legal_name, tax_id, entity_id
FROM company
UNION ALL
SELECT last_name || ', ' || first_name, null, entity_id
FROM person) c
JOIN entity e ON (c.entity_id = e.id)
JOIN entity_credit_account eca ON (eca.entity_id = e.id)
LEFT JOIN eca_to_location cl ON (eca.id = cl.credit_id)
LEFT JOIN location a ON (a.id = cl.location_id)
LEFT JOIN country cc ON (cc.id = a.country_id)
WHERE eca.id = in_id AND (location_class = 1 or location_class is null);
$$ language sql;
COMMENT ON FUNCTION company_get_billing_info (in_id int) IS
$$ Returns billing information (billing name and address) for a given credit
account.$$;
DROP FUNCTION IF EXISTS company_save (
in_id int, in_control_code text, in_entity_class int,
in_name text, in_tax_id TEXT,
in_entity_id int, in_sic_code text,in_country_id int,
in_sales_tax_id text, in_license_number text
);
DROP FUNCTION IF EXISTS company__save (
in_id int, in_control_code text, in_entity_class int,
in_legal_name text, in_tax_id TEXT,
in_entity_id int, in_sic_code text,in_country_id int,
in_sales_tax_id text, in_license_number text
);
CREATE OR REPLACE FUNCTION company__save (
in_control_code text, in_entity_class int,
in_legal_name text, in_tax_id TEXT,
in_entity_id int, in_sic_code text,in_country_id int,
in_sales_tax_id text, in_license_number text
) RETURNS company AS $$
DECLARE t_entity_id INT;
t_control_code TEXT;
t_retval COMPANY;
BEGIN
IF in_control_code IS NULL THEN
t_control_code := setting_increment('entity_control');
ELSE
t_control_code := in_control_code;
END IF;
UPDATE entity
SET name = in_legal_name,
entity_class = in_entity_class,
control_code = t_control_code,
country_id = in_country_id
WHERE id = in_entity_id;
IF FOUND THEN
t_entity_id = in_entity_id;
ELSE
INSERT INTO entity (name, entity_class, control_code,country_id)
VALUES (in_legal_name, in_entity_class, t_control_code,in_country_id);
t_entity_id := currval('entity_id_seq');
END IF;
UPDATE company
SET legal_name = in_legal_name,
tax_id = in_tax_id,
sic_code = in_sic_code,
sales_tax_id = in_sales_tax_id,
license_number = in_license_number
WHERE entity_id = t_entity_id;
IF NOT FOUND THEN
INSERT INTO company(entity_id, legal_name, tax_id, sic_code,
sales_tax_id, license_number)
VALUES (t_entity_id, in_legal_name, in_tax_id, in_sic_code,
in_sales_tax_id, in_license_number);
END IF;
SELECT * INTO t_retval FROM company WHERE entity_id = t_entity_id;
RETURN t_retval;
END;
$$ LANGUAGE PLPGSQL;
COMMENT ON FUNCTION company__save (
in_control_code text, in_entity_class int,
in_legal_name text, in_tax_id TEXT,
in_entity_id int, in_sic_code text,in_country_id int,
in_sales_tax_id text, in_license_number text
) is
$$ Saves a company. Returns the id number of the record stored.$$;
CREATE OR REPLACE FUNCTION pricegroup__list() RETURNS SETOF pricegroup AS
$$
SELECT * FROM pricegroup ORDER BY pricegroup;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION pricegroup__list() IS
$$ Returns an alphabetically ordered pricegroup list.$$;
DROP FUNCTION IF EXISTS entity_credit_save (
in_credit_id int, in_entity_class int,
in_entity_id int, in_description text,
in_discount numeric, in_taxincluded bool, in_creditlimit numeric,
in_discount_terms int,
in_terms int, in_meta_number varchar(32), in_business_id int,
in_language varchar(6), in_pricegroup_id int,
in_curr char, in_startdate date, in_enddate date,
in_threshold NUMERIC,
in_ar_ap_account_id int,
in_cash_account_id int,
in_pay_to_name text,
in_taxform_id int);
DROP FUNCTION IF EXISTS eca__save (
in_credit_id int, in_entity_class int,
in_entity_id int, in_description text,
in_discount numeric, in_taxincluded bool, in_creditlimit numeric,
in_discount_terms int,
in_terms int, in_meta_number varchar(32), in_business_id int,
in_language_code varchar(6), in_pricegroup_id int,
in_curr char, in_startdate date, in_enddate date,
in_threshold NUMERIC,
in_ar_ap_account_id int,
in_cash_account_id int,
in_pay_to_name text,
in_taxform_id int);
CREATE OR REPLACE FUNCTION eca__save (
in_id int, in_entity_class int,
in_entity_id int, in_description text,
in_discount numeric, in_taxincluded bool, in_creditlimit numeric,
in_discount_terms int,
in_terms int, in_meta_number varchar(32), in_business_id int,
in_language_code varchar(6), in_pricegroup_id int,
in_curr char, in_startdate date, in_enddate date,
in_threshold NUMERIC,
in_ar_ap_account_id int,
in_cash_account_id int,
in_pay_to_name text,
in_taxform_id int,
in_discount_account_id int
) returns INT as $$
DECLARE
t_entity_class int;
l_id int;
t_meta_number text;
t_mn_default_key text;
BEGIN
-- TODO: Move to mapping table.
IF in_entity_class = 1 THEN
t_mn_default_key := 'vendornumber';
ELSIF in_entity_class = 2 THEN
t_mn_default_key := 'customernumber';
END IF;
IF in_meta_number IS NULL THEN
t_meta_number := setting_increment(t_mn_default_key);
ELSE
t_meta_number := in_meta_number;
END IF;
update entity_credit_account SET
discount = in_discount,
taxincluded = in_taxincluded,
creditlimit = in_creditlimit,
description = in_description,
terms = in_terms,
ar_ap_account_id = in_ar_ap_account_id,
cash_account_id = in_cash_account_id,
discount_account_id = in_discount_account_id,
meta_number = t_meta_number,
business_id = in_business_id,
language_code = in_language_code,
pricegroup_id = in_pricegroup_id,
curr = in_curr,
startdate = in_startdate,
enddate = in_enddate,
threshold = in_threshold,
discount_terms = in_discount_terms,
pay_to_name = in_pay_to_name,
taxform_id = in_taxform_id
where id = in_id;
IF FOUND THEN
RETURN in_id;
ELSE
INSERT INTO entity_credit_account (
entity_id,
entity_class,
discount,
description,
taxincluded,
creditlimit,
terms,
meta_number,
business_id,
language_code,
pricegroup_id,
curr,
startdate,
enddate,
discount_terms,
threshold,
ar_ap_account_id,
pay_to_name,
taxform_id,
cash_account_id,
discount_account_id
)
VALUES (
in_entity_id,
in_entity_class,
in_discount,
in_description,
in_taxincluded,
in_creditlimit,
in_terms,
t_meta_number,
in_business_id,
in_language_code,
in_pricegroup_id,
in_curr,
in_startdate,
in_enddate,
in_discount_terms,
in_threshold,
in_ar_ap_account_id,
in_pay_to_name,
in_taxform_id,
in_cash_account_id,
in_discount_account_id
);
RETURN currval('entity_credit_account_id_seq');
END IF;
END;
$$ language 'plpgsql';
COMMENT ON FUNCTION eca__save (
in_id int, in_entity_class int,
in_entity_id int, in_description text,
in_discount numeric, in_taxincluded bool, in_creditlimit numeric,
in_discount_terms int,
in_terms int, in_meta_number varchar(32), in_business_id int,
in_language_code varchar(6), in_pricegroup_id int,
in_curr char, in_startdate date, in_enddate date,
in_threshold NUMERIC,
in_ar_ap_account_id int,
in_cash_account_id int,
in_pay_to_name text,
in_taxform_id int,
in_discount_account_id int
) IS
$$ Saves an entity credit account. Returns the id of the record saved. $$;
CREATE OR REPLACE FUNCTION entity__list_locations(in_entity_id int)
RETURNS SETOF location_result AS
$$
SELECT l.id, l.line_one, l.line_two, l.line_three, l.city,
l.state, l.mail_code, c.id, c.name, lc.id, lc.class
FROM location l
JOIN entity_to_location ctl ON (ctl.location_id = l.id)
JOIN location_class lc ON (ctl.location_class = lc.id)
JOIN country c ON (c.id = l.country_id)
WHERE ctl.entity_id = in_entity_id
ORDER BY lc.id, l.id, c.name;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION entity__list_locations(in_entity_id int) IS
$$ Lists all locations for an entity.$$;
DROP TYPE IF EXISTS contact_list CASCADE;
CREATE TYPE contact_list AS (
class text,
class_id int,
description text,
contact text
);
CREATE OR REPLACE FUNCTION entity__list_contacts(in_entity_id int)
RETURNS SETOF contact_list AS $$
SELECT cl.class, cl.id, c.description, c.contact
FROM entity_to_contact c
JOIN contact_class cl ON (c.contact_class_id = cl.id)
WHERE c.entity_id = in_entity_id
$$ language sql;
COMMENT ON FUNCTION entity__list_contacts(in_entity_id int) IS
$$ Lists all contact info for the entity.$$;
CREATE OR REPLACE FUNCTION entity__list_bank_account(in_entity_id int)
RETURNS SETOF entity_bank_account AS
$$
SELECT * from entity_bank_account where entity_id = in_entity_id;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION entity__list_bank_account(in_entity_id int) IS
$$ Lists all bank accounts for the entity.$$;
DROP FUNCTION IF EXISTS entity__save_bank_account
(in_entity_id int, in_credit_id int, in_bic text, in_iban text,
in_bank_account_id int);
drop function if exists entity__save_bank_account
(in_entity_id int, in_credit_id int, in_bic text, in_iban text, in_remark text,
in_bank_account_id int);
CREATE OR REPLACE FUNCTION entity__save_bank_account
(in_entity_id int, in_credit_id int, in_bic text, in_iban text, in_remark text,
in_bank_account_id int)
RETURNS entity_bank_account AS
$$
DECLARE out_bank entity_bank_account;
BEGIN
UPDATE entity_bank_account
SET bic = coalesce(in_bic,''),
iban = in_iban,
remark = in_remark
WHERE id = in_bank_account_id;
IF FOUND THEN
SELECT * INTO out_bank from entity_bank_account WHERE id = in_bank_account_id;
ELSE
INSERT INTO entity_bank_account(entity_id, bic, iban, remark)
VALUES(in_entity_id, in_bic, in_iban, in_remark);
SELECT * INTO out_bank from entity_bank_account WHERE id = CURRVAL('entity_bank_account_id_seq');
END IF;
IF in_credit_id IS NOT NULL THEN
UPDATE entity_credit_account SET bank_account = out_bank.id
WHERE id = in_credit_id;
END IF;
return out_bank;
END;
$$ LANGUAGE PLPGSQL;
COMMENT ON FUNCTION entity__save_bank_account
(in_entity_id int, in_credit_id int, in_bic text, in_iban text, in_remark text,
in_bank_account_id int) IS
$$ Saves bank account to the credit account.$$;
CREATE OR REPLACE FUNCTION entity__delete_contact
(in_entity_id int, in_class_id int, in_contact text)
returns bool as $$
BEGIN
DELETE FROM entity_to_contact
WHERE entity_id = in_entity_id
and contact_class_id = in_class_id
and contact= in_contact;
RETURN FOUND;
END;
$$ language plpgsql;
COMMENT ON FUNCTION entity__delete_contact
(in_company_id int, in_contact_class_id int, in_contact text) IS
$$ Returns true if at least one record was deleted. False if no records were
affected.$$;
CREATE OR REPLACE FUNCTION eca__delete_contact
(in_credit_id int, in_class_id int, in_contact text)
returns bool as $$
BEGIN
DELETE FROM eca_to_contact
WHERE credit_id = in_credit_id and contact_class_id = in_class_id
and contact= in_contact;
RETURN FOUND;
END;
$$ language plpgsql;
COMMENT ON FUNCTION eca__delete_contact
(in_credit_id int, in_contact_class_id int, in_contact text) IS
$$ Returns true if at least one record was deleted. False if no records were
affected.$$;
DROP FUNCTION IF EXISTS entity__save_contact
(in_entity_id int, in_class_id int, in_description text, in_contact text,
in_old_contact text, in_old_class_id int);
CREATE OR REPLACE FUNCTION entity__save_contact
(in_entity_id int, in_class_id int, in_description text, in_contact text,
in_old_contact text, in_old_class_id int)
RETURNS entity_to_contact AS
$$
DELETE FROM entity_to_contact
WHERE entity_id = in_entity_id AND contact = in_old_contact
AND contact_class_id = in_old_class_id;
INSERT INTO entity_to_contact
(entity_id, contact_class_id, description, contact)
VALUES (in_entity_id, in_class_id, in_description, in_contact)
RETURNING *;
$$ LANGUAGE SQL;
COMMENT ON FUNCTION entity__save_contact
(in_entity_id int, in_contact_class int, in_description text, in_contact text,
in_old_contact text, in_old_class_id int) IS
$$ Saves company contact information. The return value is meaningless. $$;
DROP TYPE IF EXISTS entity_note_list CASCADE;
CREATE TYPE entity_note_list AS (
id int,
note_class int,
note text
);
CREATE OR REPLACE FUNCTION entity__list_notes(in_entity_id int)
RETURNS SETOF entity_note AS
$$
SELECT *
FROM entity_note
WHERE ref_key = in_entity_id
ORDER BY created
$$ LANGUAGE SQL;
COMMENT ON FUNCTION entity__list_notes(in_entity_id int) IS
$$ Returns a set of notes (including content) attached to the entity.$$;
CREATE OR REPLACE FUNCTION eca__list_notes(in_credit_id int)
RETURNS SETOF note AS
$$
DECLARE out_row record;
t_entity_id int;
BEGIN
-- ALERT: security definer function. Be extra careful about EXECUTE
-- in here. --CT
SELECT entity_id INTO t_entity_id
FROM entity_credit_account
WHERE id = in_credit_id;
FOR out_row IN
SELECT *
FROM note
WHERE (note_class = 3 and ref_key = in_credit_id) or
(note_class = 1 and ref_key = t_entity_id)
ORDER BY created
LOOP
RETURN NEXT out_row;
END LOOP;
END;
$$ LANGUAGE PLPGSQL SECURITY DEFINER;
COMMENT ON FUNCTION eca__list_notes(in_credit_id int) IS
$$Returns a list of notes attached to the entity credit account.$$;
REVOKE EXECUTE ON FUNCTION eca__list_notes(INT) FROM public;
CREATE OR REPLACE FUNCTION company__next_id() returns bigint as $$
select nextval('company_id_seq');
$$ language 'sql';
CREATE OR REPLACE FUNCTION entity__location_save (
in_entity_id int, in_id int,
in_location_class int, in_line_one text, in_line_two text,
in_city TEXT, in_state TEXT, in_mail_code text, in_country_id int,
in_created date
) returns int AS $$
BEGIN
return _entity_location_save(
in_entity_id, in_id,
in_location_class, in_line_one, in_line_two,
'', in_city , in_state, in_mail_code, in_country_id);
END;
$$ language 'plpgsql';
COMMENT ON FUNCTION entity__location_save (
in_entity_id int, in_id int,
in_location_class int, in_line_one text, in_line_two text,
in_city TEXT, in_state TEXT, in_mail_code text, in_country_id int,
in_created date
) IS
$$ Saves a location to a company. Returns the location id.$$;
create or replace function _entity_location_save(
in_entity_id int, in_location_id int,
in_location_class int, in_line_one text, in_line_two text,
in_line_three text, in_city TEXT, in_state TEXT, in_mail_code text,
in_country_id int
) returns int AS $$
DECLARE
l_row location;
l_id INT;
t_company_id int;
BEGIN
SELECT id INTO t_company_id
FROM company WHERE entity_id = in_entity_id;
DELETE FROM entity_to_location
WHERE entity_id = in_entity_id
AND location_class = in_location_class
AND location_id = in_location_id;
SELECT location_save(NULL, in_line_one, in_line_two, in_line_three, in_city,
in_state, in_mail_code, in_country_id)
INTO l_id;
INSERT INTO entity_to_location
(entity_id, location_class, location_id)
VALUES (in_entity_id, in_location_class, l_id);
RETURN l_id;
END;
$$ language 'plpgsql';
COMMENT ON FUNCTION _entity_location_save(
in_entity_id int, in_location_id int,
in_location_class int, in_line_one text, in_line_two text,
in_line_three text, in_city TEXT, in_state TEXT, in_mail_code text,
in_country_code int
) IS
$$ Private method for storing locations to an entity. Do not call directly.
Returns the location id that was inserted or updated.$$;
create or replace function eca__location_save(
in_credit_id int, in_id int,
in_location_class int, in_line_one text, in_line_two text,
in_line_three text, in_city TEXT, in_state TEXT, in_mail_code text,
in_country_id int, in_old_location_class int
) returns int AS $$
DECLARE
l_row location;
l_id INT;
l_orig_id INT;
BEGIN
UPDATE eca_to_location
SET location_class = in_location_class
WHERE credit_id = in_credit_id
AND location_class = in_old_location_class
AND location_id = in_id;
IF FOUND THEN
SELECT location_save(
in_id,
in_line_one,
in_line_two,
in_line_three,
in_city,
in_state,
in_mail_code,
in_country_id
)
INTO l_id;
ELSE
SELECT location_save(
NULL,
in_line_one,
in_line_two,
in_line_three,
in_city,
in_state,
in_mail_code,
in_country_id
)
INTO l_id;
INSERT INTO eca_to_location
(credit_id, location_class, location_id)
VALUES (in_credit_id, in_location_class, l_id);
END IF;
RETURN l_id;
END;
$$ language 'plpgsql';
COMMENT ON function eca__location_save(
in_credit_id int, in_id int,
in_location_class int, in_line_one text, in_line_two text,
in_line_three text, in_city TEXT, in_state TEXT, in_mail_code text,
in_country_code int, in_old_location_class int
) IS
$$ Saves a location to an entity credit account. Returns id of saved record.$$;
CREATE OR REPLACE FUNCTION eca__delete_location
(in_credit_id int, in_id int, in_location_class int)
RETURNS BOOL AS
$$
BEGIN
DELETE FROM eca_to_location
WHERE credit_id = in_credit_id AND location_id = in_id
AND location_class = in_location_class;
RETURN FOUND;
END;
$$ language plpgsql;
COMMENT ON FUNCTION eca__delete_location
(in_credit_id int, in_id int, in_location_class int) IS
$$ Deletes the record identified. Returns true if successful, false if no record
found.$$;
CREATE OR REPLACE FUNCTION entity__delete_location
(in_entity_id int, in_id int, in_location_class int)
RETURNS BOOL AS
$$
BEGIN
DELETE FROM entity_to_location
WHERE entity_id = in_entity_id AND location_id = in_id
AND location_class = in_location_class;
RETURN FOUND;
END;
$$ language plpgsql;
COMMENT ON FUNCTION entity__delete_location
(in_entity_id int, in_id int, in_location_class int) IS
$$ Deletes the record identified. Returns true if successful, false if no record
found.$$;
CREATE OR REPLACE FUNCTION eca__list_locations(in_credit_id int)
RETURNS SETOF location_result AS
$$
SELECT l.id, l.line_one, l.line_two, l.line_three, l.city,
l.state, l.mail_code, c.id, c.name, lc.id, lc.class
FROM location l
JOIN eca_to_location ctl ON (ctl.location_id = l.id)
JOIN location_class lc ON (ctl.location_class = lc.id)
JOIN country c ON (c.id = l.country_id)
WHERE ctl.credit_id = in_credit_id
ORDER BY lc.id, l.id, c.name
$$ LANGUAGE SQL;
COMMENT ON FUNCTION eca__list_locations(in_credit_id int) IS
$$ Returns a list of locations attached to the credit account.$$;
CREATE OR REPLACE FUNCTION eca__list_contacts(in_credit_id int)
RETURNS SETOF contact_list AS $$
DECLARE out_row contact_list;
BEGIN
FOR out_row IN
SELECT cl.class, cl.id, c.description, c.contact
FROM eca_to_contact c
JOIN contact_class cl ON (c.contact_class_id = cl.id)
WHERE credit_id = in_credit_id
LOOP
return next out_row;
END LOOP;
END;
$$ language plpgsql;
COMMENT ON FUNCTION eca__list_contacts(in_credit_id int) IS
$$ Returns a list of contact info attached to the entity credit account.$$;
DROP FUNCTION IF EXISTS eca__save_contact(int, int, text, text, text, int);
CREATE OR REPLACE FUNCTION eca__save_contact
(in_credit_id int, in_class_id int, in_description text, in_contact text,
in_old_contact text, in_old_class_id int)
RETURNS eca_to_contact AS
$$
DECLARE out_contact eca_to_contact;
BEGIN
PERFORM *
FROM eca_to_contact
WHERE credit_id = in_credit_id
AND contact_class_id = in_old_class_id
AND contact = in_old_contact;
IF FOUND THEN
UPDATE eca_to_contact
SET contact = in_contact,
description = in_description,
contact_class_id = in_class_id
WHERE credit_id = in_credit_id
AND contact_class_id = in_old_class_id
AND contact = in_old_contact
returning * INTO out_contact;
return out_contact;
END IF;
INSERT INTO eca_to_contact(credit_id, contact_class_id,
description, contact)
VALUES (in_credit_id, in_class_id, in_description, in_contact)
RETURNING * into out_contact;
return out_contact;
END;
$$ LANGUAGE PLPGSQL;
COMMENT ON FUNCTION eca__save_contact
(in_credit_id int, in_contact_class int, in_description text, in_contact text,
in_old_contact text, in_old_contact_class int) IS
$$ Saves the contact record at the entity credit account level. Returns 1.$$;
CREATE OR REPLACE FUNCTION company__get_all_accounts (
in_entity_id int,
in_entity_class int
) RETURNS SETOF entity_credit_account AS $body$
SELECT *
FROM entity_credit_account
WHERE entity_id = $1
AND entity_class = $2;
$body$ language SQL;
COMMENT ON FUNCTION company__get_all_accounts (
in_entity_id int,
in_entity_class int
) IS
$$ Returns a list of all entity credit accounts attached to that entity.$$;
-- pricematrix
CREATE OR REPLACE FUNCTION eca__get_pricematrix_by_pricegroup(in_credit_id int)
RETURNS SETOF eca__pricematrix AS
$$
SELECT pc.parts_id, p.partnumber, p.description, pc.credit_id, pc.pricebreak,
pc.sellprice, NULL::numeric, NULL::int, NULL::text, pc.validfrom,
pc.validto, pc.curr, pc.entry_id, pc.qty
FROM partscustomer pc
JOIN parts p on pc.parts_id = p.id
JOIN entity_credit_account eca ON pc.pricegroup_id = eca.pricegroup_id
WHERE eca.id = $1 AND eca.entity_class = 2
$$ LANGUAGE SQL;
CREATE OR REPLACE FUNCTION eca__get_pricematrix(in_credit_id int)
RETURNS SETOF eca__pricematrix AS
$$
SELECT pc.parts_id, p.partnumber, p.description, pc.credit_id, pc.pricebreak,
pc.sellprice, NULL, NULL::int, NULL, pc.validfrom, pc.validto, pc.curr,
pc.entry_id, pc.qty
FROM partscustomer pc
JOIN parts p on pc.parts_id = p.id
JOIN entity_credit_account eca ON pc.credit_id = eca.id
WHERE pc.credit_id = $1 AND eca.entity_class = 2
UNION
SELECT pv.parts_id, p.partnumber, p.description, pv.credit_id, NULL, NULL,
pv.lastcost, pv.leadtime::int, pv.partnumber, NULL, NULL, pv.curr,
pv.entry_id, null
FROM partsvendor pv
JOIN parts p on pv.parts_id = p.id
JOIN entity_credit_account eca ON pv.credit_id = eca.id
WHERE pv.credit_id = $1 and eca.entity_class = 1
ORDER BY partnumber, validfrom
$$ language sql;
COMMENT ON FUNCTION eca__get_pricematrix(in_credit_id int) IS
$$ This returns the pricematrix for the customer or vendor
(entity_credit_account identified by in_id), orderd by partnumber, validfrom
$$;
CREATE OR REPLACE FUNCTION eca__delete_pricematrix
(in_credit_id int, in_entry_id int)
RETURNS BOOL AS
$$
DECLARE retval bool;
BEGIN
retval := false;
DELETE FROM partsvendor
WHERE entry_id = in_entry_id
AND credit_id = in_credit_id;
retval := FOUND;
DELETE FROM partscustomer
WHERE entry_id = in_entry_id
AND credit_id = in_credit_id;
RETURN FOUND or retval;
END;
$$ language plpgsql;
CREATE OR REPLACE FUNCTION eca__save_pricematrix
(in_parts_id int, in_credit_id int, in_pricebreak numeric, in_price numeric,
in_lead_time int2, in_partnumber text, in_validfrom date, in_validto date,
in_curr char(3), in_entry_id int)
RETURNS eca__pricematrix AS
$$
DECLARE
retval eca__pricematrix;
t_insert bool;
BEGIN
t_insert := false;
PERFORM * FROM entity_credit_account
WHERE id = in_credit_id AND entity_class = 1;
IF FOUND THEN -- VENDOR
UPDATE partsvendor
SET lastcost = in_price,
leadtime = in_lead_time,
partnumber = in_partnumber,
curr = in_curr
WHERE credit_id = in_credit_id AND entry_id = in_entry_id;
IF NOT FOUND THEN
INSERT INTO partsvendor
(parts_id, credit_id, lastcost, leadtime, partnumber, curr)
VALUES (in_parts_id, in_credit_id, in_price, in_lead_time::int2,
in_partnumber, in_curr);
END IF;
SELECT pv.parts_id, p.partnumber, p.description, pv.credit_id, NULL, NULL,
pv.lastcost, pv.leadtime::int, pv.partnumber, NULL, NULL, pv.curr,
pv.entry_id, null
INTO retval
FROM partsvendor pv
JOIN parts p ON p.id = pv.parts_id
WHERE parts_id = in_parts_id and credit_id = in_credit_id;
RETURN retval;
END IF;
PERFORM * FROM entity_credit_account
WHERE id = in_credit_id AND entity_class = 2;
IF FOUND THEN -- CUSTOMER
UPDATE partscustomer
SET pricebreak = in_pricebreak,
sellprice = in_price,
validfrom = in_validfrom,
validto = in_validto,
qty = in_qty,
curr = in_curr
WHERE entry_id = in_entry_id and credit_id = in_credit_id;
IF NOT FOUND THEN
INSERT INTO partscustomer
(parts_id, credit_id, sellprice, validfrom, validto, curr, qty)
VALUES (in_parts_id, in_credit_id, in_price, in_validfrom, in_validto,
in_curr, in_qty);
t_insert := true;
END IF;
SELECT pc.parts_id, p.partnumber, p.description, pc.credit_id,
pc.pricebreak, pc.sellprice, NULL, NULL, NULL, pc.validfrom,
pc.validto, pc.curr, pc.entry_id, pc.qty
INTO retval
FROM partscustomer pc
JOIN parts p on pc.parts_id = p.id
WHERE entry_id = CASE WHEN t_insert
THEN currval('partscustomer_entry_id_seq')
ELSE in_entry_id
END;
RETURN retval;
END IF;
RAISE EXCEPTION 'No valid entity credit account found';
END;
$$ LANGUAGE PLPGSQL;
COMMENT ON FUNCTION eca__get_pricematrix(in_id int) IS
$$ This returns the pricematrix for the customer or vendor
(entity_credit_account identified by in_id), orderd by partnumber, validfrom
$$;
CREATE OR REPLACE FUNCTION eca__delete_pricematrix
(in_credit_id int, in_entry_id int)
RETURNS BOOL AS
$$
DECLARE retval bool;
BEGIN
retval := false;
DELETE FROM partsvendor
WHERE entry_id = in_entry_id
AND credit_id = in_credit_id;
retval := FOUND;
DELETE FROM partscustomer
WHERE entry_id = in_entry_id
AND credit_id = in_credit_id;
RETURN FOUND or retval;
END;
$$ language plpgsql;
CREATE OR REPLACE FUNCTION pricelist__save
(in_parts_id int, in_credit_id int, in_pricebreak numeric, in_price numeric,
in_lead_time int2, in_partnumber text, in_validfrom date, in_validto date,
in_curr char(3), in_entry_id int, in_qty numeric)
RETURNS eca__pricematrix AS
$$
DECLARE
retval eca__pricematrix;
t_insert bool;
t_entity_class int;
BEGIN
t_insert := false;
SELECT entity_class INTO t_entity_class FROM entity_credit_account
WHERE id = in_credit_id;
IF t_entity_class = 1 THEN -- VENDOR
UPDATE partsvendor
SET lastcost = in_price,
leadtime = in_lead_time,
partnumber = in_partnumber,
curr = in_curr
WHERE credit_id = in_credit_id AND entry_id = in_entry_id;
IF NOT FOUND THEN
INSERT INTO partsvendor
(parts_id, credit_id, lastcost, leadtime, partnumber, curr)
VALUES (in_parts_id, in_credit_id, in_price, in_leadtime::int2,
in_partnumber, in_curr);
END IF;
SELECT pv.parts_id, p.partnumber, p.description, pv.credit_id, NULL, NULL,
pv.lastcost, pv.leadtime::int, pv.partnumber, NULL, NULL, pv.curr,
pv.entry_id
INTO retval
FROM partsvendor pv
JOIN parts p ON p.id = pv.parts_id
WHERE parts_id = in_parts_id and credit_id = in_credit_id;
RETURN retval;
ELSIF t_entity_class = 2 THEN -- CUSTOMER
UPDATE partscustomer
SET pricebreak = in_pricebreak,
sellprice = in_price,
validfrom = in_validfrom,
validto = in_validto,
qty = in_qty,
curr = in_curr
WHERE entry_id = in_entry_id and credit_id = in_credit_id;
IF NOT FOUND THEN
INSERT INTO partscustomer
(parts_id, credit_id, sellprice, validfrom, validto, curr, qty)
VALUES (in_parts_id, in_credit_id, in_price, in_validfrom, in_validto,
in_curr, in_qty);
t_insert := true;
END IF;
SELECT pc.parts_id, p.partnumber, p.description, pc.credit_id,
pc.pricebreak, pc.sellprice, NULL, NULL, NULL, pc.validfrom,
pc.validto, pc.curr, pc.entry_id, qty
INTO retval
FROM partscustomer pc
JOIN parts p on pc.parts_id = p.id
WHERE entry_id = CASE WHEN t_insert
THEN currval('partscustomer_entry_id_seq')
ELSE in_entry_id
END;
RETURN retval;
ELSE
RAISE EXCEPTION 'No valid entity credit account found';
END IF;
END;
$$ LANGUAGE PLPGSQL;
CREATE OR REPLACE FUNCTION pricelist__delete(in_entry_id int, in_credit_id int)
returns bool as
$$
delete from partscustomer where entry_id = $1 and credit_id = $2;
delete from partsvendor where entry_id = $1 and credit_id = $2;
select true;
$$ language sql;
CREATE OR REPLACE FUNCTION sic__list()
RETURNS SETOF sic LANGUAGE SQL AS
$$
SELECT * FROM sic ORDER BY code;
$$;
update defaults set value = 'yes' where setting_key = 'module_load_ok';
COMMIT;
|