Merge branch 'develop' of https://github.com/Dolibarr/dolibarr.git into develop

This commit is contained in:
Laurent Destailleur 2013-10-14 15:56:42 +02:00
commit 0d36329336
35 changed files with 143 additions and 69 deletions

View File

@ -41,18 +41,18 @@ For users:
- New: A more responsive desgin for statistic box of home page. - New: A more responsive desgin for statistic box of home page.
- Qual: Implement same rule for return value of all command line scripts (0 when success, <>0 if error). - Qual: Implement same rule for return value of all command line scripts (0 when success, <>0 if error).
- New: [ task #1005 ] Adapting to Spanish legislation bill numbering - New: [ task #1005 ] Adapting to Spanish legislation bill numbering
- New: [ task #1011 ] Now supplier order and invoice deal with payment terms and mode - New: [ task #1011 ] Now supplier order and invoice deal with payment terms and mode.
- New: [ task #1014 ] Add option to recursivly add parent category - New: [ task #1014 ] Add option to recursivly add parent category.
- New: [ task #1016 ] Can define a specific numbering for deposits - New: [ task #1016 ] Can define a specific numbering for deposits.
- New: [ task #918 ] Stock replenishment - New: [ task #918 ] Stock replenishment.
- Fix: [ bug #992 ] Proforma invoices don't have a separated numeric count - Fix: [ bug #992 ] Proforma invoices don't have a separated numeric count.
- New : Add pdf link into supplier invoice list and supplier order list - New : Add pdf link into supplier invoice list and supplier order list.
- New : Genrate auto the PDF for supplier invoice - New : Genrate auto the PDF for supplier invoice.
- New : Add category into filter webservice thirdparty method getListOfThirdParties - New : Add category into filter webservice thirdparty method getListOfThirdParties.
- New : Allow to define margin or mark rate during quoting, ordering, invoicing - New : Allow to define margin or mark rate during quoting, ordering, invoicing.
- New : User permissions on margin module - New : User permissions on margin module.
- New : Add ref supplier into muscadet model - New : Add ref supplier into muscadet model/
- New : Add ability to copy contact address to clipboard - New : Add ability to copy contact address to clipboard.
- New: Can use tag {mm} before {yy} even when there is a reset into numbering masks. - New: Can use tag {mm} before {yy} even when there is a reset into numbering masks.
- New: [ task #1060 ] Register fields localtax(1|2)_type into details tables. - New: [ task #1060 ] Register fields localtax(1|2)_type into details tables.
- New: [ task #923 ] Localtax support for ODT templates. - New: [ task #923 ] Localtax support for ODT templates.

View File

@ -0,0 +1 @@
http://en.wikipedia.org/wiki/VAT_identification_number

View File

@ -57,6 +57,14 @@ if ($user->societe_id > 0)
$socid = $user->societe_id; $socid = $user->societe_id;
} }
$object=new Facture($db);
// Load object
if ($facid > 0)
{
$ret=$object->fetch($facid);
}
// Initialize technical object to manage hooks of paiements. Note that conf->hooks_modules contains array array // Initialize technical object to manage hooks of paiements. Note that conf->hooks_modules contains array array
$hookmanager = new HookManager($db); $hookmanager = new HookManager($db);
$hookmanager->initHooks(array('paiementcard')); $hookmanager->initHooks(array('paiementcard'));

View File

@ -1,6 +1,6 @@
<?php <?php
/* Copyright (C) 2006-2013 Laurent Destailleur <eldy@users.sourceforge.net> /* Copyright (C) 2006-2013 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com> * Copyright (C) 2005-2013 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2010-2013 Juanjo Menent <jmenent@2byte.es> * Copyright (C) 2010-2013 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr> * Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr>
* Copyright (C) 2011-2012 Philippe Grand <philippe.grand@atoo-net.com> * Copyright (C) 2011-2012 Philippe Grand <philippe.grand@atoo-net.com>
@ -1112,9 +1112,9 @@ abstract class CommonObject
$row = $this->db->fetch_row($resql); $row = $this->db->fetch_row($resql);
$rows[] = $row[0]; // Add parent line into array rows $rows[] = $row[0]; // Add parent line into array rows
$childrens = $this->getChildrenOfLine($row[0]); $childrens = $this->getChildrenOfLine($row[0]);
if (! empty($children)) if (! empty($childrens))
{ {
foreach($children as $child) foreach($childrens as $child)
{ {
array_push($rows, $child); array_push($rows, $child);
} }

View File

@ -4,7 +4,7 @@
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be> * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org> * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com> * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com> * Copyright (C) 2005-2013 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr> * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
* Copyright (C) 2006 Marc Barilley/Ocebo <marc@ocebo.com> * Copyright (C) 2006 Marc Barilley/Ocebo <marc@ocebo.com>
* Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerker@telenet.be> * Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerker@telenet.be>

View File

@ -106,11 +106,12 @@ class Translate
// Array force long code from first part, even if long code is defined // Array force long code from first part, even if long code is defined
$longforshort=array('ar'=>'ar_SA'); $longforshort=array('ar'=>'ar_SA');
if (isset($longforshort[strtolower($langpart[0])])) $srclang=$longforshort[strtolower($langpart[0])]; if (isset($longforshort[strtolower($langpart[0])])) $srclang=$longforshort[strtolower($langpart[0])];
else { else if (! is_numeric($langpart[1])) { // Second part YY may be a numeric with some Chrome browser
$srclang=strtolower($langpart[0])."_".strtoupper($langpart[1]); $srclang=strtolower($langpart[0])."_".strtoupper($langpart[1]);
$longforlong=array('no_nb'=>'nb_NO'); $longforlong=array('no_nb'=>'nb_NO');
if (isset($longforlong[strtolower($srclang)])) $srclang=$longforlong[strtolower($srclang)]; if (isset($longforlong[strtolower($srclang)])) $srclang=$longforlong[strtolower($srclang)];
} }
else $srclang=strtolower($langpart[0])."_".strtoupper($langpart[0]);
} }
else { // If it's for a codetouse that is a short code xx else { // If it's for a codetouse that is a short code xx
// Array to convert short lang code into long code. // Array to convert short lang code into long code.

View File

@ -1,5 +1,5 @@
<?php <?php
/* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@capnetworks.com> /* Copyright (C) 2010-2013 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2010-2011 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2010-2011 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr> * Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr>
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro> * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
@ -65,7 +65,7 @@
{ {
if ($line->fk_product > 0) { if ($line->fk_product > 0) {
echo $form->textwithtooltip($text,$description,3,'','',$i,0,($line->fk_parent_line?img_picto('', 'rightarrow'):'')); echo $form->textwithtooltip($text,$description,3,'','',$i,0,(!empty($line->fk_parent_line)?img_picto('', 'rightarrow'):''));
// Show range // Show range
echo get_date_range($line->date_start, $line->date_end); echo get_date_range($line->date_start, $line->date_end);
@ -78,14 +78,14 @@
} else { } else {
if (! empty($line->fk_parent_line)) echo img_picto('', 'rightarrow');
if ($type==1) $text = img_object($langs->trans('Service'),'service'); if ($type==1) $text = img_object($langs->trans('Service'),'service');
else $text = img_object($langs->trans('Product'),'product'); else $text = img_object($langs->trans('Product'),'product');
if (! empty($line->label)) { if (! empty($line->label)) {
$text.= ' <strong>'.$line->label.'</strong>'; $text.= ' <strong>'.$line->label.'</strong>';
echo $form->textwithtooltip($text,dol_htmlentitiesbr($line->description),3,'','',$i,0,($line->fk_parent_line?img_picto('', 'rightarrow'):'')); echo $form->textwithtooltip($text,dol_htmlentitiesbr($line->description),3,'','',$i,0,(!empty($line->fk_parent_line)?img_picto('', 'rightarrow'):''));
} else { } else {
if (! empty($line->fk_parent_line)) echo img_picto('', 'rightarrow');
echo $text.' '.dol_htmlentitiesbr($line->description); echo $text.' '.dol_htmlentitiesbr($line->description);
} }

View File

@ -70,11 +70,6 @@ $hidedesc = (GETPOST('hidedesc','int') ? GETPOST('hidedesc','int') : (! empty(
$hideref = (GETPOST('hideref','int') ? GETPOST('hideref','int') : (! empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF) ? 1 : 0)); $hideref = (GETPOST('hideref','int') ? GETPOST('hideref','int') : (! empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF) ? 1 : 0));
$object = new Expedition($db); $object = new Expedition($db);
// Load object
if ($id > 0 || ! empty($ref))
{
$ret=$object->fetch($id, $ref);
}
// Load object // Load object
if ($id > 0 || ! empty($ref)) if ($id > 0 || ! empty($ref))
@ -95,8 +90,6 @@ if ($action == 'add')
{ {
$error=0; $error=0;
$object = new Expedition($db);
$db->begin(); $db->begin();
$object->note = GETPOST('note','alpha'); $object->note = GETPOST('note','alpha');

View File

@ -301,3 +301,12 @@ ALTER TABLE llx_facture_fourn MODIFY COLUMN fk_cond_reglement integer NULL;
insert into llx_c_action_trigger (rowid,code,label,description,elementtype,rang) values (9,'COMPANY_SENTBYMAIL','Mails sent from third party card','Executed when you send email from third party card','societe',1); insert into llx_c_action_trigger (rowid,code,label,description,elementtype,rang) values (9,'COMPANY_SENTBYMAIL','Mails sent from third party card','Executed when you send email from third party card','societe',1);
create table llx_contrat_extrafields
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
fk_object integer NOT NULL,
import_key varchar(14) -- import key
) ENGINE=innodb;

View File

@ -0,0 +1,20 @@
-- ===================================================================
-- Copyright (C) 2013 Charles-Fr BENKE <charles.fr@benke.fr>
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-- ===================================================================
ALTER TABLE llx_contrat_extrafields ADD INDEX idx_contrat_extrafields (fk_object);

View File

@ -0,0 +1,25 @@
-- ========================================================================
-- Copyright (C) 2013 Charles-Fr BENKE <charles.fr@benke.fr>
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-- ========================================================================
create table llx_contrat_extrafields
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
fk_object integer NOT NULL,
import_key varchar(14) -- import key
) ENGINE=innodb;

View File

@ -104,7 +104,7 @@ ProfId3=Professional ID 3
ProfId4=Professional ID 4 ProfId4=Professional ID 4
ProfId5=Professional ID 5 ProfId5=Professional ID 5
ProfId6=Professional ID 6 ProfId6=Professional ID 6
ProfId1AR=Проф. Id едно (CUIT / Cuil) ProfId1AR=Проф. Id едно (CUIL)
ProfId2AR=Проф. Id 2 (Revenu зверове) ProfId2AR=Проф. Id 2 (Revenu зверове)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Professional ID 3
ProfId4=Professional ID 4 ProfId4=Professional ID 4
ProfId5=Professionel ID 5 ProfId5=Professionel ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (revenu Bestier) ProfId2AR=Prof Id 2 (revenu Bestier)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -301,7 +301,7 @@ ProfId1NL=KVK nummer
ProfId2NL=- ProfId2NL=-
ProfId3NL=- ProfId3NL=-
ProfId4NL=- ProfId4NL=-
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (Revenu Bestien) ProfId2AR=Prof Id 2 (Revenu Bestien)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Professional ID 3
ProfId4=Professional ID 4 ProfId4=Professional ID 4
ProfId5=Professional ID 5 ProfId5=Professional ID 5
ProfId6=Professional ID 6 ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (Revenu Bestien) ProfId2AR=Prof Id 2 (Revenu Bestien)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -22,6 +22,7 @@ Language_es_AR=Spanish (Argentina)
Language_es_HN=Spanish (Honduras) Language_es_HN=Spanish (Honduras)
Language_es_MX=Spanish (Mexico) Language_es_MX=Spanish (Mexico)
Language_es_PY=Spanish (Paraguay) Language_es_PY=Spanish (Paraguay)
Language_es_PE=Spanish (Peru)
Language_es_PR=Spanish (Puerto Rico) Language_es_PR=Spanish (Puerto Rico)
Language_et_EE=Estonian Language_et_EE=Estonian
Language_fa_IR=Persian Language_fa_IR=Persian

View File

@ -1,3 +1,6 @@
# Dolibarr language file - es_AR - companies # Dolibarr language file - es_AR - companies
CHARSET=UTF-8 CHARSET=UTF-8
CompanyHasCreditNote=Este cliente tiene <b>%s %s</b> notas de crédito/anticipos disponibles CompanyHasCreditNote=Este cliente tiene <b>%s %s</b> notas de crédito/anticipos disponibles
VATIntra=CUIT
VATIntraShort=CUIT
VATIntraVeryShort=CUIT

View File

@ -21,6 +21,8 @@ Language_es_ES=Español
Language_es_AR=Español (Argentina) Language_es_AR=Español (Argentina)
Language_es_HN=Español (Honduras) Language_es_HN=Español (Honduras)
Language_es_MX=Español (México) Language_es_MX=Español (México)
Language_es_PY=Español (Paraguay)
Language_es_PE=Español (Perú)
Language_es_PR=Español (Puerto Rico) Language_es_PR=Español (Puerto Rico)
Language_et_EE=Estonio Language_et_EE=Estonio
Language_fa_IR=Persa Language_fa_IR=Persa
@ -29,6 +31,7 @@ Language_fr_BE=Francés (Bélgica)
Language_fr_CA=Francés (Canadá) Language_fr_CA=Francés (Canadá)
Language_fr_CH=Francés (Suiza) Language_fr_CH=Francés (Suiza)
Language_fr_FR=Francés Language_fr_FR=Francés
Language_fr_NC=Francés (Nueva Caledonia)
Language_he_IL=Hebreo Language_he_IL=Hebreo
Language_hu_HU=Húngaro Language_hu_HU=Húngaro
Language_is_IS=Islandés Language_is_IS=Islandés

View File

@ -2,3 +2,6 @@
CHARSET=UTF-8 CHARSET=UTF-8
VATIsUsed=Sujeto a ISV VATIsUsed=Sujeto a ISV
VATIsNotUsed=No sujeto a ISV VATIsNotUsed=No sujeto a ISV
VATIntra=RTN
VATIntraShort=RTN
VATIntraVeryShort=RTN

View File

@ -3,3 +3,6 @@ CHARSET=UTF-8
State=Estado State=Estado
Town=Municipio Town=Municipio
CompanyHasCreditNote=Este cliente tiene <b>%s %s</b> notas de crédito/anticipos disponibles CompanyHasCreditNote=Este cliente tiene <b>%s %s</b> notas de crédito/anticipos disponibles
VATIntra=RFC
VATIntraShort=RFC
VATIntraVeryShort=RFC

View File

@ -2,3 +2,6 @@
CHARSET=UTF-8 CHARSET=UTF-8
VATIsUsed=Sujeto a IGV VATIsUsed=Sujeto a IGV
VATIsNotUsed=No sujeto a IGV VATIsNotUsed=No sujeto a IGV
VATIntra=RUC
VATIntraShort=RUC
VATIntraVeryShort=RUC

View File

@ -104,7 +104,7 @@ ProfId3=Professional ID 3
ProfId4=Professional ID 4 ProfId4=Professional ID 4
ProfId5=Professional ID 5 ProfId5=Professional ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (Revenu brutes) ProfId2AR=Prof Id 2 (Revenu brutes)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Professional-tunnuksen 3
ProfId4=Professional-tunnuksen 4 ProfId4=Professional-tunnuksen 4
ProfId5=Ammatillinen tunnus 5 ProfId5=Ammatillinen tunnus 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (revenu brutes) ProfId2AR=Prof Id 2 (revenu brutes)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -22,6 +22,7 @@ Language_es_AR=Espagnol (Argentine)
Language_es_HN=Espagnol (Honduras) Language_es_HN=Espagnol (Honduras)
Language_es_MX=Espagnol (Mexique) Language_es_MX=Espagnol (Mexique)
Language_es_PY=Espagnol (Paraguay) Language_es_PY=Espagnol (Paraguay)
Language_es_PE=Espagnol (Peru)
Language_es_PR=Espagnol (Puerto Rico) Language_es_PR=Espagnol (Puerto Rico)
Language_et_EE=Estonien Language_et_EE=Estonien
Language_fa_IR=Perse Language_fa_IR=Perse

View File

@ -104,7 +104,7 @@ ProfId3=Szakmai ID 3
ProfId4=Szakmai ID 4 ProfId4=Szakmai ID 4
ProfId5=Szakmai ID 5 ProfId5=Szakmai ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof ID 1 (CUIT / CUIL) ProfId1AR=Prof ID 1 (CUIL)
ProfId2AR=Prof ID 2 (revenu barmok) ProfId2AR=Prof ID 2 (revenu barmok)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Professional ID 3
ProfId4=Professional ID 4 ProfId4=Professional ID 4
ProfId5=Professional ID 5 ProfId5=Professional ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / CUIL) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (Revenu brutes) ProfId2AR=Prof Id 2 (Revenu brutes)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Professional ID 3
ProfId4=Professional ID 4 ProfId4=Professional ID 4
ProfId5=Profesjonell ID 5 ProfId5=Profesjonell ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof ID 2 (inntekter på brutes) ProfId2AR=Prof ID 2 (inntekter på brutes)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Professioneel ID 3
ProfId4=Professioneel ID 4 ProfId4=Professioneel ID 4
ProfId5=Professionele ID 5 ProfId5=Professionele ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (Cuit / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (Revenu woestelingen) ProfId2AR=Prof Id 2 (Revenu woestelingen)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Profesjonalne ID 3
ProfId4=Profesjonalne ID 4 ProfId4=Profesjonalne ID 4
ProfId5=Profesjonalny ID 5 ProfId5=Profesjonalny ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Id Prof 2 (bydlęta Revenu) ProfId2AR=Id Prof 2 (bydlęta Revenu)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=ID profesional 3
ProfId4=ID profesional 4 ProfId4=ID profesional 4
ProfId5=Professional ID 5 ProfId5=Professional ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / CUIL) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Id Prof 2 (brutos Revenu) ProfId2AR=Id Prof 2 (brutos Revenu)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-
@ -224,9 +224,9 @@ ProfId3RU=Prof Id 3 (KPP)
ProfId4RU=Prof Id 4 (OKPO) ProfId4RU=Prof Id 4 (OKPO)
ProfId5RU=- ProfId5RU=-
# ProfId6RU=- # ProfId6RU=-
VATIntra=IVA Intracomunitário VATIntra=CNPJ
VATIntraShort=IVA Intracomunitário Mínimo VATIntraShort=CNPJ
VATIntraVeryShort=IVA Intracomunitário Nulo VATIntraVeryShort=CNPJ
VATIntraSyntaxIsValid=Sintaxe Válida VATIntraSyntaxIsValid=Sintaxe Válida
VATIntraValueIsValid=Valor Válido VATIntraValueIsValid=Valor Válido
ProspectCustomer=Cliente Potencial/Cliente ProspectCustomer=Cliente Potencial/Cliente

View File

@ -104,7 +104,7 @@ ProfId3=Professional ID 3
ProfId4=Professional ID 4 ProfId4=Professional ID 4
ProfId5=Professional ID 5 ProfId5=Professional ID 5
ProfId6=Profesional ID 6 ProfId6=Profesional ID 6
ProfId1AR=Id-ul prof. 1 (CUIT / Cuil) ProfId1AR=Id-ul prof. 1 (CUIL)
ProfId2AR=Id-ul prof. 2 (Venituri brute) ProfId2AR=Id-ul prof. 2 (Venituri brute)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Профессиональный ID 3
ProfId4=Профессиональный ID 4 ProfId4=Профессиональный ID 4
ProfId5=Профессиональный ID 5 ProfId5=Профессиональный ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Проф Id 1 (CUIT / Cuil) ProfId1AR=Проф Id 1 (CUIL)
ProfId2AR=Проф Id 2 (Revenu скоты) ProfId2AR=Проф Id 2 (Revenu скоты)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Professionella ID 3
ProfId4=Professionella ID 4 ProfId4=Professionella ID 4
ProfId5=Professionell ID 5 ProfId5=Professionell ID 5
# ProfId6=Professional ID 6 # ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (Revenu sällar) ProfId2AR=Prof Id 2 (Revenu sällar)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-

View File

@ -104,7 +104,7 @@ ProfId3=Profesyonel ID 3
ProfId4=Profesyonel ID 4 ProfId4=Profesyonel ID 4
ProfId5=Profesyonel ID 5 ProfId5=Profesyonel ID 5
ProfId6=Professional ID 6 ProfId6=Professional ID 6
ProfId1AR=Prof Id 1 (CUIT / Cuil) ProfId1AR=Prof Id 1 (CUIL)
ProfId2AR=Prof Id 2 (revenu canavarlar) ProfId2AR=Prof Id 2 (revenu canavarlar)
ProfId3AR=- ProfId3AR=-
ProfId4AR=- ProfId4AR=-