├── .github ├── CODEOWNERS └── workflows │ ├── build.yaml │ └── upmerge_pr.yaml ├── .gitignore ├── CHANGELOG-2.0.md ├── LICENSE ├── LICENSE_OF_TRADEMARK_AND_LOGO ├── README.md ├── UPGRADE-2.0.md ├── assets ├── admin │ ├── controllers.json │ └── entrypoint.js ├── shop │ ├── controllers.json │ └── entrypoint.js └── sylius-logo.png ├── behat.yml.dist ├── composer.json ├── config ├── config.yaml ├── doctrine │ ├── BillingData.orm.xml │ ├── Invoice.orm.xml │ ├── InvoiceSequence.orm.xml │ ├── InvoiceShopBillingData.orm.xml │ ├── LineItem.orm.xml │ └── TaxItem.orm.xml ├── routes.yaml ├── routes │ ├── admin.yaml │ └── shop.yaml ├── services.xml ├── services │ ├── cli.xml │ ├── controllers.xml │ ├── converters.xml │ ├── fixtures.xml │ ├── generators.xml │ ├── listeners.xml │ ├── listeners │ │ └── workflow.xml │ ├── twig.xml │ └── ui.xml ├── twig_hooks │ ├── admin │ │ ├── invoice │ │ │ └── show.yaml │ │ └── order │ │ │ └── show.yaml │ └── shop │ │ └── order │ │ └── summary.yaml ├── validation.xml └── winzou_state_machine.php ├── ecs.php ├── etc └── build │ └── .gitkeep ├── features └── managing_invoices │ ├── being_unable_to_download_other_users_invoice.feature │ ├── browsing_invoices.feature │ ├── filtering_invoices.feature │ ├── generating_invoices_for_previously_placed_orders.feature │ ├── pdf_generation_disabled │ ├── being_unable_to_download_invoice_on_admin_order_view.feature │ ├── being_unable_to_download_invoice_on_customer_order_view.feature │ ├── being_unable_to_download_invoice_on_its_details_page.feature │ └── showing_plain_invoice_numbers_on_orders_list_when_PDF_is_disabled.feature │ ├── pdf_generation_enabled │ ├── downloading_invoice_on_admin_order_view.feature │ ├── downloading_invoice_on_customer_order_view.feature │ ├── downloading_invoice_on_its_details_page.feature │ ├── saving_invoices_on_server_during_generation.feature │ └── showing_invoice_links_on_orders_list_when_PDF_is_enabled.feature │ ├── resending_invoices_to_customer.feature │ ├── seeing_invoice.feature │ ├── seeing_invoice_with_items_and_shipments_having_promotion_applied.feature │ ├── seeing_invoice_with_items_having_promotion_applied.feature │ ├── seeing_invoice_with_shipment_having_taxes_and_promotion_applied.feature │ ├── seeing_invoice_with_taxes.feature │ ├── seeing_invoice_with_taxes_included_in_price.feature │ ├── seeing_invoice_with_taxes_included_in_price_and_promotions_applied.feature │ ├── seeing_invoices_on_order_view.feature │ ├── seeing_payment_state_on_invoice.feature │ ├── sending_invoice_when_order_is_paid.feature │ └── setting_current_shop_billing_data_on_invoice.feature ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── Cli │ └── GenerateInvoicesCommand.php ├── Command │ └── SendInvoiceEmail.php ├── CommandHandler │ └── SendInvoiceEmailHandler.php ├── Converter │ ├── LineItemsConverterInterface.php │ ├── OrderItemUnitsToLineItemsConverter.php │ ├── ShippingAdjustmentsToLineItemsConverter.php │ ├── TaxItemsConverter.php │ └── TaxItemsConverterInterface.php ├── Creator │ ├── InvoiceCreator.php │ ├── InvoiceCreatorInterface.php │ ├── MassInvoicesCreator.php │ └── MassInvoicesCreatorInterface.php ├── DependencyInjection │ ├── Configuration.php │ └── SyliusInvoicingExtension.php ├── Doctrine │ └── ORM │ │ ├── InvoiceRepository.php │ │ └── InvoiceRepositoryInterface.php ├── Email │ ├── Emails.php │ ├── InvoiceEmailSender.php │ └── InvoiceEmailSenderInterface.php ├── Entity │ ├── BillingData.php │ ├── BillingDataInterface.php │ ├── Invoice.php │ ├── InvoiceInterface.php │ ├── InvoiceSequence.php │ ├── InvoiceSequenceInterface.php │ ├── InvoiceShopBillingData.php │ ├── InvoiceShopBillingDataInterface.php │ ├── LineItem.php │ ├── LineItemInterface.php │ ├── TaxItem.php │ └── TaxItemInterface.php ├── Event │ ├── OrderPaymentPaid.php │ └── OrderPlaced.php ├── EventListener │ ├── CreateInvoiceOnOrderPlacedListener.php │ ├── OrderPaymentPaidListener.php │ └── Workflow │ │ └── Payment │ │ └── ProduceOrderPaymentPaidListener.php ├── EventProducer │ ├── OrderPaymentPaidProducer.php │ └── OrderPlacedProducer.php ├── Exception │ ├── InvoiceAlreadyGenerated.php │ ├── InvoiceNotAccessible.php │ ├── LineItemsCannotBeMerged.php │ └── MoreThanOneTaxAdjustment.php ├── Factory │ ├── BillingDataFactory.php │ ├── BillingDataFactoryInterface.php │ ├── InvoiceFactory.php │ ├── InvoiceFactoryInterface.php │ ├── InvoiceShopBillingDataFactory.php │ ├── InvoiceShopBillingDataFactoryInterface.php │ ├── LineItemFactory.php │ ├── LineItemFactoryInterface.php │ ├── TaxItemFactory.php │ └── TaxItemFactoryInterface.php ├── Fixture │ ├── Factory │ │ └── ShopBillingDataExampleFactory.php │ ├── Listener │ │ └── InvoicesPurgerListener.php │ └── ShopBillingDataFixture.php ├── Generator │ ├── InvoiceFileNameGenerator.php │ ├── InvoiceFileNameGeneratorInterface.php │ ├── InvoiceGenerator.php │ ├── InvoiceGeneratorInterface.php │ ├── InvoiceIdentifierGenerator.php │ ├── InvoiceNumberGenerator.php │ ├── InvoicePdfFileGenerator.php │ ├── InvoicePdfFileGeneratorInterface.php │ ├── PdfOptionsGenerator.php │ ├── PdfOptionsGeneratorInterface.php │ ├── SequentialInvoiceNumberGenerator.php │ ├── TwigToPdfGenerator.php │ ├── TwigToPdfGeneratorInterface.php │ └── UuidInvoiceIdentifierGenerator.php ├── Manager │ ├── InvoiceFileManager.php │ └── InvoiceFileManagerInterface.php ├── Migrations │ ├── Version20180625120743.php │ └── Version20241121125624.php ├── Model │ └── InvoicePdf.php ├── Provider │ ├── ChannelColorProvider.php │ ├── ChannelColorProviderInterface.php │ ├── InvoiceFileProvider.php │ ├── InvoiceFileProviderInterface.php │ ├── TaxRatePercentageProvider.php │ ├── TaxRatePercentageProviderInterface.php │ ├── UnitNetPriceProvider.php │ └── UnitNetPriceProviderInterface.php ├── Security │ └── Voter │ │ └── InvoiceVoter.php ├── SyliusInvoicingPlugin.php ├── Twig │ ├── ChannelColorExtension.php │ ├── Component │ │ └── Invoice │ │ │ └── ListComponent.php │ └── InvoicesExtension.php └── Ui │ ├── Action │ ├── Admin │ │ └── ResendInvoiceAction.php │ └── DownloadInvoiceAction.php │ └── Menu │ └── AdminMenuListener.php ├── templates ├── admin │ ├── invoice │ │ ├── email │ │ │ └── invoice_generated.html.twig │ │ └── show │ │ │ └── content │ │ │ ├── header │ │ │ └── title_block │ │ │ │ ├── actions.html.twig │ │ │ │ ├── actions │ │ │ │ └── back_to_index.html.twig │ │ │ │ ├── title.html.twig │ │ │ │ └── title │ │ │ │ ├── number.html.twig │ │ │ │ └── subtitle.html.twig │ │ │ ├── sections.html.twig │ │ │ └── sections │ │ │ ├── buyer.html.twig │ │ │ ├── buyer │ │ │ ├── city.html.twig │ │ │ ├── company.html.twig │ │ │ ├── country_code.html.twig │ │ │ ├── first_name.html.twig │ │ │ ├── postcode.html.twig │ │ │ └── street.html.twig │ │ │ ├── card.html.twig │ │ │ ├── card │ │ │ ├── body.html.twig │ │ │ ├── body │ │ │ │ ├── table.html.twig │ │ │ │ └── table │ │ │ │ │ ├── body.html.twig │ │ │ │ │ ├── body │ │ │ │ │ ├── currency.html.twig │ │ │ │ │ ├── discounted_unit_net_price.html.twig │ │ │ │ │ ├── gross_value.html.twig │ │ │ │ │ ├── name.html.twig │ │ │ │ │ ├── net_value.html.twig │ │ │ │ │ ├── no.html.twig │ │ │ │ │ ├── quantity.html.twig │ │ │ │ │ ├── tax_amount.html.twig │ │ │ │ │ ├── tax_rate.html.twig │ │ │ │ │ └── unit_net_price.html.twig │ │ │ │ │ ├── footer.html.twig │ │ │ │ │ ├── footer │ │ │ │ │ ├── net_total.html.twig │ │ │ │ │ ├── tax_items.html.twig │ │ │ │ │ ├── tax_items │ │ │ │ │ │ ├── tax_item.html.twig │ │ │ │ │ │ └── tax_rate.html.twig │ │ │ │ │ ├── taxes_total.html.twig │ │ │ │ │ └── total.html.twig │ │ │ │ │ ├── header.html.twig │ │ │ │ │ └── header │ │ │ │ │ ├── currency.html.twig │ │ │ │ │ ├── discounted_unit_net_price.html.twig │ │ │ │ │ ├── gross_value.html.twig │ │ │ │ │ ├── name.html.twig │ │ │ │ │ ├── net_value.html.twig │ │ │ │ │ ├── no.html.twig │ │ │ │ │ ├── quantity.html.twig │ │ │ │ │ ├── tax_amount.html.twig │ │ │ │ │ ├── tax_rate.html.twig │ │ │ │ │ └── unit_net_price.html.twig │ │ │ └── footer.html.twig │ │ │ ├── seller.html.twig │ │ │ └── seller │ │ │ ├── city.html.twig │ │ │ ├── company.html.twig │ │ │ ├── country_code.html.twig │ │ │ ├── postcode.html.twig │ │ │ ├── representative.html.twig │ │ │ ├── street.html.twig │ │ │ └── tax_id.html.twig │ ├── order │ │ └── show │ │ │ └── content │ │ │ └── sections │ │ │ └── invoices │ │ │ ├── table.html.twig │ │ │ └── table │ │ │ ├── body.html.twig │ │ │ ├── body │ │ │ ├── actions.html.twig │ │ │ ├── channel.html.twig │ │ │ ├── issued_at.html.twig │ │ │ └── number.html.twig │ │ │ ├── head.html.twig │ │ │ └── head │ │ │ ├── actions.html.twig │ │ │ ├── channel.html.twig │ │ │ ├── issued_at.html.twig │ │ │ └── number.html.twig │ └── shared │ │ └── action │ │ ├── download.html.twig │ │ └── resend.html.twig ├── shared │ ├── components │ │ └── invoices.html.twig │ └── download │ │ ├── pdf.html.twig │ │ └── pdf_layout.html.twig └── shop │ ├── account │ └── order │ │ └── grid │ │ └── field │ │ └── invoices.html.twig │ └── order │ └── show │ └── content │ └── summary │ └── invoices │ ├── card.html.twig │ └── card │ ├── body.html.twig │ ├── body │ ├── table.html.twig │ └── table │ │ ├── body.html.twig │ │ ├── body │ │ ├── download.html.twig │ │ ├── issued_at.html.twig │ │ └── number.html.twig │ │ ├── head.html.twig │ │ └── head │ │ ├── actions.html.twig │ │ ├── issued_at.html.twig │ │ └── number.html.twig │ └── head.html.twig ├── tests ├── Application │ └── src │ │ └── Kernel.php ├── Behat │ ├── Context │ │ ├── Application │ │ │ └── ManagingInvoicesContext.php │ │ ├── Cli │ │ │ └── InvoicesGenerationContext.php │ │ ├── Domain │ │ │ ├── GeneratingInvoiceContext.php │ │ │ └── InvoiceEmailContext.php │ │ ├── Hook │ │ │ └── InvoicesContext.php │ │ ├── Order │ │ │ └── OrderContext.php │ │ ├── Setup │ │ │ ├── ChannelContext.php │ │ │ └── OrderContext.php │ │ └── Ui │ │ │ ├── Admin │ │ │ ├── ManagingChannelsContext.php │ │ │ └── ManagingInvoicesContext.php │ │ │ └── Shop │ │ │ ├── AccountContext.php │ │ │ └── CustomerBrowsingInvoicesContext.php │ ├── Page │ │ ├── Admin │ │ │ ├── Channel │ │ │ │ ├── UpdatePage.php │ │ │ │ └── UpdatePageInterface.php │ │ │ ├── Invoice │ │ │ │ ├── IndexPage.php │ │ │ │ ├── IndexPageInterface.php │ │ │ │ ├── ShowPage.php │ │ │ │ └── ShowPageInterface.php │ │ │ └── Order │ │ │ │ ├── ShowPage.php │ │ │ │ └── ShowPageInterface.php │ │ └── Shop │ │ │ ├── Account │ │ │ └── Order │ │ │ │ ├── IndexPage.php │ │ │ │ └── IndexPageInterface.php │ │ │ └── Order │ │ │ ├── DownloadInvoicePage.php │ │ │ ├── DownloadInvoicePageInterface.php │ │ │ ├── ShowPage.php │ │ │ └── ShowPageInterface.php │ └── Resources │ │ ├── services.xml │ │ └── suites │ │ ├── admin │ │ └── managing_invoices.yml │ │ ├── customer.yml │ │ └── suites.yml ├── DependencyInjection │ ├── SyliusInvoicingConfigurationTest.php │ └── SyliusInvoicingExtensionTest.php ├── TestApplication │ ├── .env │ ├── .env.test │ ├── bundles.php │ ├── config │ │ ├── config.yaml │ │ ├── routes.yaml │ │ ├── services_test.php │ │ └── sylius_invoicing_pdf_generation_disabled.yaml │ └── templates │ │ └── .gitignore └── Unit │ ├── Command │ └── SendInvoiceEmailTest.php │ ├── CommandHandler │ └── SendInvoiceEmailHandlerTest.php │ ├── Converter │ ├── OrderItemUnitsToLineItemsConverterTest.php │ ├── ShippingAdjustmentsToLineItemsConverterTest.php │ └── TaxItemsConverterTest.php │ ├── Creator │ ├── InvoiceCreatorTest.php │ └── MassInvoicesCreatorTest.php │ ├── Email │ └── InvoiceEmailSenderTest.php │ ├── Entity │ ├── BillingDataTest.php │ ├── InvoiceTest.php │ ├── LineItemTest.php │ └── TaxItemTest.php │ ├── Event │ ├── OrderPaymentPaidTest.php │ └── OrderPlacedTest.php │ ├── EventListener │ ├── CreateInvoiceOnOrderPlacedListenerTest.php │ └── OrderPaymentPaidListenerTest.php │ ├── EventProducer │ ├── OrderPaymentPaidProducerTest.php │ └── OrderPlacedProducerTest.php │ ├── Factory │ ├── BillingDataFactoryTest.php │ ├── InvoiceFactoryTest.php │ ├── InvoiceShopBillingDataFactoryTest.php │ ├── LineItemFactoryTest.php │ └── TaxItemFactoryTest.php │ ├── Fixture │ ├── Listener │ │ └── InvoicesPurgerListenerTest.php │ └── ShopBillingDataFixtureTest.php │ ├── Generator │ ├── InvoiceFileNameGeneratorTest.php │ ├── InvoiceGeneratorTest.php │ ├── InvoicePdfFileGeneratorTest.php │ ├── PdfOptionsGeneratorTest.php │ ├── SequentialInvoiceNumberGeneratorTest.php │ ├── TwigToPdfGeneratorTest.php │ └── UuidInvoiceIdentifierGeneratorTest.php │ ├── Manager │ └── InvoiceFileManagerTest.php │ ├── Model │ └── InvoicePdfTest.php │ ├── Provider │ ├── ChannelColorProviderTest.php │ ├── InvoiceFileProviderTest.php │ ├── TaxRatePercentageProviderTest.php │ └── UnitNetPriceProviderTest.php │ └── Security │ └── InvoiceVoterTest.php └── translations ├── flashes.de.yml ├── flashes.en.yml ├── flashes.pl.yml ├── messages.de.yml ├── messages.en.yml ├── messages.fr.yml ├── messages.pl.yml ├── validators.de.yml ├── validators.en.yml └── validators.pl.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Sylius/core-team 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/upmerge_pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/.github/workflows/upmerge_pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/CHANGELOG-2.0.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_OF_TRADEMARK_AND_LOGO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/LICENSE_OF_TRADEMARK_AND_LOGO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/UPGRADE-2.0.md -------------------------------------------------------------------------------- /assets/admin/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/assets/admin/controllers.json -------------------------------------------------------------------------------- /assets/admin/entrypoint.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/shop/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/assets/shop/controllers.json -------------------------------------------------------------------------------- /assets/shop/entrypoint.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/sylius-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/assets/sylius-logo.png -------------------------------------------------------------------------------- /behat.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/behat.yml.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/doctrine/BillingData.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/doctrine/BillingData.orm.xml -------------------------------------------------------------------------------- /config/doctrine/Invoice.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/doctrine/Invoice.orm.xml -------------------------------------------------------------------------------- /config/doctrine/InvoiceSequence.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/doctrine/InvoiceSequence.orm.xml -------------------------------------------------------------------------------- /config/doctrine/InvoiceShopBillingData.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/doctrine/InvoiceShopBillingData.orm.xml -------------------------------------------------------------------------------- /config/doctrine/LineItem.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/doctrine/LineItem.orm.xml -------------------------------------------------------------------------------- /config/doctrine/TaxItem.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/doctrine/TaxItem.orm.xml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/routes/admin.yaml -------------------------------------------------------------------------------- /config/routes/shop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/routes/shop.yaml -------------------------------------------------------------------------------- /config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services.xml -------------------------------------------------------------------------------- /config/services/cli.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/cli.xml -------------------------------------------------------------------------------- /config/services/controllers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/controllers.xml -------------------------------------------------------------------------------- /config/services/converters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/converters.xml -------------------------------------------------------------------------------- /config/services/fixtures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/fixtures.xml -------------------------------------------------------------------------------- /config/services/generators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/generators.xml -------------------------------------------------------------------------------- /config/services/listeners.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/listeners.xml -------------------------------------------------------------------------------- /config/services/listeners/workflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/listeners/workflow.xml -------------------------------------------------------------------------------- /config/services/twig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/twig.xml -------------------------------------------------------------------------------- /config/services/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/services/ui.xml -------------------------------------------------------------------------------- /config/twig_hooks/admin/invoice/show.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/twig_hooks/admin/invoice/show.yaml -------------------------------------------------------------------------------- /config/twig_hooks/admin/order/show.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/twig_hooks/admin/order/show.yaml -------------------------------------------------------------------------------- /config/twig_hooks/shop/order/summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/twig_hooks/shop/order/summary.yaml -------------------------------------------------------------------------------- /config/validation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/validation.xml -------------------------------------------------------------------------------- /config/winzou_state_machine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/config/winzou_state_machine.php -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/ecs.php -------------------------------------------------------------------------------- /etc/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/managing_invoices/being_unable_to_download_other_users_invoice.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/being_unable_to_download_other_users_invoice.feature -------------------------------------------------------------------------------- /features/managing_invoices/browsing_invoices.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/browsing_invoices.feature -------------------------------------------------------------------------------- /features/managing_invoices/filtering_invoices.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/filtering_invoices.feature -------------------------------------------------------------------------------- /features/managing_invoices/generating_invoices_for_previously_placed_orders.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/generating_invoices_for_previously_placed_orders.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_disabled/being_unable_to_download_invoice_on_admin_order_view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_disabled/being_unable_to_download_invoice_on_admin_order_view.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_disabled/being_unable_to_download_invoice_on_customer_order_view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_disabled/being_unable_to_download_invoice_on_customer_order_view.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_disabled/being_unable_to_download_invoice_on_its_details_page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_disabled/being_unable_to_download_invoice_on_its_details_page.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_disabled/showing_plain_invoice_numbers_on_orders_list_when_PDF_is_disabled.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_disabled/showing_plain_invoice_numbers_on_orders_list_when_PDF_is_disabled.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_enabled/downloading_invoice_on_admin_order_view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_enabled/downloading_invoice_on_admin_order_view.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_enabled/downloading_invoice_on_customer_order_view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_enabled/downloading_invoice_on_customer_order_view.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_enabled/downloading_invoice_on_its_details_page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_enabled/downloading_invoice_on_its_details_page.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_enabled/saving_invoices_on_server_during_generation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_enabled/saving_invoices_on_server_during_generation.feature -------------------------------------------------------------------------------- /features/managing_invoices/pdf_generation_enabled/showing_invoice_links_on_orders_list_when_PDF_is_enabled.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/pdf_generation_enabled/showing_invoice_links_on_orders_list_when_PDF_is_enabled.feature -------------------------------------------------------------------------------- /features/managing_invoices/resending_invoices_to_customer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/resending_invoices_to_customer.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_invoice.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_invoice.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_invoice_with_items_and_shipments_having_promotion_applied.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_invoice_with_items_and_shipments_having_promotion_applied.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_invoice_with_items_having_promotion_applied.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_invoice_with_items_having_promotion_applied.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_invoice_with_shipment_having_taxes_and_promotion_applied.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_invoice_with_shipment_having_taxes_and_promotion_applied.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_invoice_with_taxes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_invoice_with_taxes.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_invoice_with_taxes_included_in_price.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_invoice_with_taxes_included_in_price.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_invoice_with_taxes_included_in_price_and_promotions_applied.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_invoice_with_taxes_included_in_price_and_promotions_applied.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_invoices_on_order_view.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_invoices_on_order_view.feature -------------------------------------------------------------------------------- /features/managing_invoices/seeing_payment_state_on_invoice.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/seeing_payment_state_on_invoice.feature -------------------------------------------------------------------------------- /features/managing_invoices/sending_invoice_when_order_is_paid.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/sending_invoice_when_order_is_paid.feature -------------------------------------------------------------------------------- /features/managing_invoices/setting_current_shop_billing_data_on_invoice.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/features/managing_invoices/setting_current_shop_billing_data_on_invoice.feature -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Cli/GenerateInvoicesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Cli/GenerateInvoicesCommand.php -------------------------------------------------------------------------------- /src/Command/SendInvoiceEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Command/SendInvoiceEmail.php -------------------------------------------------------------------------------- /src/CommandHandler/SendInvoiceEmailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/CommandHandler/SendInvoiceEmailHandler.php -------------------------------------------------------------------------------- /src/Converter/LineItemsConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Converter/LineItemsConverterInterface.php -------------------------------------------------------------------------------- /src/Converter/OrderItemUnitsToLineItemsConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Converter/OrderItemUnitsToLineItemsConverter.php -------------------------------------------------------------------------------- /src/Converter/ShippingAdjustmentsToLineItemsConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Converter/ShippingAdjustmentsToLineItemsConverter.php -------------------------------------------------------------------------------- /src/Converter/TaxItemsConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Converter/TaxItemsConverter.php -------------------------------------------------------------------------------- /src/Converter/TaxItemsConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Converter/TaxItemsConverterInterface.php -------------------------------------------------------------------------------- /src/Creator/InvoiceCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Creator/InvoiceCreator.php -------------------------------------------------------------------------------- /src/Creator/InvoiceCreatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Creator/InvoiceCreatorInterface.php -------------------------------------------------------------------------------- /src/Creator/MassInvoicesCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Creator/MassInvoicesCreator.php -------------------------------------------------------------------------------- /src/Creator/MassInvoicesCreatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Creator/MassInvoicesCreatorInterface.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/SyliusInvoicingExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/DependencyInjection/SyliusInvoicingExtension.php -------------------------------------------------------------------------------- /src/Doctrine/ORM/InvoiceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Doctrine/ORM/InvoiceRepository.php -------------------------------------------------------------------------------- /src/Doctrine/ORM/InvoiceRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Doctrine/ORM/InvoiceRepositoryInterface.php -------------------------------------------------------------------------------- /src/Email/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Email/Emails.php -------------------------------------------------------------------------------- /src/Email/InvoiceEmailSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Email/InvoiceEmailSender.php -------------------------------------------------------------------------------- /src/Email/InvoiceEmailSenderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Email/InvoiceEmailSenderInterface.php -------------------------------------------------------------------------------- /src/Entity/BillingData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/BillingData.php -------------------------------------------------------------------------------- /src/Entity/BillingDataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/BillingDataInterface.php -------------------------------------------------------------------------------- /src/Entity/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/Invoice.php -------------------------------------------------------------------------------- /src/Entity/InvoiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/InvoiceInterface.php -------------------------------------------------------------------------------- /src/Entity/InvoiceSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/InvoiceSequence.php -------------------------------------------------------------------------------- /src/Entity/InvoiceSequenceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/InvoiceSequenceInterface.php -------------------------------------------------------------------------------- /src/Entity/InvoiceShopBillingData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/InvoiceShopBillingData.php -------------------------------------------------------------------------------- /src/Entity/InvoiceShopBillingDataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/InvoiceShopBillingDataInterface.php -------------------------------------------------------------------------------- /src/Entity/LineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/LineItem.php -------------------------------------------------------------------------------- /src/Entity/LineItemInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/LineItemInterface.php -------------------------------------------------------------------------------- /src/Entity/TaxItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/TaxItem.php -------------------------------------------------------------------------------- /src/Entity/TaxItemInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Entity/TaxItemInterface.php -------------------------------------------------------------------------------- /src/Event/OrderPaymentPaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Event/OrderPaymentPaid.php -------------------------------------------------------------------------------- /src/Event/OrderPlaced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Event/OrderPlaced.php -------------------------------------------------------------------------------- /src/EventListener/CreateInvoiceOnOrderPlacedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/EventListener/CreateInvoiceOnOrderPlacedListener.php -------------------------------------------------------------------------------- /src/EventListener/OrderPaymentPaidListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/EventListener/OrderPaymentPaidListener.php -------------------------------------------------------------------------------- /src/EventListener/Workflow/Payment/ProduceOrderPaymentPaidListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/EventListener/Workflow/Payment/ProduceOrderPaymentPaidListener.php -------------------------------------------------------------------------------- /src/EventProducer/OrderPaymentPaidProducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/EventProducer/OrderPaymentPaidProducer.php -------------------------------------------------------------------------------- /src/EventProducer/OrderPlacedProducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/EventProducer/OrderPlacedProducer.php -------------------------------------------------------------------------------- /src/Exception/InvoiceAlreadyGenerated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Exception/InvoiceAlreadyGenerated.php -------------------------------------------------------------------------------- /src/Exception/InvoiceNotAccessible.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Exception/InvoiceNotAccessible.php -------------------------------------------------------------------------------- /src/Exception/LineItemsCannotBeMerged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Exception/LineItemsCannotBeMerged.php -------------------------------------------------------------------------------- /src/Exception/MoreThanOneTaxAdjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Exception/MoreThanOneTaxAdjustment.php -------------------------------------------------------------------------------- /src/Factory/BillingDataFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/BillingDataFactory.php -------------------------------------------------------------------------------- /src/Factory/BillingDataFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/BillingDataFactoryInterface.php -------------------------------------------------------------------------------- /src/Factory/InvoiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/InvoiceFactory.php -------------------------------------------------------------------------------- /src/Factory/InvoiceFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/InvoiceFactoryInterface.php -------------------------------------------------------------------------------- /src/Factory/InvoiceShopBillingDataFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/InvoiceShopBillingDataFactory.php -------------------------------------------------------------------------------- /src/Factory/InvoiceShopBillingDataFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/InvoiceShopBillingDataFactoryInterface.php -------------------------------------------------------------------------------- /src/Factory/LineItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/LineItemFactory.php -------------------------------------------------------------------------------- /src/Factory/LineItemFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/LineItemFactoryInterface.php -------------------------------------------------------------------------------- /src/Factory/TaxItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/TaxItemFactory.php -------------------------------------------------------------------------------- /src/Factory/TaxItemFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Factory/TaxItemFactoryInterface.php -------------------------------------------------------------------------------- /src/Fixture/Factory/ShopBillingDataExampleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Fixture/Factory/ShopBillingDataExampleFactory.php -------------------------------------------------------------------------------- /src/Fixture/Listener/InvoicesPurgerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Fixture/Listener/InvoicesPurgerListener.php -------------------------------------------------------------------------------- /src/Fixture/ShopBillingDataFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Fixture/ShopBillingDataFixture.php -------------------------------------------------------------------------------- /src/Generator/InvoiceFileNameGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/InvoiceFileNameGenerator.php -------------------------------------------------------------------------------- /src/Generator/InvoiceFileNameGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/InvoiceFileNameGeneratorInterface.php -------------------------------------------------------------------------------- /src/Generator/InvoiceGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/InvoiceGenerator.php -------------------------------------------------------------------------------- /src/Generator/InvoiceGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/InvoiceGeneratorInterface.php -------------------------------------------------------------------------------- /src/Generator/InvoiceIdentifierGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/InvoiceIdentifierGenerator.php -------------------------------------------------------------------------------- /src/Generator/InvoiceNumberGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/InvoiceNumberGenerator.php -------------------------------------------------------------------------------- /src/Generator/InvoicePdfFileGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/InvoicePdfFileGenerator.php -------------------------------------------------------------------------------- /src/Generator/InvoicePdfFileGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/InvoicePdfFileGeneratorInterface.php -------------------------------------------------------------------------------- /src/Generator/PdfOptionsGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/PdfOptionsGenerator.php -------------------------------------------------------------------------------- /src/Generator/PdfOptionsGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/PdfOptionsGeneratorInterface.php -------------------------------------------------------------------------------- /src/Generator/SequentialInvoiceNumberGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/SequentialInvoiceNumberGenerator.php -------------------------------------------------------------------------------- /src/Generator/TwigToPdfGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/TwigToPdfGenerator.php -------------------------------------------------------------------------------- /src/Generator/TwigToPdfGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/TwigToPdfGeneratorInterface.php -------------------------------------------------------------------------------- /src/Generator/UuidInvoiceIdentifierGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Generator/UuidInvoiceIdentifierGenerator.php -------------------------------------------------------------------------------- /src/Manager/InvoiceFileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Manager/InvoiceFileManager.php -------------------------------------------------------------------------------- /src/Manager/InvoiceFileManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Manager/InvoiceFileManagerInterface.php -------------------------------------------------------------------------------- /src/Migrations/Version20180625120743.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Migrations/Version20180625120743.php -------------------------------------------------------------------------------- /src/Migrations/Version20241121125624.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Migrations/Version20241121125624.php -------------------------------------------------------------------------------- /src/Model/InvoicePdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Model/InvoicePdf.php -------------------------------------------------------------------------------- /src/Provider/ChannelColorProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Provider/ChannelColorProvider.php -------------------------------------------------------------------------------- /src/Provider/ChannelColorProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Provider/ChannelColorProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/InvoiceFileProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Provider/InvoiceFileProvider.php -------------------------------------------------------------------------------- /src/Provider/InvoiceFileProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Provider/InvoiceFileProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/TaxRatePercentageProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Provider/TaxRatePercentageProvider.php -------------------------------------------------------------------------------- /src/Provider/TaxRatePercentageProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Provider/TaxRatePercentageProviderInterface.php -------------------------------------------------------------------------------- /src/Provider/UnitNetPriceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Provider/UnitNetPriceProvider.php -------------------------------------------------------------------------------- /src/Provider/UnitNetPriceProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Provider/UnitNetPriceProviderInterface.php -------------------------------------------------------------------------------- /src/Security/Voter/InvoiceVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Security/Voter/InvoiceVoter.php -------------------------------------------------------------------------------- /src/SyliusInvoicingPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/SyliusInvoicingPlugin.php -------------------------------------------------------------------------------- /src/Twig/ChannelColorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Twig/ChannelColorExtension.php -------------------------------------------------------------------------------- /src/Twig/Component/Invoice/ListComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Twig/Component/Invoice/ListComponent.php -------------------------------------------------------------------------------- /src/Twig/InvoicesExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Twig/InvoicesExtension.php -------------------------------------------------------------------------------- /src/Ui/Action/Admin/ResendInvoiceAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Ui/Action/Admin/ResendInvoiceAction.php -------------------------------------------------------------------------------- /src/Ui/Action/DownloadInvoiceAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Ui/Action/DownloadInvoiceAction.php -------------------------------------------------------------------------------- /src/Ui/Menu/AdminMenuListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/src/Ui/Menu/AdminMenuListener.php -------------------------------------------------------------------------------- /templates/admin/invoice/email/invoice_generated.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/email/invoice_generated.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/header/title_block/actions.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/header/title_block/actions.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/header/title_block/actions/back_to_index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/header/title_block/actions/back_to_index.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/header/title_block/title.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/header/title_block/title.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/header/title_block/title/number.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/header/title_block/title/number.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/header/title_block/title/subtitle.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/header/title_block/title/subtitle.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/buyer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/buyer.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/buyer/city.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/buyer/city.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/buyer/company.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/buyer/company.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/buyer/country_code.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/buyer/country_code.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/buyer/first_name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/buyer/first_name.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/buyer/postcode.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/buyer/postcode.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/buyer/street.html.twig: -------------------------------------------------------------------------------- 1 | {{ hookable_metadata.context.resource.billingData.street }}
2 | -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/body.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/currency.html.twig: -------------------------------------------------------------------------------- 1 | {{ hookable_metadata.context.resource.currencyCode }} 2 | -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/discounted_unit_net_price.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/body/discounted_unit_net_price.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/gross_value.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/body/gross_value.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/body/name.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/net_value.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/body/net_value.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/no.html.twig: -------------------------------------------------------------------------------- 1 | {{ hookable_metadata.context.loop.index }} 2 | -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/quantity.html.twig: -------------------------------------------------------------------------------- 1 | {{ hookable_metadata.context.item.quantity }} 2 | -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/tax_amount.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/body/tax_amount.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/tax_rate.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/body/tax_rate.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/body/unit_net_price.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/body/unit_net_price.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/footer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/footer.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/footer/net_total.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/footer/net_total.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/footer/tax_items.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/footer/tax_items.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/footer/tax_items/tax_item.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/footer/tax_items/tax_rate.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/footer/taxes_total.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/footer/taxes_total.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/footer/total.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/footer/total.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/currency.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/currency.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/discounted_unit_net_price.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/discounted_unit_net_price.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/gross_value.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/gross_value.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/name.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/name.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/net_value.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/net_value.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/no.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/no.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/quantity.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/quantity.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/tax_amount.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/tax_amount.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/tax_rate.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/tax_rate.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/body/table/header/unit_net_price.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/body/table/header/unit_net_price.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/card/footer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/card/footer.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/seller.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/seller.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/seller/city.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/seller/city.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/seller/company.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/seller/company.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/seller/country_code.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/seller/country_code.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/seller/postcode.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/seller/postcode.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/seller/representative.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/seller/representative.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/seller/street.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/seller/street.html.twig -------------------------------------------------------------------------------- /templates/admin/invoice/show/content/sections/seller/tax_id.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/invoice/show/content/sections/seller/tax_id.html.twig -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/order/show/content/sections/invoices/table.html.twig -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/body.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/order/show/content/sections/invoices/table/body.html.twig -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/body/actions.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/order/show/content/sections/invoices/table/body/actions.html.twig -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/body/channel.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/order/show/content/sections/invoices/table/body/channel.html.twig -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/body/issued_at.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/order/show/content/sections/invoices/table/body/issued_at.html.twig -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/body/number.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/order/show/content/sections/invoices/table/body/number.html.twig -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/head.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/order/show/content/sections/invoices/table/head.html.twig -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/head/actions.html.twig: -------------------------------------------------------------------------------- 1 | {{ 'sylius.ui.actions'|trans }} 2 | -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/head/channel.html.twig: -------------------------------------------------------------------------------- 1 | {{ 'sylius.ui.channel'|trans }} 2 | -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/head/issued_at.html.twig: -------------------------------------------------------------------------------- 1 | {{ 'sylius_invoicing.ui.issued_at'|trans }} 2 | -------------------------------------------------------------------------------- /templates/admin/order/show/content/sections/invoices/table/head/number.html.twig: -------------------------------------------------------------------------------- 1 | {{ 'sylius.ui.number'|trans }} 2 | -------------------------------------------------------------------------------- /templates/admin/shared/action/download.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/shared/action/download.html.twig -------------------------------------------------------------------------------- /templates/admin/shared/action/resend.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/admin/shared/action/resend.html.twig -------------------------------------------------------------------------------- /templates/shared/components/invoices.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shared/components/invoices.html.twig -------------------------------------------------------------------------------- /templates/shared/download/pdf.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shared/download/pdf.html.twig -------------------------------------------------------------------------------- /templates/shared/download/pdf_layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shared/download/pdf_layout.html.twig -------------------------------------------------------------------------------- /templates/shop/account/order/grid/field/invoices.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/account/order/grid/field/invoices.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card/body.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card/body/table.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table/body.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card/body/table/body.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table/body/download.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card/body/table/body/download.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table/body/issued_at.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card/body/table/body/issued_at.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table/body/number.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card/body/table/body/number.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table/head.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card/body/table/head.html.twig -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table/head/actions.html.twig: -------------------------------------------------------------------------------- 1 | {{ 'sylius.ui.actions'|trans }} 2 | -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table/head/issued_at.html.twig: -------------------------------------------------------------------------------- 1 | {{ 'sylius_invoicing.ui.issued_at'|trans }} 2 | -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/body/table/head/number.html.twig: -------------------------------------------------------------------------------- 1 | {{ 'sylius.ui.number'|trans }} 2 | -------------------------------------------------------------------------------- /templates/shop/order/show/content/summary/invoices/card/head.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/templates/shop/order/show/content/summary/invoices/card/head.html.twig -------------------------------------------------------------------------------- /tests/Application/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Application/src/Kernel.php -------------------------------------------------------------------------------- /tests/Behat/Context/Application/ManagingInvoicesContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Application/ManagingInvoicesContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Cli/InvoicesGenerationContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Cli/InvoicesGenerationContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Domain/GeneratingInvoiceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Domain/GeneratingInvoiceContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Domain/InvoiceEmailContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Domain/InvoiceEmailContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Hook/InvoicesContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Hook/InvoicesContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Order/OrderContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Order/OrderContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Setup/ChannelContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Setup/ChannelContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Setup/OrderContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Setup/OrderContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/ManagingChannelsContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Ui/Admin/ManagingChannelsContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Admin/ManagingInvoicesContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Ui/Admin/ManagingInvoicesContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Shop/AccountContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Ui/Shop/AccountContext.php -------------------------------------------------------------------------------- /tests/Behat/Context/Ui/Shop/CustomerBrowsingInvoicesContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Context/Ui/Shop/CustomerBrowsingInvoicesContext.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Channel/UpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Admin/Channel/UpdatePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Channel/UpdatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Admin/Channel/UpdatePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Invoice/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Admin/Invoice/IndexPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Invoice/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Admin/Invoice/IndexPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Invoice/ShowPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Admin/Invoice/ShowPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Invoice/ShowPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Admin/Invoice/ShowPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Order/ShowPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Admin/Order/ShowPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Admin/Order/ShowPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Admin/Order/ShowPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Account/Order/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Shop/Account/Order/IndexPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Account/Order/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Shop/Account/Order/IndexPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Order/DownloadInvoicePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Shop/Order/DownloadInvoicePage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Order/DownloadInvoicePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Shop/Order/DownloadInvoicePageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Order/ShowPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Shop/Order/ShowPage.php -------------------------------------------------------------------------------- /tests/Behat/Page/Shop/Order/ShowPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Page/Shop/Order/ShowPageInterface.php -------------------------------------------------------------------------------- /tests/Behat/Resources/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Resources/services.xml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/admin/managing_invoices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Resources/suites/admin/managing_invoices.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/customer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Resources/suites/customer.yml -------------------------------------------------------------------------------- /tests/Behat/Resources/suites/suites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Behat/Resources/suites/suites.yml -------------------------------------------------------------------------------- /tests/DependencyInjection/SyliusInvoicingConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/DependencyInjection/SyliusInvoicingConfigurationTest.php -------------------------------------------------------------------------------- /tests/DependencyInjection/SyliusInvoicingExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/DependencyInjection/SyliusInvoicingExtensionTest.php -------------------------------------------------------------------------------- /tests/TestApplication/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/TestApplication/.env -------------------------------------------------------------------------------- /tests/TestApplication/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/TestApplication/.env.test -------------------------------------------------------------------------------- /tests/TestApplication/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/TestApplication/bundles.php -------------------------------------------------------------------------------- /tests/TestApplication/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/TestApplication/config/config.yaml -------------------------------------------------------------------------------- /tests/TestApplication/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/TestApplication/config/routes.yaml -------------------------------------------------------------------------------- /tests/TestApplication/config/services_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/TestApplication/config/services_test.php -------------------------------------------------------------------------------- /tests/TestApplication/config/sylius_invoicing_pdf_generation_disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/TestApplication/config/sylius_invoicing_pdf_generation_disabled.yaml -------------------------------------------------------------------------------- /tests/TestApplication/templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Unit/Command/SendInvoiceEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Command/SendInvoiceEmailTest.php -------------------------------------------------------------------------------- /tests/Unit/CommandHandler/SendInvoiceEmailHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/CommandHandler/SendInvoiceEmailHandlerTest.php -------------------------------------------------------------------------------- /tests/Unit/Converter/OrderItemUnitsToLineItemsConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Converter/OrderItemUnitsToLineItemsConverterTest.php -------------------------------------------------------------------------------- /tests/Unit/Converter/ShippingAdjustmentsToLineItemsConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Converter/ShippingAdjustmentsToLineItemsConverterTest.php -------------------------------------------------------------------------------- /tests/Unit/Converter/TaxItemsConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Converter/TaxItemsConverterTest.php -------------------------------------------------------------------------------- /tests/Unit/Creator/InvoiceCreatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Creator/InvoiceCreatorTest.php -------------------------------------------------------------------------------- /tests/Unit/Creator/MassInvoicesCreatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Creator/MassInvoicesCreatorTest.php -------------------------------------------------------------------------------- /tests/Unit/Email/InvoiceEmailSenderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Email/InvoiceEmailSenderTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/BillingDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Entity/BillingDataTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/InvoiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Entity/InvoiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/LineItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Entity/LineItemTest.php -------------------------------------------------------------------------------- /tests/Unit/Entity/TaxItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Entity/TaxItemTest.php -------------------------------------------------------------------------------- /tests/Unit/Event/OrderPaymentPaidTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Event/OrderPaymentPaidTest.php -------------------------------------------------------------------------------- /tests/Unit/Event/OrderPlacedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Event/OrderPlacedTest.php -------------------------------------------------------------------------------- /tests/Unit/EventListener/CreateInvoiceOnOrderPlacedListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/EventListener/CreateInvoiceOnOrderPlacedListenerTest.php -------------------------------------------------------------------------------- /tests/Unit/EventListener/OrderPaymentPaidListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/EventListener/OrderPaymentPaidListenerTest.php -------------------------------------------------------------------------------- /tests/Unit/EventProducer/OrderPaymentPaidProducerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/EventProducer/OrderPaymentPaidProducerTest.php -------------------------------------------------------------------------------- /tests/Unit/EventProducer/OrderPlacedProducerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/EventProducer/OrderPlacedProducerTest.php -------------------------------------------------------------------------------- /tests/Unit/Factory/BillingDataFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Factory/BillingDataFactoryTest.php -------------------------------------------------------------------------------- /tests/Unit/Factory/InvoiceFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Factory/InvoiceFactoryTest.php -------------------------------------------------------------------------------- /tests/Unit/Factory/InvoiceShopBillingDataFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Factory/InvoiceShopBillingDataFactoryTest.php -------------------------------------------------------------------------------- /tests/Unit/Factory/LineItemFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Factory/LineItemFactoryTest.php -------------------------------------------------------------------------------- /tests/Unit/Factory/TaxItemFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Factory/TaxItemFactoryTest.php -------------------------------------------------------------------------------- /tests/Unit/Fixture/Listener/InvoicesPurgerListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Fixture/Listener/InvoicesPurgerListenerTest.php -------------------------------------------------------------------------------- /tests/Unit/Fixture/ShopBillingDataFixtureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Fixture/ShopBillingDataFixtureTest.php -------------------------------------------------------------------------------- /tests/Unit/Generator/InvoiceFileNameGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Generator/InvoiceFileNameGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generator/InvoiceGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Generator/InvoiceGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generator/InvoicePdfFileGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Generator/InvoicePdfFileGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generator/PdfOptionsGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Generator/PdfOptionsGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generator/SequentialInvoiceNumberGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Generator/SequentialInvoiceNumberGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generator/TwigToPdfGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Generator/TwigToPdfGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Generator/UuidInvoiceIdentifierGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Generator/UuidInvoiceIdentifierGeneratorTest.php -------------------------------------------------------------------------------- /tests/Unit/Manager/InvoiceFileManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Manager/InvoiceFileManagerTest.php -------------------------------------------------------------------------------- /tests/Unit/Model/InvoicePdfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Model/InvoicePdfTest.php -------------------------------------------------------------------------------- /tests/Unit/Provider/ChannelColorProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Provider/ChannelColorProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Provider/InvoiceFileProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Provider/InvoiceFileProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Provider/TaxRatePercentageProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Provider/TaxRatePercentageProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Provider/UnitNetPriceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Provider/UnitNetPriceProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Security/InvoiceVoterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/tests/Unit/Security/InvoiceVoterTest.php -------------------------------------------------------------------------------- /translations/flashes.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/flashes.de.yml -------------------------------------------------------------------------------- /translations/flashes.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/flashes.en.yml -------------------------------------------------------------------------------- /translations/flashes.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/flashes.pl.yml -------------------------------------------------------------------------------- /translations/messages.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/messages.de.yml -------------------------------------------------------------------------------- /translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/messages.en.yml -------------------------------------------------------------------------------- /translations/messages.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/messages.fr.yml -------------------------------------------------------------------------------- /translations/messages.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/messages.pl.yml -------------------------------------------------------------------------------- /translations/validators.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/validators.de.yml -------------------------------------------------------------------------------- /translations/validators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/validators.en.yml -------------------------------------------------------------------------------- /translations/validators.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylius/InvoicingPlugin/HEAD/translations/validators.pl.yml --------------------------------------------------------------------------------