2022-10-03 11:09:36 +02:00
|
|
|
|
--liquibase formatted sql
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- ============================================================================
|
|
|
|
|
--changeset hs-office-debitor-TEST-DATA-GENERATOR:1 endDelimiter:--//
|
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Creates a single debitor test record.
|
|
|
|
|
*/
|
|
|
|
|
create or replace procedure createHsOfficeDebitorTestData( partnerTradeName varchar, billingContactLabel varchar )
|
|
|
|
|
language plpgsql as $$
|
|
|
|
|
declare
|
2022-10-05 17:22:33 +02:00
|
|
|
|
currentTask varchar;
|
|
|
|
|
idName varchar;
|
|
|
|
|
relatedPartner hs_office_partner;
|
|
|
|
|
relatedContact hs_office_contact;
|
|
|
|
|
relatedBankAccountUuid uuid;
|
|
|
|
|
newDebitorNumber numeric(6);
|
2022-10-03 11:09:36 +02:00
|
|
|
|
begin
|
|
|
|
|
idName := cleanIdentifier( partnerTradeName|| '-' || billingContactLabel);
|
2022-10-13 10:36:20 +02:00
|
|
|
|
currentTask := 'creating debitor test-data ' || idName;
|
2022-10-03 11:09:36 +02:00
|
|
|
|
call defineContext(currentTask, null, 'superuser-alex@hostsharing.net', 'global#global.admin');
|
|
|
|
|
execute format('set local hsadminng.currentTask to %L', currentTask);
|
|
|
|
|
|
|
|
|
|
select partner.* from hs_office_partner partner
|
|
|
|
|
join hs_office_person person on person.uuid = partner.personUuid
|
|
|
|
|
where person.tradeName = partnerTradeName into relatedPartner;
|
|
|
|
|
select c.* from hs_office_contact c where c.label = billingContactLabel into relatedContact;
|
2022-10-05 17:22:33 +02:00
|
|
|
|
select b.uuid from hs_office_bankaccount b where b.holder = partnerTradeName into relatedBankAccountUuid;
|
2022-10-03 11:09:36 +02:00
|
|
|
|
select coalesce(max(debitorNumber)+1, 10001) from hs_office_debitor into newDebitorNumber;
|
|
|
|
|
|
|
|
|
|
raise notice 'creating test debitor: % (#%)', idName, newDebitorNumber;
|
|
|
|
|
raise notice '- using partner (%): %', relatedPartner.uuid, relatedPartner;
|
|
|
|
|
raise notice '- using billingContact (%): %', relatedContact.uuid, relatedContact;
|
|
|
|
|
insert
|
2022-10-05 17:22:33 +02:00
|
|
|
|
into hs_office_debitor (uuid, partneruuid, debitornumber, billingcontactuuid, vatbusiness, refundbankaccountuuid)
|
|
|
|
|
values (uuid_generate_v4(), relatedPartner.uuid, newDebitorNumber, relatedContact.uuid, true, relatedBankAccountUuid);
|
2022-10-03 11:09:36 +02:00
|
|
|
|
end; $$;
|
|
|
|
|
--//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- ============================================================================
|
|
|
|
|
--changeset hs-office-debitor-TEST-DATA-GENERATION:1 –context=dev,tc endDelimiter:--//
|
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
do language plpgsql $$
|
|
|
|
|
begin
|
|
|
|
|
call createHsOfficeDebitorTestData('First GmbH', 'first contact');
|
|
|
|
|
call createHsOfficeDebitorTestData('Second e.K.', 'second contact');
|
|
|
|
|
call createHsOfficeDebitorTestData('Third OHG', 'third contact');
|
|
|
|
|
end;
|
|
|
|
|
$$;
|
|
|
|
|
--//
|