Skip to content

Commit

Permalink
AdresseData.IsBillingAddress change to IsBilling #181
Browse files Browse the repository at this point in the history
  • Loading branch information
schefbi committed Aug 23, 2024
1 parent de43640 commit 195418e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/list/category/event/confirmation.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function createAddresses(useCompanyAddress, addressData, companyAddressData) {
companyAddressData.PersonId = parseInt(personId);
companyAddressData.AddressType = 'Arbeitgeber';
companyAddressData.AddressTypeId = 501;
companyAddressData.IsBillingAddress = true;
companyAddressData.IsBilling = true;
companyAddressData.Country = companyAddressData.Country === null ? 'Schweiz' : companyAddressData.Country;
companyAddressData.CountryId = companyAddressData.CountryId === null ? 'CH' : companyAddressData.CountryId;

Expand Down

0 comments on commit 195418e

Please sign in to comment.