Création d'un module NoVatForCompanies pour gérer le cas de la TVA à 0% pour certains pros

This commit is contained in:
2020-05-03 07:23:48 +02:00
parent 2e6e3b6a2d
commit fa7540b672
9 changed files with 276 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace NoVatForCompanies;
use Thelia\Module\BaseModule;
class NoVatForCompanies extends BaseModule
{
/** @var string */
const DOMAIN_NAME = 'novatforcompanies';
}