a486127ade
- Add SalesInvoiceTspSwitchService to manage TSP provider selection and sending invoices. - Introduce SalesInvoiceTspService for creating, sending, and retrieving sales invoices. - Implement NamaProviderSwitchAdapter for communication with the NAMA TSP provider API. - Define DTOs for request and response structures specific to the NAMA provider. - Enhance error handling and logging for TSP provider interactions.
15 lines
517 B
SQL
15 lines
517 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to alter the column `invoice_number_sequence` on the `business_activities` table. The data in that column could be lost. The data in that column will be cast from `VarChar(191)` to `Decimal(20,0)`.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `business_activities` MODIFY `invoice_number_sequence` DECIMAL(20, 0) NOT NULL DEFAULT 1;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE `guilds` ALTER COLUMN `invoice_template` DROP DEFAULT;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE `stock_keeping_units` ALTER COLUMN `type` DROP DEFAULT;
|