From 9e42e47f8dee7ef3f34fcb58cc2d869aec3d970e Mon Sep 17 00:00:00 2001 From: vSchoener Date: Thu, 10 May 2012 10:36:05 +0000 Subject: [PATCH] // Delete Accounting #2 --- admin-dev/themes/default/css/admin.css | 4 - controllers/admin/AdminImportController.php | 1 - controllers/admin/AdminProductsController.php | 31 ------ css/admin.css | 4 - install-dev/data/db_structure.sql | 2 +- .../langs/de/data/supply_order_state.xml | 12 +- install-dev/langs/de/data/tab.xml | 3 - install-dev/langs/en/data/category.xml | 16 +-- .../langs/en/data/supply_order_state.xml | 12 +- install-dev/langs/en/data/tab.xml | 3 - install-dev/langs/es/data/category.xml | 16 +-- .../langs/es/data/supply_order_state.xml | 12 +- install-dev/langs/es/data/tab.xml | 3 - install-dev/langs/fr/data/category.xml | 16 +-- .../langs/fr/data/supply_order_state.xml | 12 +- install-dev/langs/fr/data/tab.xml | 3 - install-dev/langs/it/data/category.xml | 16 +-- .../langs/it/data/supply_order_state.xml | 12 +- install-dev/langs/it/data/tab.xml | 3 - translations/fr/admin.php | 103 ------------------ 20 files changed, 63 insertions(+), 221 deletions(-) diff --git a/admin-dev/themes/default/css/admin.css b/admin-dev/themes/default/css/admin.css index 1498d9ce2..e063cb95e 100644 --- a/admin-dev/themes/default/css/admin.css +++ b/admin-dev/themes/default/css/admin.css @@ -499,7 +499,3 @@ ul.listForm li {padding-bottom:3px;} .selected-line {background:#fff1b5;} #changedFiles ul{list-style-type: square; padding-left: 40px;} - -#account_list { background-color: #EBEDF4;border: 1px solid #C2C4D9; display: block; position:relative; padding: 10px;} -#account_list h2 { font-weight:normal; margin:0; font-size: 1.4em; padding-bottom:10px;} -#account_list table td, #accounting_list table th {width:100px;} diff --git a/controllers/admin/AdminImportController.php b/controllers/admin/AdminImportController.php index e4e4dded8..727a9d0fb 100644 --- a/controllers/admin/AdminImportController.php +++ b/controllers/admin/AdminImportController.php @@ -2175,7 +2175,6 @@ class AdminImportControllerCore extends AdminController Db::getInstance()->execute('TRUNCATE TABLE `'._DB_PREFIX_.'product_supplier'); Db::getInstance()->execute('TRUNCATE TABLE `'._DB_PREFIX_.'scene_products'); Db::getInstance()->execute('TRUNCATE TABLE `'._DB_PREFIX_.'warehouse_product_location'); - Db::getInstance()->execute('TRUNCATE TABLE `'._DB_PREFIX_.'accounting_product_zone_shop'); Db::getInstance()->execute('TRUNCATE TABLE `'._DB_PREFIX_.'stock'); Db::getInstance()->execute('TRUNCATE TABLE `'._DB_PREFIX_.'stock_available'); Db::getInstance()->execute('TRUNCATE TABLE `'._DB_PREFIX_.'stock_mvt'); diff --git a/controllers/admin/AdminProductsController.php b/controllers/admin/AdminProductsController.php index 4069896bb..0a352bddb 100644 --- a/controllers/admin/AdminProductsController.php +++ b/controllers/admin/AdminProductsController.php @@ -1512,8 +1512,6 @@ class AdminProductsControllerCore extends AdminController if ($this->isTabSubmitted('Associations')) $this->updateAccessories($object); - if ($this->isTabSubmitted('Accounting')) - $this->processAccounting(); if ($this->isTabSubmitted('Suppliers')) $this->processSuppliers(); if ($this->isTabSubmitted('Warehouses')) @@ -2230,35 +2228,6 @@ class AdminProductsControllerCore extends AdminController return $preview_url; } - /** - * Post treatment for accounting - */ - public function processAccounting() - { - if (Validate::isLoadedObject(($product = new Product((int)Tools::getValue('id_product'))))) - { - $id_shop = $this->context->shop->id; - - // If zone still exist, then update the database with the new value - if (count($zones = Zone::getZones())) - { - // Build tab with associated data - $tab = array(); - foreach ($zones as $zone) - if (($num = Tools::getValue('zone_'.$zone['id_zone'])) !== null) - $tab[] = array( - 'id_zone' => $zone['id_zone'], - 'id_product' => $product->id, - 'id_shop' => (int)$id_shop, - 'num' => $num); - - // Save to the database the account - if (empty($tab) || !Accounting::saveProductAccountingInformations($tab)) - $this->errors[] = $this->l('Account Numbers could not be updated or added in the database'); - } - } - } - /** * Post treatment for suppliers */ diff --git a/css/admin.css b/css/admin.css index 42b1c78bc..ea2382813 100644 --- a/css/admin.css +++ b/css/admin.css @@ -1980,10 +1980,6 @@ ul.connectedSortable li.module_list { outline:none; } -/* Accounting css */ -.formAccountingExport { - display:none; -} .input-error { color:#D8000C; diff --git a/install-dev/data/db_structure.sql b/install-dev/data/db_structure.sql index 5c2c01c23..bd8b7cb3b 100644 --- a/install-dev/data/db_structure.sql +++ b/install-dev/data/db_structure.sql @@ -1747,7 +1747,7 @@ CREATE TABLE `PREFIX_tax` ( `id_tax` int(10) unsigned NOT NULL auto_increment, `rate` DECIMAL(10, 3) NOT NULL, `active` tinyint(1) unsigned NOT NULL default '1', - `deleted` tinyint(1) unsigned NOT NULL default '0',s + `deleted` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`id_tax`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8; diff --git a/install-dev/langs/de/data/supply_order_state.xml b/install-dev/langs/de/data/supply_order_state.xml index 2a4299a17..1e8903f0f 100644 --- a/install-dev/langs/de/data/supply_order_state.xml +++ b/install-dev/langs/de/data/supply_order_state.xml @@ -1,21 +1,21 @@ - 1 - Creation in progress + 1 - Creation in progress - 2 - Order validated + 2 - Order validated - 3 - Pending receipt + 3 - Pending receipt - 4 - Order received in part + 4 - Order received in part - 5 - Order received completely + 5 - Order received completely - 6 - Order canceled + 6 - Order canceled diff --git a/install-dev/langs/de/data/tab.xml b/install-dev/langs/de/data/tab.xml index 82f3a3846..a3d275baf 100644 --- a/install-dev/langs/de/data/tab.xml +++ b/install-dev/langs/de/data/tab.xml @@ -83,8 +83,6 @@ - - @@ -96,7 +94,6 @@ - diff --git a/install-dev/langs/en/data/category.xml b/install-dev/langs/en/data/category.xml index 3c34ab702..87b90b95e 100644 --- a/install-dev/langs/en/data/category.xml +++ b/install-dev/langs/en/data/category.xml @@ -1,13 +1,13 @@ - - Root - - root - - - - + + Root + + root + + + + Home diff --git a/install-dev/langs/en/data/supply_order_state.xml b/install-dev/langs/en/data/supply_order_state.xml index 2a4299a17..1e8903f0f 100644 --- a/install-dev/langs/en/data/supply_order_state.xml +++ b/install-dev/langs/en/data/supply_order_state.xml @@ -1,21 +1,21 @@ - 1 - Creation in progress + 1 - Creation in progress - 2 - Order validated + 2 - Order validated - 3 - Pending receipt + 3 - Pending receipt - 4 - Order received in part + 4 - Order received in part - 5 - Order received completely + 5 - Order received completely - 6 - Order canceled + 6 - Order canceled diff --git a/install-dev/langs/en/data/tab.xml b/install-dev/langs/en/data/tab.xml index 80f0a483b..0754cf2de 100644 --- a/install-dev/langs/en/data/tab.xml +++ b/install-dev/langs/en/data/tab.xml @@ -83,8 +83,6 @@ - - @@ -96,7 +94,6 @@ - diff --git a/install-dev/langs/es/data/category.xml b/install-dev/langs/es/data/category.xml index 929aa84de..0d07fe1e2 100644 --- a/install-dev/langs/es/data/category.xml +++ b/install-dev/langs/es/data/category.xml @@ -1,13 +1,13 @@ - - Root - - root - - - - + + Root + + root + + + + Inicio diff --git a/install-dev/langs/es/data/supply_order_state.xml b/install-dev/langs/es/data/supply_order_state.xml index 2a4299a17..1e8903f0f 100644 --- a/install-dev/langs/es/data/supply_order_state.xml +++ b/install-dev/langs/es/data/supply_order_state.xml @@ -1,21 +1,21 @@ - 1 - Creation in progress + 1 - Creation in progress - 2 - Order validated + 2 - Order validated - 3 - Pending receipt + 3 - Pending receipt - 4 - Order received in part + 4 - Order received in part - 5 - Order received completely + 5 - Order received completely - 6 - Order canceled + 6 - Order canceled diff --git a/install-dev/langs/es/data/tab.xml b/install-dev/langs/es/data/tab.xml index 05ba8bfd2..82a436dd5 100644 --- a/install-dev/langs/es/data/tab.xml +++ b/install-dev/langs/es/data/tab.xml @@ -83,8 +83,6 @@ - - @@ -96,7 +94,6 @@ - diff --git a/install-dev/langs/fr/data/category.xml b/install-dev/langs/fr/data/category.xml index 6389d16b9..a11b56b8f 100644 --- a/install-dev/langs/fr/data/category.xml +++ b/install-dev/langs/fr/data/category.xml @@ -1,13 +1,13 @@ - - Root - - root - - - - + + Root + + root + + + + Accueil diff --git a/install-dev/langs/fr/data/supply_order_state.xml b/install-dev/langs/fr/data/supply_order_state.xml index 9448e6dc1..d0754ebcc 100644 --- a/install-dev/langs/fr/data/supply_order_state.xml +++ b/install-dev/langs/fr/data/supply_order_state.xml @@ -1,21 +1,21 @@ - 1 - Création en cours + 1 - Création en cours - 2 - Commande validée + 2 - Commande validée - 3 - En attente de réception + 3 - En attente de réception - 4 - Commande réceptionnée partiellement + 4 - Commande réceptionnée partiellement - 5 - Commande réceptionnée totalement + 5 - Commande réceptionnée totalement - 6 - Commande annulée + 6 - Commande annulée diff --git a/install-dev/langs/fr/data/tab.xml b/install-dev/langs/fr/data/tab.xml index 149bb6952..879d76cf6 100644 --- a/install-dev/langs/fr/data/tab.xml +++ b/install-dev/langs/fr/data/tab.xml @@ -83,8 +83,6 @@ - - @@ -96,7 +94,6 @@ - diff --git a/install-dev/langs/it/data/category.xml b/install-dev/langs/it/data/category.xml index 3477765f4..84763aa52 100644 --- a/install-dev/langs/it/data/category.xml +++ b/install-dev/langs/it/data/category.xml @@ -1,13 +1,13 @@ - - Root - - root - - - - + + Root + + root + + + + Home page diff --git a/install-dev/langs/it/data/supply_order_state.xml b/install-dev/langs/it/data/supply_order_state.xml index 1182f8b2d..df0341915 100644 --- a/install-dev/langs/it/data/supply_order_state.xml +++ b/install-dev/langs/it/data/supply_order_state.xml @@ -1,21 +1,21 @@ - 1 - Cretion in progress + 1 - Cretion in progress - 2 - Order validated + 2 - Order validated - 3 - Pending receipt + 3 - Pending receipt - 4 - Order received in part + 4 - Order received in part - 5 - Order received completely + 5 - Order received completely - 6 - Order canceled + 6 - Order canceled diff --git a/install-dev/langs/it/data/tab.xml b/install-dev/langs/it/data/tab.xml index f1fd4f607..3ef7f38dc 100644 --- a/install-dev/langs/it/data/tab.xml +++ b/install-dev/langs/it/data/tab.xml @@ -83,8 +83,6 @@ - - @@ -96,7 +94,6 @@ - diff --git a/translations/fr/admin.php b/translations/fr/admin.php index dfdd1ada9..b3619a463 100644 --- a/translations/fr/admin.php +++ b/translations/fr/admin.php @@ -16,98 +16,6 @@ $_LANGADM['AdminAccessec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter'; $_LANGADM['AdminAccessf1206f9fadc5ce41694f69129aecac26'] = 'Configurer'; $_LANGADM['AdminAccessf2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer'; $_LANGADM['AdminAccessfce31125ecc3fdca7df70c417a0de59c'] = ' : le module est installé dans la base de données, mais ses fichiers sont soit manquants, soit incompatibles.'; -$_LANGADM['AdminAccountingConfiguration0095a9fa74d1713e43e370a7d7846224'] = 'Export'; -$_LANGADM['AdminAccountingConfiguration05c2af8e9583b3ade94e13447958f7af'] = 'Les numéros de compte n\'ont pu être mis à jour'; -$_LANGADM['AdminAccountingConfiguration0a00c22a3a2a56e14c21e34d92f5a14b'] = 'Veuillez sélectionner la boutique sur laquelle vous souhaiter configurer la comptabilité'; -$_LANGADM['AdminAccountingConfiguration1fff75732a15be33f0468b49bedd77af'] = 'Compte charge transporteur non soumi'; -$_LANGADM['AdminAccountingConfiguration20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuration mise à jour'; -$_LANGADM['AdminAccountingConfiguration2b22cadc9d7d89c7825ff0f590560911'] = 'Si l\'un des champs ci-dessous est vide, il utilisera ce numéro par défaut'; -$_LANGADM['AdminAccountingConfiguration395a8d39c70bb14fe5d4683201ee6611'] = 'Définir le numéro de compte pour les emballages cadeau'; -$_LANGADM['AdminAccountingConfiguration483037b0519492ed2b34db804be76d4c'] = 'Définir le numéro de compte pour les frais de manutention'; -$_LANGADM['AdminAccountingConfiguration485495abd8dde1587f3eb6d94e6427ac'] = 'Numéro de compte par défaut'; -$_LANGADM['AdminAccountingConfiguration493a59c0b9bc3c85ae2a908f031a15a1'] = 'Définir le préfix client par défaut'; -$_LANGADM['AdminAccountingConfiguration512e058007a9c2a968324c5b871cfe80'] = 'Compte emballage cadeau'; -$_LANGADM['AdminAccountingConfiguration57dd1c53d865dfc5330c808028a83849'] = 'Journal'; -$_LANGADM['AdminAccountingConfiguration59a17feefb0f40c2bf00c624ac7750a1'] = 'Definir la longueur max du compte client (le préfix sera toujours affiché avec l\'id du client)'; -$_LANGADM['AdminAccountingConfiguration6a8777c9d4ab5b2f43c4444d423e28c1'] = 'Définir le numéro de compte pour les charge transporteur soumi'; -$_LANGADM['AdminAccountingConfiguration7f2b2a335da5985bfb129f9f07762162'] = 'Définir le numéro de compte pour les charge transporteur non soumi'; -$_LANGADM['AdminAccountingConfigurationa8e0a285de8593b0f978b33fb620179e'] = 'Numéro par défaut pour cette boutique'; -$_LANGADM['AdminAccountingConfigurationa9e2ceb7315eca5c3974b433f0c540fb'] = 'Les numéros de compte ont été mis à jour'; -$_LANGADM['AdminAccountingConfigurationac4aac5f983a61b933a75d5569adffa9'] = 'Compte charge transporteur soumi'; -$_LANGADM['AdminAccountingConfigurationc490d21c78b2234e4d7e49e88c317f4d'] = 'Configuration Comptable'; -$_LANGADM['AdminAccountingConfigurationc9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder'; -$_LANGADM['AdminAccountingConfigurationcdb61c11332ee5b498f24af3cd2ec02b'] = 'Compte manutention'; -$_LANGADM['AdminAccountingConfigurationd025a6b1509119c8ac95588d367aa1e8'] = 'Longueur du compte client'; -$_LANGADM['AdminAccountingConfigurationd7d502b813c3879cf2e8b5c624e5781c'] = 'Préfixe du client'; -$_LANGADM['AdminAccountingConfigurationfc53051c5dda120b2cddaa634639f2bc'] = 'Numéro de compte par zone'; -$_LANGADM['AdminAccountingExport02529440bcda5643c95e24a499fab046'] = 'Date de début'; -$_LANGADM['AdminAccountingExport05688c675e3bf04e69b30913bfe1a5b1'] = 'Le dossier de téléchargement (export) n\'a pas les droits suffisants'; -$_LANGADM['AdminAccountingExport08bd40c7543007ad06e4fce31618f6ec'] = 'Compte'; -$_LANGADM['AdminAccountingExport0b27918290ff5323bea1e3b78a9cf04e'] = 'Fichier'; -$_LANGADM['AdminAccountingExport0d00ac1efdf30e85e3dd7eaf3bf8f2ed'] = 'La date n\'a pas le bon format'; -$_LANGADM['AdminAccountingExport0d70f7ea221b7f5c11f077fbf3af9591'] = 'Date de fin'; -$_LANGADM['AdminAccountingExport118107002189452f7a7286022712a361'] = 'Veuillez sélectionner le bon format de fichier'; -$_LANGADM['AdminAccountingExport16d2b386b2034b9488996466aaae0b57'] = 'Historique'; -$_LANGADM['AdminAccountingExport1a176b0588a6c2492be46507421a5416'] = 'Lancer l\'export'; -$_LANGADM['AdminAccountingExport2f19ab3814f4def00bff7c847ec10cfc'] = 'Export comptable'; -$_LANGADM['AdminAccountingExport30eaa341fe77ffc920101f4a38b5c2d4'] = 'Numéro de compte client'; -$_LANGADM['AdminAccountingExport312c2a6a33f63491228ad1595de870b4'] = 'Aucune donnée exportée trouver'; -$_LANGADM['AdminAccountingExport36f07a9e1ce283822836fdb33f482b1f'] = 'Type d\'export'; -$_LANGADM['AdminAccountingExport3c42c196be0eaf402da7470e945d90c0'] = 'Veuillez sélectionner le type d\'export souhaité'; -$_LANGADM['AdminAccountingExport440ac606343b8a66acad0d2978786d2a'] = 'Date de la facture'; -$_LANGADM['AdminAccountingExport4e065ba1bec1d62b2d5450256612fa96'] = 'Numéro de la facture'; -$_LANGADM['AdminAccountingExport54b57630f7f35ff4b48b4217e05cc750'] = 'Rapprochement comptable'; -$_LANGADM['AdminAccountingExport59c8e3950097add79781bdfae7c48c3a'] = 'Le fichier ne peut être ouvert ou créé, veuillez vérifier les droits d\'accès'; -$_LANGADM['AdminAccountingExport5ebcfd4f7b7c439466153455211322e6'] = 'Rapprochement comptable'; -$_LANGADM['AdminAccountingExport63ca8d76b0a70665bdeab1ff3cd9a9eb'] = 'Choisir un format de fichier'; -$_LANGADM['AdminAccountingExport6b2b5614a23abed4834b7cb7b91c6887'] = 'Journal'; -$_LANGADM['AdminAccountingExport776a4f1f391ad4e2173fd4647c442783'] = 'Total TTC'; -$_LANGADM['AdminAccountingExport78e47fa6412a63f4120012972a66c4d6'] = 'Débit (TVA+HT)'; -$_LANGADM['AdminAccountingExport7c9a3504dd4ce74b8021267ae1802968'] = 'Type de paiement'; -$_LANGADM['AdminAccountingExport801ab24683a4a8c433c6eb40c48bcd9d'] = 'Télécharger'; -$_LANGADM['AdminAccountingExport8fe06d9f9528e87f6d353cdc4d97726b'] = 'Export Comptable'; -$_LANGADM['AdminAccountingExport917f437f629c168e641b1731d2dbb553'] = 'Format de fichier'; -$_LANGADM['AdminAccountingExport9d1a52ead6a8bd0d1feaa81f8e2e353a'] = 'Générer'; -$_LANGADM['AdminAccountingExport9f7a0a04a5ba24f64d13ac1be63bdb43'] = 'Veuillez sélection les dates'; -$_LANGADM['AdminAccountingExporta367396481a812bdfcf029d9aa5dd85d'] = 'Type d\'export'; -$_LANGADM['AdminAccountingExportac1d3ccc1bcfd04b713a97b7421639b5'] = 'Numéro de transaction'; -$_LANGADM['AdminAccountingExportb15a9669c217cdd9cc7374ac7bbd1d36'] = 'Lancer l\'export'; -$_LANGADM['AdminAccountingExportbed307ffec53d168016da539347dba04'] = 'Excel (CSV)'; -$_LANGADM['AdminAccountingExportc669035b1f014b932d2281f65733637b'] = 'Depuis le :'; -$_LANGADM['AdminAccountingExportdee66ca836ec19fd0d6a11012ddb1f5f'] = 'Choisir le type d\'export'; -$_LANGADM['AdminAccountingExporte0f19919476adfb83acbba4852907b54'] = 'Libellé'; -$_LANGADM['AdminAccountingExporte18e41aba163394889378244b92fc615'] = 'Cette export a déjà été exécuté avec un format de fichier différent'; -$_LANGADM['AdminAccountingExporte22a0d5648dd703f0999b179f1093528'] = 'Export comptable'; -$_LANGADM['AdminAccountingExporteaf44b0d5410d22d5290eab1f78d336d'] = 'Code de la devise'; -$_LANGADM['AdminAccountingExportec0fc0100c4fc1ce4eea230c3dc10360'] = 'Indéfinie'; -$_LANGADM['AdminAccountingExportf240aa382d679a05265684c230b3ba81'] = 'Text (TXT)'; -$_LANGADM['AdminAccountingExportf2b9ec1e740188d1664397d6f93557b5'] = 'Cette export a déjà été exécuté avec ce format de fichier'; -$_LANGADM['AdminAccountingExportf5a126d21b4992c42ef488093a2213fa'] = 'Crédit (TTC)'; -$_LANGADM['AdminAccountingExportf7c8126d4209a3dbc04696c27663137c'] = 'Jusqu\'au :'; -$_LANGADM['AdminAccountingExportfcf18fcae4e6fe5df1e3c0c663521dca'] = 'L\'export s\'est déroulé avec succès'; -$_LANGADM['AdminAccountingManagement05c2af8e9583b3ade94e13447958f7af'] = 'Les numéros de comptes n\'ont pu être mis à jour/ajoutés dans la base de données'; -$_LANGADM['AdminAccountingManagement0a00c22a3a2a56e14c21e34d92f5a14b'] = 'Veuillez sélectionner la boutique que vous souhaiter configurer'; -$_LANGADM['AdminAccountingManagement3d87210607b465011fdf6efd18217782'] = 'Gestion comptabilité'; -$_LANGADM['AdminAccountingManagementa9e2ceb7315eca5c3974b433f0c540fb'] = 'Les numéros de comptes ont été enregistrés'; -$_LANGADM['AdminAccountingManagementc9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer'; -$_LANGADM['AdminAccountingRegisteredNumber0f26e4f64d58beb4d924627c707e43ad'] = 'Numéro de compte'; -$_LANGADM['AdminAccountingRegisteredNumber1f1c4d911cbd4be0090bb8b28c5a61e8'] = 'Liste des numéros de compte pour les zones / boutique'; -$_LANGADM['AdminAccountingRegisteredNumber20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom'; -$_LANGADM['AdminAccountingRegisteredNumber26b968aa15b6117ed8a2333da000bbdf'] = 'Liste des numéros de compte pour les emballages cadeau'; -$_LANGADM['AdminAccountingRegisteredNumber2b049bee214584343fc5a815954ede5d'] = 'Aucun numéro de compte défini dans cette liste'; -$_LANGADM['AdminAccountingRegisteredNumber3173e48bf0a732dbf97ad2757cb5f643'] = 'Nombre de zone associés à ce compte'; -$_LANGADM['AdminAccountingRegisteredNumber3404de45011c5931336a0dc190ec9da1'] = 'Liste des numéros de comptes pour les charge transporteur non soumie'; -$_LANGADM['AdminAccountingRegisteredNumber3f88f95f802c9d3166aa07a4002038cd'] = 'Liste des numéros de compte pour les produits'; -$_LANGADM['AdminAccountingRegisteredNumber4fa6da62620c0b6f006a4c43b46be5c6'] = 'Nombre de charge transporteur soumie associé à ce compte'; -$_LANGADM['AdminAccountingRegisteredNumber628c592f941aedfae6d887c274540ea4'] = 'Liste des numéros de compte pour les charge transporteur soumie '; -$_LANGADM['AdminAccountingRegisteredNumber66686281092e72ceb4b9656884b83568'] = 'Nombre de taxes associés à ce compte'; -$_LANGADM['AdminAccountingRegisteredNumber69c95fe6f0710cd50352eb357af1cba2'] = 'Nombre de produits associés à ce compte'; -$_LANGADM['AdminAccountingRegisteredNumber7c4ea6246042db896f89e9ca34ef4f1e'] = 'Plan comptable'; -$_LANGADM['AdminAccountingRegisteredNumber8d3f5eff9c40ee315d452392bed5309b'] = 'Nom'; -$_LANGADM['AdminAccountingRegisteredNumber92596d3d14a1b9bfacfc8d06cad0c1b8'] = 'Nombre d\'emballage cadeau associé à ce compte'; -$_LANGADM['AdminAccountingRegisteredNumber9d4888d782de50f1f090fbac616708c4'] = 'Liste des numéros de compte associés aux clients'; -$_LANGADM['AdminAccountingRegisteredNumberc6546c82fead92f71f300a7aec29804c'] = 'Liste des numéros de compte pour les taxes'; -$_LANGADM['AdminAccountingRegisteredNumbere0f83dbb81ed86890fc524a7181218dc'] = 'Nombre de charge transporteur non soumie associé à ce compte'; $_LANGADM['AdminAddresses1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Société'; $_LANGADM['AdminAddresses20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom'; $_LANGADM['AdminAddresses284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Adresses'; @@ -966,7 +874,6 @@ $_LANGADM['AdminCustomers7b4d23148ad2c2f32f217ae0640a375c'] = 'Vous disposez de $_LANGADM['AdminCustomers89a718b06ee9b0a9bf23792283e06946'] = 'Groupe par défaut :'; $_LANGADM['AdminCustomers8b5dd64ab8d0b8158906796b53a200e2'] = 'Adresse e-mail'; $_LANGADM['AdminCustomers8d218b952c9ef571cd270aaef8f849d1'] = 'Autoriser ou non ce client à se connecter'; -$_LANGADM['AdminCustomers8fb487f39e972f3d649b70f37ba97f44'] = 'Utilisé pour l\'export comptable. Si ce champs est vide, l\'export comptable utilisera le numéro prédéfini dans votre boutique %s'; $_LANGADM['AdminCustomers914419aa32f04011357d3b604a86d7eb'] = 'Transporteur'; $_LANGADM['AdminCustomers93bd48ecb9c4d5c4eec7fefffbb2070f'] = 'Dernières connexions'; $_LANGADM['AdminCustomers96b0141273eabab320119c467cdcaf17'] = 'Total'; @@ -1002,7 +909,6 @@ $_LANGADM['AdminCustomersd1554912e46f8d36a800ad8b604225f1'] = 'Commandes valides $_LANGADM['AdminCustomersd3139f39f1ad6324c80a9ddd50cc7867'] = 'Pages vues'; $_LANGADM['AdminCustomersd3b206d196cd6be3a2764c1fb90b200f'] = 'Supprimer la sélection'; $_LANGADM['AdminCustomersd55669822f1a8cf72ec1911e462a54eb'] = 'pour'; -$_LANGADM['AdminCustomersd5fe32c318ced2bca059b0fc2e64a618'] = 'Numéro comptable :'; $_LANGADM['AdminCustomersd75d64b130eb4439fd6cf1051a20321a'] = 'n\'a pas encore enregistré d\'adresse'; $_LANGADM['AdminCustomersdd7bf230fde8d4836917806aff6a6b27'] = 'Adresse'; $_LANGADM['AdminCustomerse0f0b0564d3d29a93fad7a4178b7b1ca'] = 'ID :'; @@ -2459,19 +2365,16 @@ $_LANGADM['AdminProducts03937134cedab9078be39a77ee3a48a0'] = 'Groupe'; $_LANGADM['AdminProducts03c2e7e41ffc181a4e84080b4710e81e'] = 'Neuf'; $_LANGADM['AdminProducts03e895d6310cdab805586fce4123ed08'] = 'Sélectionner le type d\'image :'; $_LANGADM['AdminProducts0449f210068787074ce58175b1a2f5cf'] = 'Supprimer ce produit'; -$_LANGADM['AdminProducts05c2af8e9583b3ade94e13447958f7af'] = 'Les numéros de compte n\'ont pas pu être mis à jour ou ajoutés dans la base de données'; $_LANGADM['AdminProducts0637058fbe3054e03005b04e2852b06f'] = 'laisser vide si le prix ne change pas'; $_LANGADM['AdminProducts06444363878572ed1fd5c9342cd5884f'] = 'Disponible à partir de :'; $_LANGADM['AdminProducts06d43815fa42336629ff54da5630143c'] = 'le fichier'; $_LANGADM['AdminProducts0932fe7755e51cff71c39720af420c3b'] = 'Devise du prix à l\'unité'; -$_LANGADM['AdminProducts0a00c22a3a2a56e14c21e34d92f5a14b'] = 'Veuillez choisir la boutique que vous souhaitez configurer'; $_LANGADM['AdminProducts0a5fa53f3f20f67f98bd6c3b16df059d'] = 'est obligatoire'; $_LANGADM['AdminProducts0b27918290ff5323bea1e3b78a9cf04e'] = 'Fichier'; $_LANGADM['AdminProducts0ba05d9030c37586ec90a10b26f3d425'] = 'Fournisseurs du produit'; $_LANGADM['AdminProducts0d0a2536d9091f317c4c5695545efebb'] = 'Écotaxe (TTC) :'; $_LANGADM['AdminProducts0d521f7724416d12a25c833829c6810b'] = 'List des produits de ce pack :'; $_LANGADM['AdminProducts0e7c3ab78aa07c029da5f225a6619ca3'] = 'Les quantités disponibles pour ce produit sont synchronisées sur le stock physique (utilisable) en entrepôts'; -$_LANGADM['AdminProducts0f26e4f64d58beb4d924627c707e43ad'] = 'Numéro de compte'; $_LANGADM['AdminProducts104f50d9d335bbe38ee0c8e44ebddf03'] = '(US, Canada)'; $_LANGADM['AdminProducts1063e38cb53d94d386f21227fcd84717'] = 'Supprimer'; $_LANGADM['AdminProducts10b8ce36a973c8009b521b39488a89a7'] = 'Frais de port supplémentaires :'; @@ -2507,7 +2410,6 @@ $_LANGADM['AdminProducts1f87346a16cf80c372065de3c54c86d9'] = 'TTC'; $_LANGADM['AdminProducts1fa366c172df7613ac40a6e8c5c0c6b1'] = 'associer vos entrepôts avec des boutiques'; $_LANGADM['AdminProducts1fcff33e9fa51cdabcee9b29a88cdb24'] = 'Cette interface vous permet de gérer les quantités disponibles à la vente pour ce produit.'; $_LANGADM['AdminProducts20a722e0a7a1f2aed3924e23cb2a86cd'] = 'Notez que si un produit du pack est décliné, c\'est sa déclinaison par défaut qui sera utilisée pour les mouvements de stocks.'; -$_LANGADM['AdminProducts20d8e3c9ba72de629652dc849c2a326a'] = 'Configurez le numéro de compte pour les produits de chaque zone. Si le champ est vide, le numéro par défaut de la boutique défini dans l\'onglet Comptabilité est utilisé'; $_LANGADM['AdminProducts21021ea0e52be8e9c599f4dff41e5be0'] = 'Caractéristique'; $_LANGADM['AdminProducts21034ae6d01a83e702839a72ba8a77b0'] = 'HT'; $_LANGADM['AdminProducts2194e5264b4e11db918b9d1d428ab68f'] = 'Ne peut pas être l\'attribut par défaut'; @@ -2590,7 +2492,6 @@ $_LANGADM['AdminProducts535fb9c585d10cb369e97f1ae2d5e11f'] = 'Déjà incluse dan $_LANGADM['AdminProducts544baae42433c186ff222736db985d7d'] = 'Ajouter une valeur prédéfinie dans un premier temps'; $_LANGADM['AdminProducts545f6c2f382c04810103b3e5e6f7d841'] = 'Illimité'; $_LANGADM['AdminProducts55110f4c6a2c90b143c6fcd295cb7bc7'] = 'Une déclinaison par défaut doit être désignée pour chaque produit.'; -$_LANGADM['AdminProducts556a6218e1f97339218c46921f1a0f51'] = 'Vous devez enregistrer ce produit avant de gérer la comptabilité de celui-ci.'; $_LANGADM['AdminProducts57ec7ec7b4ada0275e7a24f8543039e0'] = 'Il n\'est pas possible de modifier les quantités lorsque :'; $_LANGADM['AdminProducts58fd2b2308056ad80255a322b305742b'] = 'Nombre de jours'; $_LANGADM['AdminProducts59716c97497eb9694541f7c3d37b1a4d'] = 'Pays'; @@ -2627,7 +2528,6 @@ $_LANGADM['AdminProducts6ba23760079b4b664d4d5e311c7d5984'] = 'Mots-clés sépar $_LANGADM['AdminProducts6c9c761d2a07d20625686d8062992f80'] = 'Je veux utiliser la gestion des stocks avancée pour ce produit'; $_LANGADM['AdminProducts6ca82180f678cae60daa0476baf5e523'] = 'Vous pouvez définir des prix spécifiques pour des clients appartenant à différents groupes, différents pays...'; $_LANGADM['AdminProducts6da03a74721a0554b7143254225cc08a'] = 'Reconditionné'; -$_LANGADM['AdminProducts6e0fbf5e58083d923245509df03586a0'] = 'Ces champs sont utilisés pour l\'export de comptabilité'; $_LANGADM['AdminProducts6eac2df6a5cc74282553321a73c553fb'] = 'Veuillez cocher une catégorie afin de sélectionner la catégorie par défaut.'; $_LANGADM['AdminProducts6f382b016d2f2357bae77571ccbf0d18'] = 'L\'URL réécrite est vide. Vous devez saisir une URL réécrite pour la langue par défaut avant de pouvoir enregistrer le produit.'; $_LANGADM['AdminProducts6f39383b81d4999830ab6febe6279777'] = 'Ajouter ou modifier des déclinaisons de produit'; @@ -2708,7 +2608,6 @@ $_LANGADM['AdminProducts98f770b0af18ca763421bac22b4b6805'] = 'Caractéristiques' $_LANGADM['AdminProducts998b344cff693ad388a14ba89b1523c7'] = 'n\'est pas valable'; $_LANGADM['AdminProducts99af56daf9ee280b15e8ed79d75f0255'] = 'Liste des tags'; $_LANGADM['AdminProducts9a63ec735f057c1366284bda67eee7de'] = 'Performances'; -$_LANGADM['AdminProducts9bbd45bad55cfc620803907f2d8a0217'] = 'Comptabilité'; $_LANGADM['AdminProducts9be976b8052c984a95997e4a4f8eef96'] = 'apparaît dans le corps de la page produit'; $_LANGADM['AdminProducts9c67db9cd9f13cfbbe3ebb7ab90e9e3f'] = 'Prix de vente TTC :'; $_LANGADM['AdminProducts9c7f56d70e922a61254366964c01c64a'] = 'Toutes les devises'; @@ -4016,14 +3915,12 @@ $_LANGADM['AdminTaxes0071aa279bd1583754a544277740f047'] = 'Supprimer la taxe n° $_LANGADM['AdminTaxes0099c0173a3c7758b36025bdae9b4fc7'] = 'Activé :'; $_LANGADM['AdminTaxes00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé'; $_LANGADM['AdminTaxes09e0f0c79e2f2959c73a321f2dd45421'] = 'Cette taxe est utilisée dans une règle de taxe, souhaitez-vous continuer?'; -$_LANGADM['AdminTaxes0eece02846ddad3b9115d06907752500'] = 'Numéro de compte :'; $_LANGADM['AdminTaxes1c669d037f8bc785f0e1a9aeb7070367'] = 'Taxe'; $_LANGADM['AdminTaxes2f2f0f119a907c6c67a3c6fcde0193ab'] = 'Adresse de livraison'; $_LANGADM['AdminTaxes38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer'; $_LANGADM['AdminTaxes49ee3087348e8d44e1feda1917443987'] = 'Nom'; $_LANGADM['AdminTaxes4e00e39db9994b6baeea51eaf66399d1'] = 'Écotaxe :'; $_LANGADM['AdminTaxes4e140ba723a03baa6948340bf90e2ef6'] = 'Nom :'; -$_LANGADM['AdminTaxes4e60715d561de124c1bf3cfdd875cf59'] = 'Utilisé pour l\'exportation de comptabilité'; $_LANGADM['AdminTaxes50068b9a709a0e2da6f25210de57bb85'] = 'Activer les taxes :'; $_LANGADM['AdminTaxes5f7d9a7f76dba4bc86062ea848255f2f'] = 'Si vous désactivez l\'écotaxe, elle sera mise à 0 sur chacun de vos produits.'; $_LANGADM['AdminTaxes6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caractères interdits :';