- Added SequelizeProformaV2RecipientDomainMapper for mapping recipient data to domain model. - Introduced SequelizeProformaV2TaxesDomainMapper for handling tax data mapping. - Created SequelizeProformaV2RecipientSummaryMapper for summarizing recipient information. - Developed SequelizeProformaV2SummaryMapper for mapping Proforma summary data. - Implemented SequelizeProformaRepositoryV2 for managing Proforma data persistence. - Added SequelizeProformaV2NumberGenerator for generating Proforma numbers.
27 lines
500 B
SQL
27 lines
500 B
SQL
INSERT INTO
|
|
companies (
|
|
id,
|
|
legal_name,
|
|
trade_name,
|
|
tin,
|
|
slug,
|
|
email,
|
|
phone,
|
|
website,
|
|
status,
|
|
created_at,
|
|
updated_at
|
|
)
|
|
VALUES (
|
|
'5e4dc5b3-96b9-4968-9490-14bd032fec5f',
|
|
'Rodax Software S.L.',
|
|
'Rodax',
|
|
NULL,
|
|
'rodax',
|
|
'admin@local.test',
|
|
NULL,
|
|
NULL,
|
|
'active',
|
|
'2026-07-06 13:12:33.000',
|
|
'2026-07-06 13:12:33.000'
|
|
); |