fix merge

This commit is contained in:
Philippe GRAND 2018-09-04 14:33:34 +02:00
commit 50a26aaf16
46 changed files with 34377 additions and 33623 deletions

View File

@ -4,22 +4,52 @@ English Dolibarr ChangeLog
***** ChangeLog for 9.0.0 compared to 8.0.0 *****
For Users:
NEW: Stable module: Website
NEW: Stable module: WebDAV
NEW: Stable module: Module Builder
NEW: Dolibarr can provide information in page title when multicompany is enabled of not, making
Android application like DoliDroid able to provide native features for multicompany module
Android application like DoliDroid able to provide native features for multicompany module.
For developers:
Code changes to be more compatible with PSR2
* Code changes to be more compatible with PSR2
* Removed trigger USER_LOGOUT, USER_LOGIN, USER_LOGIN_FAILED (Some hooks are already dedicated for that)
***** ChangeLog for 8.0.1 compared to 8.0.0 *****
FIX: #9258
FIX: #9328
FIX: #9337
FIX: adding GROUP BY for PostgreSQL
FIX: API template for list pages in module builder
FIX: API template for record page to delete a record
FIX: a removed option was still in setup
FIX: badge on time spent on project and tasks
FIX: Delete file on smartphone
FIX: Fetch function will fetch comments
FIX: Fetch task will now fetch comments
FIX: $fk_account is always empty, must be $soc->fk_account
FIX: Force stripe api version to avoid trouble if we update stripe api
FIX: get_product_vat_for_country functions.lib.php
FIX: Get templates in a forced language
FIX: hook on dispatch order fourn
FIX: Language selection lost if error during creation of email template
FIX: Look and feel v8
FIX: propal.class.php
FIX: Add calls to fetchComments function
FIX: Remove fetchComments from project and task fetch function
FIX: remove internal property isextrafieldmanaged from API returns
FIX: sql error
FIX: table llx_chargessociales doesn't exists
FIX: trans on null object
FIX: vat rate code not returned by get_product_vat_for_country
FIX: warning for late template invoices to remove when suspended
FIX: Add hidden option MAIN_xxx_IN_SOURCE_ADDRESS to solve legal issues on PDF
FIX: Table llx_facture_rec_extrafields missing after migration
***** ChangeLog for 8.0.0 compared to 7.0.0 *****
For Users:
NEW: Experimental module: Ticket
NEW: Experimental module: WebDAV

View File

@ -121,6 +121,9 @@ if (empty($reshook))
if ($country_code)
{
$sqlfile = DOL_DOCUMENT_ROOT.'/install/mysql/data/llx_accounting_account_'.strtolower($country_code).'.sql';
// FIXME Get the ADD rowid and pass it + num of comapny * 100 000 000 to run_sql as a new parameter to say to update sql on the fly to add offset to rowid and account_parent value.
$result = run_sql($sqlfile, 1, 0, 1);
}

View File

@ -48,6 +48,7 @@ $search=GETPOST("search",'alpha');
$search_ref=GETPOST("search_ref",'alpha');
$search_lastname=GETPOST("search_lastname",'alpha');
$search_firstname=GETPOST("search_firstname",'alpha');
$search_civility=GETPOST("search_civility",'alpha');
$search_login=GETPOST("search_login",'alpha');
$search_address=GETPOST("search_address",'alpha');
$search_zip=GETPOST("search_zip",'alpha');
@ -105,6 +106,7 @@ $fieldstosearchall = array(
if($db->type == 'pgsql') unset($fieldstosearchall['d.rowid']);
$arrayfields=array(
'd.ref'=>array('label'=>$langs->trans("Ref"), 'checked'=>1),
'd.civility'=>array('label'=>$langs->trans("Civility"), 'checked'=>0),
'd.lastname'=>array('label'=>$langs->trans("Lastname"), 'checked'=>1),
'd.firstname'=>array('label'=>$langs->trans("Firstname"), 'checked'=>1),
'd.company'=>array('label'=>$langs->trans("Company"), 'checked'=>1),
@ -121,7 +123,7 @@ $arrayfields=array(
'state.nom'=>array('label'=>$langs->trans("State"), 'checked'=>0),
'country.code_iso'=>array('label'=>$langs->trans("Country"), 'checked'=>0),
/*'d.note_public'=>array('label'=>$langs->trans("NotePublic"), 'checked'=>0),
'd.note_private'=>array('label'=>$langs->trans("NotePrivate"), 'checked'=>0),*/
'd.note_private'=>array('label'=>$langs->trans("NotePrivate"), 'checked'=>0),*/
'd.datefin'=>array('label'=>$langs->trans("EndSubscription"), 'checked'=>1, 'position'=>500),
'd.datec'=>array('label'=>$langs->trans("DateCreation"), 'checked'=>0, 'position'=>500),
'd.tms'=>array('label'=>$langs->trans("DateModificationShort"), 'checked'=>0, 'position'=>500),
@ -160,6 +162,7 @@ if (empty($reshook))
$search_ref="";
$search_lastname="";
$search_firstname="";
$search_civility="";
$search_login="";
$search_company="";
$search_type="";
@ -203,7 +206,7 @@ $memberstatic=new Adherent($db);
$now=dol_now();
$sql = "SELECT d.rowid, d.login, d.lastname, d.firstname, d.societe as company, d.fk_soc,";
$sql.= " d.datefin, d.address, d.zip, d.town, d.state_id, d.country,";
$sql.= " d.civility, d.datefin, d.address, d.zip, d.town, d.state_id, d.country,";
$sql.= " d.email, d.phone, d.phone_perso, d.phone_mobile, d.skype, d.birth, d.public, d.photo,";
$sql.= " d.fk_adherent_type as type_id, d.morphy, d.statut, d.datec as date_creation, d.tms as date_update,";
$sql.= " t.libelle as type, t.subscription,";
@ -234,6 +237,7 @@ if ($search_ref)
if (is_numeric($search_ref)) $sql.= " AND (d.rowid = ".$db->escape($search_ref).")";
else $sql.=" AND 1 = 2"; // Always wrong
}
if ($search_civility) $sql.= natural_search("d.civility", $search_civility);
if ($search_firstname) $sql.= natural_search("d.firstname", $search_firstname);
if ($search_lastname) $sql.= natural_search(array("d.firstname", "d.lastname", "d.societe"), $search_lastname);
if ($search_login) $sql.= natural_search("d.login", $search_login);
@ -322,6 +326,7 @@ if ($sall != "") $param.="&sall=".urlencode($sall);
if ($statut != "") $param.="&statut=".urlencode($statut);
if ($search_ref) $param.="&search_ref=".urlencode($search_ref);
if ($search_nom) $param.="&search_nom=".urlencode($search_nom);
if ($search_civility) $param.="&search_civility=".urlencode($search_civility);
if ($search_firstname) $param.="&search_firstname=".urlencode($search_firstname);
if ($search_lastname) $param.="&search_lastname=".urlencode($search_lastname);
if ($search_login) $param.="&search_login=".urlencode($search_login);
@ -427,37 +432,36 @@ if (! empty($arrayfields['d.ref']['checked']))
print '<input class="flat maxwidth50" type="text" name="search_ref" value="'.dol_escape_htmltag($search_ref).'">';
print '</td>';
}
if (! empty($arrayfields['d.civility']['checked']))
{
print '<td class="liste_titre" align="left">';
print '<input class="flat maxwidth25" type="text" name="search_civility" value="'.dol_escape_htmltag($search_civility).'"></td>';
}
if (! empty($arrayfields['d.firstname']['checked']))
{
print '<td class="liste_titre" align="left">';
print '<input class="flat maxwidth50" type="text" name="search_firstname" value="'.dol_escape_htmltag($search_firstname).'"></td>';
}
if (! empty($arrayfields['d.lastname']['checked']))
{
print '<td class="liste_titre" align="left">';
print '<input class="flat maxwidth50" type="text" name="search_lastname" value="'.dol_escape_htmltag($search_lastname).'"></td>';
}
if (! empty($arrayfields['d.company']['checked']))
{
print '<td class="liste_titre" align="left">';
print '<input class="flat maxwidth50" type="text" name="search_company" value="'.dol_escape_htmltag($search_company).'"></td>';
}
if (! empty($arrayfields['d.login']['checked']))
{
print '<td class="liste_titre" align="left">';
print '<input class="flat maxwidth50" type="text" name="search_login" value="'.dol_escape_htmltag($search_login).'"></td>';
}
if (! empty($arrayfields['d.morphy']['checked']))
{
print '<td class="liste_titre" align="left">';
print '</td>';
}
if (! empty($arrayfields['t.libelle']['checked']))
{
print '<td class="liste_titre">';
@ -568,6 +572,7 @@ print "</tr>\n";
print '<tr class="liste_titre">';
if (! empty($conf->global->MAIN_SHOW_TECHNICAL_ID)) print_liste_field_titre("ID",$_SERVER["PHP_SELF"],'','',$param,'align="center"',$sortfield,$sortorder);
if (! empty($arrayfields['d.ref']['checked'])) print_liste_field_titre($arrayfields['d.ref']['label'],$_SERVER["PHP_SELF"],'d.rowid','',$param,'',$sortfield,$sortorder);
if (! empty($arrayfields['d.civility']['checked'])) print_liste_field_titre($arrayfields['d.civility']['label'],$_SERVER["PHP_SELF"],'d.civility','',$param,'',$sortfield,$sortorder);
if (! empty($arrayfields['d.firstname']['checked'])) print_liste_field_titre($arrayfields['d.firstname']['label'],$_SERVER["PHP_SELF"],'d.firstname','',$param,'',$sortfield,$sortorder);
if (! empty($arrayfields['d.lastname']['checked'])) print_liste_field_titre($arrayfields['d.lastname']['label'],$_SERVER["PHP_SELF"],'d.lastname','',$param,'',$sortfield,$sortorder);
if (! empty($arrayfields['d.company']['checked'])) print_liste_field_titre($arrayfields['d.company']['label'],$_SERVER["PHP_SELF"],'d.societe','',$param,'',$sortfield,$sortorder);
@ -605,6 +610,7 @@ while ($i < min($num, $limit))
$datefin=$db->jdate($obj->datefin);
$memberstatic->id=$obj->rowid;
$memberstatic->ref=$obj->rowid;
$memberstatic->civility_id=$obj->civility;
$memberstatic->lastname=$obj->lastname;
$memberstatic->firstname=$obj->firstname;
$memberstatic->statut=$obj->statut;
@ -630,10 +636,17 @@ while ($i < min($num, $limit))
// Ref
if (! empty($arrayfields['d.ref']['checked']))
{
print "<td>";
print "<td>";
print $memberstatic->getNomUrl(-1, 0, 'card', 'ref');
print "</td>\n";
}
// Civility
if (! empty($arrayfields['d.civility']['checked']))
{
print "<td>";
print $obj->civility;
print "</td>\n";
}
// Firstname
if (! empty($arrayfields['d.firstname']['checked']))
{
@ -658,12 +671,12 @@ while ($i < min($num, $limit))
// Login
if (! empty($arrayfields['d.login']['checked']))
{
print "<td>".$obj->login."</td>\n";
print "<td>".$obj->login."</td>\n";
}
// Moral/Physique
if (! empty($arrayfields['d.morphy']['checked']))
{
print "<td>".$memberstatic->getmorphylib($obj->morphy)."</td>\n";
print "<td>".$memberstatic->getmorphylib($obj->morphy)."</td>\n";
}
// Type label
if (! empty($arrayfields['t.libelle']['checked']))

View File

@ -3474,60 +3474,60 @@ class Commande extends CommonOrder
if (!$user->rights->commande->lire)
$option = 'nolink';
if ($option !== 'nolink')
if ($option !== 'nolink')
{
// Add param to save lastsearch_values or not
$add_save_lastsearch_values=($save_lastsearch_value == 1 ? 1 : 0);
if ($save_lastsearch_value == -1 && preg_match('/list\.php/',$_SERVER["PHP_SELF"])) $add_save_lastsearch_values=1;
if ($add_save_lastsearch_values) $url.='&save_lastsearch_values=1';
}
if ($short) return $url;
$label = '';
if ($user->rights->commande->lire) {
$label = '<u>'.$langs->trans("ShowOrder").'</u>';
$label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
$label .= '<br><b>'.$langs->trans('RefCustomer').':</b> '.($this->ref_customer ? $this->ref_customer : $this->ref_client);
if (!empty($this->total_ht)) {
$label .= '<br><b>'.$langs->trans('AmountHT').':</b> '.price($this->total_ht, 0, $langs, 0, -1, -1, $conf->currency);
}
if (!empty($this->total_tva)) {
$label .= '<br><b>'.$langs->trans('VAT').':</b> '.price($this->total_tva, 0, $langs, 0, -1, -1, $conf->currency);
}
if (!empty($this->total_ttc)) {
$label .= '<br><b>'.$langs->trans('AmountTTC').':</b> '.price($this->total_ttc, 0, $langs, 0, -1, -1, $conf->currency);
}
}
$linkclose='';
if (empty($notooltip) && $user->rights->commande->lire)
{
if (! empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER))
{
// Add param to save lastsearch_values or not
$add_save_lastsearch_values=($save_lastsearch_value == 1 ? 1 : 0);
if ($save_lastsearch_value == -1 && preg_match('/list\.php/',$_SERVER["PHP_SELF"])) $add_save_lastsearch_values=1;
if ($add_save_lastsearch_values) $url.='&save_lastsearch_values=1';
$label=$langs->trans("ShowOrder");
$linkclose.=' alt="'.dol_escape_htmltag($label, 1).'"';
}
$linkclose.= ' title="'.dol_escape_htmltag($label, 1).'"';
$linkclose.=' class="classfortooltip"';
}
if ($short) return $url;
$linkstart = '<a href="'.$url.'"';
$linkstart.=$linkclose.'>';
$linkend='</a>';
$label = '';
if ($option === 'nolink') {
$linkstart = '';
$linkend = '';
}
if ($user->rights->commande->lire) {
$label = '<u>'.$langs->trans("ShowOrder").'</u>';
$label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
$label .= '<br><b>'.$langs->trans('RefCustomer').':</b> '.($this->ref_customer ? $this->ref_customer : $this->ref_client);
if (!empty($this->total_ht)) {
$label .= '<br><b>'.$langs->trans('AmountHT').':</b> '.price($this->total_ht, 0, $langs, 0, -1, -1, $conf->currency);
}
if (!empty($this->total_tva)) {
$label .= '<br><b>'.$langs->trans('VAT').':</b> '.price($this->total_tva, 0, $langs, 0, -1, -1, $conf->currency);
}
if (!empty($this->total_ttc)) {
$label .= '<br><b>'.$langs->trans('AmountTTC').':</b> '.price($this->total_ttc, 0, $langs, 0, -1, -1, $conf->currency);
}
}
$result .= $linkstart;
if ($withpicto) $result.=img_object(($notooltip?'':$label), $this->picto, ($notooltip?(($withpicto != 2) ? 'class="paddingright"' : ''):'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip?0:1);
if ($withpicto != 2) $result.= $this->ref;
$result .= $linkend;
$linkclose='';
if (empty($notooltip) && $user->rights->commande->lire)
{
if (! empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER))
{
$label=$langs->trans("ShowOrder");
$linkclose.=' alt="'.dol_escape_htmltag($label, 1).'"';
}
$linkclose.= ' title="'.dol_escape_htmltag($label, 1).'"';
$linkclose.=' class="classfortooltip"';
}
$linkstart = '<a href="'.$url.'"';
$linkstart.=$linkclose.'>';
$linkend='</a>';
if ($option === 'nolink') {
$linkstart = '';
$linkend = '';
}
$result .= $linkstart;
if ($withpicto) $result.=img_object(($notooltip?'':$label), $this->picto, ($notooltip?(($withpicto != 2) ? 'class="paddingright"' : ''):'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip?0:1);
if ($withpicto != 2) $result.= $this->ref;
$result .= $linkend;
return $result;
return $result;
}

View File

@ -1191,6 +1191,8 @@ class Facture extends CommonInvoice
if ($add_save_lastsearch_values) $url.='&save_lastsearch_values=1';
}
if ($short) return $url;
$picto='bill';
if ($this->type == self::TYPE_REPLACEMENT) $picto.='r'; // Replacement invoice
if ($this->type == self::TYPE_CREDIT_NOTE) $picto.='a'; // Credit note

View File

@ -71,9 +71,9 @@ class Events // extends CommonObject
// List of all Audit/Security events supported by triggers
var $eventstolog=array(
array('id'=>'USER_LOGIN', 'test'=>1),
/*array('id'=>'USER_LOGIN', 'test'=>1),
array('id'=>'USER_LOGIN_FAILED', 'test'=>1),
array('id'=>'USER_LOGOUT', 'test'=>1),
array('id'=>'USER_LOGOUT', 'test'=>1),*/
array('id'=>'USER_CREATE', 'test'=>1),
array('id'=>'USER_MODIFY', 'test'=>1),
array('id'=>'USER_NEW_PASSWORD', 'test'=>1),

View File

@ -1490,9 +1490,9 @@ function show_actions_done($conf, $langs, $db, $filterobj, $objcon='', $noprint=
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
$formactions=new FormActions($db);
$formactions=new FormActions($db);
$actionstatic=new ActionComm($db);
$actionstatic=new ActionComm($db);
$userstatic=new User($db);
$contactstatic = new Contact($db);

View File

@ -60,7 +60,7 @@ class InterfaceLogevents extends DolibarrTriggers
$date = dol_now();
// Actions
if ($action == 'USER_LOGIN')
/*if ($action == 'USER_LOGIN')
{
dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
@ -87,7 +87,7 @@ class InterfaceLogevents extends DolibarrTriggers
// Initialisation donnees (date,duree,texte,desc)
$text="(UserLogoff,".$object->login.")";
$desc="(UserLogoff,".$object->login.")";
}
}*/
if ($action == 'USER_CREATE')
{
dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);

View File

@ -7,6 +7,7 @@
-- Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
-- Copyright (C) 2011-2018 Alexandre Spangaro <aspangaro@zendsi.com>
-- Copyright (C) 2015-2017 Juanjo Menent <jmenent@2byte.es>
-- Copyright (C) 2018 Abbes bahfir <dolipar@dolipar.org>
--
-- 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
@ -76,6 +77,8 @@ INSERT INTO llx_accounting_system (fk_country, pcg_version, label, active) VALUE
-- Description of chart of account MA PCG
INSERT INTO llx_accounting_system (fk_country, pcg_version, label, active) VALUES ( 12, 'PCG', 'The Moroccan chart of accounts', 1);
--DELETE FROM llx_accounting_system WHERE pcg_version = 'SYSCOHADA';
-- Description of chart of account BJ SYSCOHADA
INSERT INTO llx_accounting_system (fk_country, pcg_version, label, active) VALUES ( 49,'SYSCOHADA-BJ', 'Plan comptable Ouest-Africain', 1);
@ -124,3 +127,5 @@ INSERT INTO llx_accounting_system (fk_country, pcg_version, label, active) VALUE
-- Description of chart of account RO RO-BASE
INSERT INTO llx_accounting_system (fk_country, pcg_version, label, active) VALUES ( 188, 'RO-BASE', 'Plan de conturi romanesc', 1);
-- Description of chart of account DZ NSCF
INSERT INTO llx_accounting_system (fk_country, pcg_version, label, active) VALUES ( 13, 'NSCF', 'Nouveau système comptable financier', 1);

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,283 +1,261 @@
-- Copyright (C) 2017 Alexandre Spangaro <aspangaro@zendsi.com>
-- Copyright (C) 2018 Regis Houssin <regis.houssin@capnetworks.com>
--
-- 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/>.
--
--
--
-- Ne pas placer de commentaire en fin de ligne, ce fichier est parsé lors
-- de l'install et tous les sigles '--' sont supprimés.
--
--
-- Descriptif plan comptable Suisse
-- ID 13000 - 13299
--
-- ADD 600000 to rowid # Do no remove this comment --
INSERT INTO llx_const (name, value, type, note, visible, entity) values ('ACCOUNTING_MANAGE_ZERO','1','chaine','Manage the 0 for the accountancy account',1,0);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1', NULL, 'Actifs', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '10', 1, 'Actifs circulants', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '100', 10, 'Liquidités', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1000', 100, 'Caisse', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1020', 100, 'Banque (Avoir)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '106', 10, 'Avoirs à courts terme côtés en bourse', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1060', 106, 'Titres', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1069', 106, 'Ajustement de la valeur des titres', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '110', 10, 'Créances résultant de livraisons et prestations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1100', 110, 'Créances provenant de livraisons et de prestations (Débiteurs)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1109', 110, 'Ducroire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1110', 110, 'Créances résultant de livr. et prest. envers les sociétés du groupe', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '114', 10, 'Autres créances à court terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1140', 114, 'Avances et prêts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1149', 114, 'Ajustement de la valeur des avances et des prêts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1170', 110, 'Impôt préalable: TVA s/matériel, marchandises, prestations et énergie', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1171', 110, 'Impôt préalable: TVA s/investissements et autres charges d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1176', 110, 'Impôt anticipé', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1180', 110, 'Créance envers les assurances sociales et institutions de prévoyance', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1189', 110, 'Impôt à la source', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1190', 110, 'Autres créances à court terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1199', 110, 'Ajustement de la valeur des créances à court terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '120', 10, 'Stocks et prestations non facturées', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1200', 120, 'Marchandises commerciales', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1210', 120, 'Matières premières', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1220', 120, 'Matières auxiliaires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1230', 120, 'Matières consommables', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1250', 120, 'Marchandises en consignation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1260', 120, 'Stocks de produits fnis', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1280', 120, 'Travaux en cours', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '130', 10, 'Compte de régularisation de l\'actif', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1300', 130, 'Charges payées d\'avance', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1301', 130, 'Produits à recevoir', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '14', 1, 'Actifs immobilisés', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '140', 14, 'Immobilisations financières', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1400', 140, 'Titres à long terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1409', 140, 'Ajustement de la valeur des titres', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1440', 140, 'Prêts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1441', 140, 'Hypothèques', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1449', 140, 'Ajustement de la valeur des créances à long terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '148', 14, 'Participations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1480', 148, 'Participations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1489', 148, 'Ajustement de la valeur des participations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '150', 1, 'Immobilisations corporelles meublés', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1500', 150, 'Machines et appareils', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1509', 150, 'Ajustement de la valeur des machines et appareils', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1510', 150, 'Mobilier et installations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1519', 150, 'Ajustement de la valeur du mobilier et des installations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1520', 150, 'Machines de bureau, informatique, système de communication', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1529', 150, 'Ajustement de la valeur des machines de bureau, inf. et syst. comm.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1530', 150, 'Véhicules', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1539', 150, 'Ajustement de la valeur des véhicules', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1540', 150, 'Outillages et appareils', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1549', 150, 'Ajustement de la valeur des outillages et appareils', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '160', 1, 'Immobilisations corporelles Immeubles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1600', 160, 'Immeubles d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1609', 160, 'Ajustements de la valeur des immeubles d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '170', 1, 'Immobilisations incorporelles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1700', 170, 'Brevets, know-how, licences, droits, dév.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1709', 170, 'Ajustement de la valeur des brevets, know-how, licences, droits, dév.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1770', 170, 'Goodwill', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1779', 170, 'Ajustement de la valeur du goodwill', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '180', 1, 'Capital non versé : capital social, capital de fondation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '1850', 180, 'Capital actions, capital social, droits de participations ou capital de fondation non versés', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2', NULL, 'Passif', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '20', 2, 'Dettes à court terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '200', 20, 'Dettes à court terme résultant d\'achats et de prestations de services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2000', 200, 'Dettes résultant d\'achats et des prestations de services (créanciers)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2030', 200, 'Acomptes de clients', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2050', 200, 'Dettes résultant d\'achats et de prestations de services envers des sociétés du groupe', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '210', 20, 'Dettes à court terme rémunérés', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2100', 210, 'Dettes bancaires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2120', 210, 'Engagements de financement par leasing', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2140', 210, 'Autres dettes à court terme rémunérées', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2151', 210, 'Salaires à payer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2152', 210, 'Charges sociales à payer (AVS/AC/ALFA)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21521', 2152, 'Créancier AVS/AI/APG/AC', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21522', 2152, 'Créancier Allocations Familiales', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2153', 210, 'Assurances sociales à payer (LAA, IJM, FT, LPP)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21531', 2153, 'Créancier Assurance Accidents', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21532', 2153, 'Créancier Assurance Accidents complémentaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21533', 2153, 'Créancier Prévoyance Professionnelle', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21534', 2153, 'Créancier Prévoyance Professionnelle complémentaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21535', 2153, 'Créancier Assurance Indemnités Journalières Maladie', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21536', 2153, 'Créancier Assurance Indemnités Journalières Maladie complémentaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21539', 2153, 'Créancier autres caisses et assurances', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2154', 210, 'Impôt source', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2155', 210, 'Autres charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21551', 2155, 'Taxe réfugiés', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21552', 2155, 'Office des Poursuites', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21553', 2155, 'Retraite anticipée', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21554', 2155, 'Caisse professionnelle', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21559', 2155, 'Autres retenues employé à payer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2158', 210, 'Provisions 13ème et vacances à payer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2160', 210, 'Indemnités d\'assurances', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21601', 2160, 'Indemnités d\'assurance accidents', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21602', 2160, 'Indemnités d\'assurance maladie', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21603', 2160, 'Indemnités d\'assurance maternité', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21604', 2160, 'Indemnités d\'assurance maternité complémentaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21605', 2160, 'Indemnités d\'assurance APG militaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21606', 2160, 'Indemnités d\'assurance militaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21607', 2160, 'Indemnités d\'assurance chômage', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21608', 2160, 'Indemnités d\'assurance AI', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '21609', 2160, 'Autres', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '220', 20, 'Autres dettes à court terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2200', 220, 'TVA due', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2201', 220, 'Décompte TVA', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2206', 220, 'Impôt anticipé dû', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2208', 220, 'Impôts directs', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2210', 220, 'Autres dettes à court terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2261', 220, 'Dividendes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2270', 220, 'Assurances sociales et institutions de prévoyance', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2279', 220, 'Impôt à la source', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '230', 20, 'Passifs de régularisation et provision à court terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2300', 230, 'Charges à payer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2301', 230, 'Produits constatés d\'avance', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2330', 230, 'Provisions à court terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '24', 2, 'Dettes à long terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '240', 24, 'Dettes à long terme rémunérées', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2400', 240, 'Dettes bancaires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2420', 240, 'Engagements de financement par leasing', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2430', 240, 'Emprunts obligataires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2450', 240, 'Emprunts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2451', 240, 'Hypothèques', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '250', 24, 'Autres dettes à long terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2500', 250, 'Autres dettes à long terme', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '260', 24, 'Provisions à long terme et provisions légales', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2600', 260, 'Provisions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '28', 2, 'Fonds propres (personnes morales)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '280', 28, 'Capital social ou capital de fondation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2800', 280, 'Capital-actions, capital social, capital de fondation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '290', 2, 'Réserves / bénéfices et pertes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2900', 290, 'Réserves légales issues du capital', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2930', 290, 'Réserves sur participations propres au capital', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2940', 290, 'Réserves d\'évaluation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2950', 290, 'Réserves légales issues du bénéfice', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2960', 290, 'Réserves libres', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2970', 290, 'Bénéfice / perte reporté', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2979', 290, 'Bénéfice / perte de l\'exercice', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '2980', 290, 'Propres actions, parts sociales, droits de participations (poste négatif)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3', NULL, 'Chiffre d\'affaires résultant des ventes et des prestations de services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3000', 3, 'Ventes de produits fabriqués', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3200', 3, 'Ventes de marchandises', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3400', 3, 'Ventes de prestations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3600', 3, 'Autres ventes et prestations de services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3700', 3, 'Prestations propres', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3710', 3, 'Consommations propres', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3800', 3, 'Déductions sur ventes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3805', 3, 'Pertes sur clients, variations du ducroire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3900', 3, 'Variation des stocks de produits semis-finis', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3901', 3, 'Variation des stocks de produits finis', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '3904', 3, 'Variation de la valeur des prestations non facturées', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '4', NULL, 'Charges de matériel, de marchandises et de prestations de tiers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '4000', 4, 'Charges de matériel de l\'atelier', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '4200', 4, 'Achats de marchandises destinées à la revente', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '4400', 4, 'Prestations / travaux de tiers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '4500', 4, 'Charges d\'énergie pour l\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '4900', 4, 'Déductions sur les charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5', NULL, 'Charges de personnel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5000', 5, 'Salaires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5200', 5, 'Charges de personnel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5201', 5, 'Salaires variables, commissions et primes régulières', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5202', 5, 'Primes occasionnelles et participations au bénéfice', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5203', 5, 'Divers soumis', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5204', 5, 'Divers non soumis', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5210', 5, 'Honoraires et indemnités CA', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5270', 5, 'AVS, AI, APG, assurance-chômage', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5271', 5, 'Caisse d\'allocations familiales', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '52721', 5271, 'Prévoyance professionnelle', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '52722', 5271, 'Prévoyance professionnelle complémentaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '52731', 5271, 'Assurance-accidents', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '52732', 5271, 'Assurance-accidents complémentaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '52741', 5271, 'Assurance IJM', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '52742', 5271, 'Assurance IJM complémentaire', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5275', 5, 'Autres assurances', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5276', 5, 'Impôts à la source payé par employeur', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5278', 5, 'Caisse professionnelle', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5279', 5, 'Arrondis sur charges sociales', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5280', 5, 'Autres charges de personnel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5281', 5, 'Frais de voyages/transport', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5282', 5, 'Frais de repas/hébergement', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5283', 5, 'Frais forfaitaires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5284', 5, 'Frais de représentation, téléphones, divers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5288', 5, 'Frais de formation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5289', 5, 'Autres frais de personnel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5290', 5, 'Prestations de travail de tiers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5700', 5, 'Charges sociales', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5800', 5, 'Autres charges du personnel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '5900', 5, 'Charges de personnels temporaires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6', NULL, 'Autres charges d\'exploitation, amortissements et ajustement de valeur, résultat financier', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6000', 6, 'Charges de locaux', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6100', 6, 'Entretien, réparations et remplacement des inst. servant à l\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6105', 6, 'Leasing immobilisations corporelles meubles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6200', 6, 'Charges de véhicules et de transport', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6260', 6, 'Leasing et location de véhicule', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6300', 6, 'Assurances-choses, droits, taxes, autorisations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6400', 6, 'Charges d\'énergie et évacuation des déchets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6500', 6, 'Charges d\'administration', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6510', 6, 'Téléphone', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6511', 6, 'Internet', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6512', 6, 'Frais de port', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6560', 6, 'Informatique', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6570', 6, 'Charges et leasing d\'informatique', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6571', 6, 'Entretien/Hotline Hardware', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6573', 6, 'Disquettes, CD-Rom, etc. Fourniture d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6600', 6, 'Publicité', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6610', 6, 'Imprimés publicitaires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6640', 6, 'Frais de voyage et conseils à la clientèle', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6641', 6, 'Frais de représentation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6700', 6, 'Autres charges d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6800', 6, 'Amortissement et ajustement de valeur des postes sur immobilisations corporelles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6801', 6, 'Intérêts pour emprunts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6840', 6, 'Frais de banque et des chèques postaux', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6850', 6, 'Produits financiers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6900', 6, 'Charges financières', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6920', 6, 'Amortissement s/immobilisé. corporelles meubles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6930', 6, 'Amortissement s/immobilisé. corporelles immeubles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6940', 6, 'Amortissement s/immobilisé. incorporelles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '6950', 6, 'Produits financiers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '7', NULL, 'Résultat des activités annexes d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '7000', 7, 'Produits accessoires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '7010', 7, 'Charges accessoires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '7400', 7, 'Produits sur placements financiers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '7410', 7, 'Charges sur placements financiers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '7500', 7, 'Produits des immeubles d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '7510', 7, 'Charges des immeubles d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '8', NULL, 'Charges hors exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '8000', 8, 'Charges hors exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '8100', 8, 'Produits hors exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '8500', 8, 'Charges extraordinaires, exceptionnelles ou hors période', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '8510', 8, 'Produits extraordinaires, exceptionnels ou hors période', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '8900', 8, 'Impôts directs', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9', NULL, 'Produits de vente et de services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9001', 9, 'Charges de vente et de services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9002', 9, 'Résultat brut 1', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9006', 9, 'Charges de personnel de production', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9007', 9, 'Résultat brut 2', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9008', 9, 'Autres charges de personnel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9009', 9, 'Résultat brut 3', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9010', 9, 'Autres charges d\'exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9011', 9, 'Résultat d\'exploitation 1', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9012', 9, 'Résultat financier', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9013', 9, 'Résultat d\'exploitation 2', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9014', 9, 'Amortissements', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9015', 9, 'Résultat d\'exploitation 3', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9016', 9, 'Résultat activités annexes exploitation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9017', 9, 'Résultat d\'exploitation 4', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9018', 9, 'Résultats extraordinaires', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9019', 9, 'Résultat d\'entreprise avant impôts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9020', 9, 'Charges d\'impôts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9090', 9, 'Résultat d\'entreprise', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9100', 9, 'Bilan d\'ouverture', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9101', 9, 'Bilan de clôture', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PCG_SUISSE', 'XXXXXX', 'XXXXXX', '9200', 9, 'Bénéfice / perte de l\'exercice', 1, __ENTITY__);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13000,'PCG_SUISSE','XXXXXX','XXXXXX','1',0,'Actifs','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13001,'PCG_SUISSE','XXXXXX','XXXXXX','10',13000,'Actifs circulants','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13002,'PCG_SUISSE','XXXXXX','XXXXXX','100',13001,'Liquidités','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13003,'PCG_SUISSE','XXXXXX','XXXXXX','1000',13002,'Caisse','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13004,'PCG_SUISSE','XXXXXX','XXXXXX','1020',13002,'Banque (Avoir)','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13005,'PCG_SUISSE','XXXXXX','XXXXXX','106',13001,'Avoirs à courts terme côtés en bourse','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13006,'PCG_SUISSE','XXXXXX','XXXXXX','1060',13005,'Titres','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13007,'PCG_SUISSE','XXXXXX','XXXXXX','1069',13005,'Ajustement de la valeur des titres','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13008,'PCG_SUISSE','XXXXXX','XXXXXX','110',13001,'Créances résultant de livraisons et prestations','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13009,'PCG_SUISSE','XXXXXX','XXXXXX','1100',13008,'Créances provenant de livraisons et de prestations (Débiteurs)','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13010,'PCG_SUISSE','XXXXXX','XXXXXX','1109',13008,'Ducroire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13011,'PCG_SUISSE','XXXXXX','XXXXXX','1110',13008,'Créances résultant de livr. et prest. envers les sociétés du groupe','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13012,'PCG_SUISSE','XXXXXX','XXXXXX','114',13001,'Autres créances à court terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13013,'PCG_SUISSE','XXXXXX','XXXXXX','1140',13012,'Avances et prêts','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13014,'PCG_SUISSE','XXXXXX','XXXXXX','1149',13012,'Ajustement de la valeur des avances et des prêts','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13015,'PCG_SUISSE','XXXXXX','XXXXXX','1170',13008,'Impôt préalable: TVA s/matériel, marchandises, prestations et énergie','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13016,'PCG_SUISSE','XXXXXX','XXXXXX','1171',13008,'Impôt préalable: TVA s/investissements et autres charges d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13017,'PCG_SUISSE','XXXXXX','XXXXXX','1176',13008,'Impôt anticipé','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13018,'PCG_SUISSE','XXXXXX','XXXXXX','1180',13008,'Créance envers les assurances sociales et institutions de prévoyance','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13019,'PCG_SUISSE','XXXXXX','XXXXXX','1189',13008,'Impôt à la source','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13020,'PCG_SUISSE','XXXXXX','XXXXXX','1190',13008,'Autres créances à court terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13021,'PCG_SUISSE','XXXXXX','XXXXXX','1199',13008,'Ajustement de la valeur des créances à court terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13022,'PCG_SUISSE','XXXXXX','XXXXXX','120',13001,'Stocks et prestations non facturées','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13023,'PCG_SUISSE','XXXXXX','XXXXXX','1200',13022,'Marchandises commerciales','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13024,'PCG_SUISSE','XXXXXX','XXXXXX','1210',13022,'Matières premières','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13025,'PCG_SUISSE','XXXXXX','XXXXXX','1220',13022,'Matières auxiliaires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13026,'PCG_SUISSE','XXXXXX','XXXXXX','1230',13022,'Matières consommables','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13027,'PCG_SUISSE','XXXXXX','XXXXXX','1250',13022,'Marchandises en consignation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13028,'PCG_SUISSE','XXXXXX','XXXXXX','1260',13022,'Stocks de produits fnis','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13029,'PCG_SUISSE','XXXXXX','XXXXXX','1280',13022,'Travaux en cours','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13030,'PCG_SUISSE','XXXXXX','XXXXXX','130',13001,'Compte de régularisation de l''actif','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13031,'PCG_SUISSE','XXXXXX','XXXXXX','1300',13030,'Charges payées d''avance','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13032,'PCG_SUISSE','XXXXXX','XXXXXX','1301',13030,'Produits à recevoir','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13033,'PCG_SUISSE','XXXXXX','XXXXXX','14',13000,'Actifs immobilisés','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13034,'PCG_SUISSE','XXXXXX','XXXXXX','140',13033,'Immobilisations financières','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13035,'PCG_SUISSE','XXXXXX','XXXXXX','1400',13034,'Titres à long terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13036,'PCG_SUISSE','XXXXXX','XXXXXX','1409',13034,'Ajustement de la valeur des titres','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13037,'PCG_SUISSE','XXXXXX','XXXXXX','1440',13034,'Prêts','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13038,'PCG_SUISSE','XXXXXX','XXXXXX','1441',13034,'Hypothèques','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13039,'PCG_SUISSE','XXXXXX','XXXXXX','1449',13034,'Ajustement de la valeur des créances à long terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13040,'PCG_SUISSE','XXXXXX','XXXXXX','148',13033,'Participations','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13041,'PCG_SUISSE','XXXXXX','XXXXXX','1480',13040,'Participations','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13042,'PCG_SUISSE','XXXXXX','XXXXXX','1489',13040,'Ajustement de la valeur des participations','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13043,'PCG_SUISSE','XXXXXX','XXXXXX','150',13000,'Immobilisations corporelles meublés','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13044,'PCG_SUISSE','XXXXXX','XXXXXX','1500',13043,'Machines et appareils','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13045,'PCG_SUISSE','XXXXXX','XXXXXX','1509',13043,'Ajustement de la valeur des machines et appareils','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13046,'PCG_SUISSE','XXXXXX','XXXXXX','1510',13043,'Mobilier et installations','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13047,'PCG_SUISSE','XXXXXX','XXXXXX','1519',13043,'Ajustement de la valeur du mobilier et des installations','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13048,'PCG_SUISSE','XXXXXX','XXXXXX','1520',13043,'Machines de bureau, informatique, système de communication','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13049,'PCG_SUISSE','XXXXXX','XXXXXX','1529',13043,'Ajustement de la valeur des machines de bureau, inf. et syst. comm.','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13050,'PCG_SUISSE','XXXXXX','XXXXXX','1530',13043,'Véhicules','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13051,'PCG_SUISSE','XXXXXX','XXXXXX','1539',13043,'Ajustement de la valeur des véhicules','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13052,'PCG_SUISSE','XXXXXX','XXXXXX','1540',13043,'Outillages et appareils','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13053,'PCG_SUISSE','XXXXXX','XXXXXX','1549',13043,'Ajustement de la valeur des outillages et appareils','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13054,'PCG_SUISSE','XXXXXX','XXXXXX','160',13000,'Immobilisations corporelles Immeubles','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13055,'PCG_SUISSE','XXXXXX','XXXXXX','1600',13054,'Immeubles d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13056,'PCG_SUISSE','XXXXXX','XXXXXX','1609',13054,'Ajustements de la valeur des immeubles d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13057,'PCG_SUISSE','XXXXXX','XXXXXX','170',13000,'Immobilisations incorporelles','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13058,'PCG_SUISSE','XXXXXX','XXXXXX','1700',13057,'Brevets, know-how, licences, droits, dév.','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13059,'PCG_SUISSE','XXXXXX','XXXXXX','1709',13057,'Ajustement de la valeur des brevets, know-how, licences, droits, dév.','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13060,'PCG_SUISSE','XXXXXX','XXXXXX','1770',13057,'Goodwill','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13061,'PCG_SUISSE','XXXXXX','XXXXXX','1779',13057,'Ajustement de la valeur du goodwill','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13062,'PCG_SUISSE','XXXXXX','XXXXXX','180',13000,'Capital non versé : capital social, capital de fondation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13063,'PCG_SUISSE','XXXXXX','XXXXXX','1850',13062,'Capital actions, capital social, droits de participations ou capital de fondation non versés','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13064,'PCG_SUISSE','XXXXXX','XXXXXX','2',0,'Passif','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13065,'PCG_SUISSE','XXXXXX','XXXXXX','20',13064,'Dettes à court terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13066,'PCG_SUISSE','XXXXXX','XXXXXX','200',13065,'Dettes à court terme résultant d''achats et de prestations de services','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13067,'PCG_SUISSE','XXXXXX','XXXXXX','2000',13066,'Dettes résultant d''achats et des prestations de services (créanciers)','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13068,'PCG_SUISSE','XXXXXX','XXXXXX','2030',13066,'Acomptes de clients','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13069,'PCG_SUISSE','XXXXXX','XXXXXX','2050',13066,'Dettes résultant d''achats et de prestations de services envers des sociétés du groupe','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13070,'PCG_SUISSE','XXXXXX','XXXXXX','210',13065,'Dettes à court terme rémunérés','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13071,'PCG_SUISSE','XXXXXX','XXXXXX','2100',13070,'Dettes bancaires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13072,'PCG_SUISSE','XXXXXX','XXXXXX','2120',13070,'Engagements de financement par leasing','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13073,'PCG_SUISSE','XXXXXX','XXXXXX','2140',13070,'Autres dettes à court terme rémunérées','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13074,'PCG_SUISSE','XXXXXX','XXXXXX','2151',13070,'Salaires à payer','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13075,'PCG_SUISSE','XXXXXX','XXXXXX','2152',13070,'Charges sociales à payer (AVS/AC/ALFA)','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13076,'PCG_SUISSE','XXXXXX','XXXXXX','21521',13075,'Créancier AVS/AI/APG/AC','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13077,'PCG_SUISSE','XXXXXX','XXXXXX','21522',13075,'Créancier Allocations Familiales','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13078,'PCG_SUISSE','XXXXXX','XXXXXX','2153',13070,'Assurances sociales à payer (LAA, IJM, FT, LPP)','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13079,'PCG_SUISSE','XXXXXX','XXXXXX','21531',13078,'Créancier Assurance Accidents','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13080,'PCG_SUISSE','XXXXXX','XXXXXX','21532',13078,'Créancier Assurance Accidents complémentaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13081,'PCG_SUISSE','XXXXXX','XXXXXX','21533',13078,'Créancier Prévoyance Professionnelle','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13082,'PCG_SUISSE','XXXXXX','XXXXXX','21534',13078,'Créancier Prévoyance Professionnelle complémentaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13083,'PCG_SUISSE','XXXXXX','XXXXXX','21535',13078,'Créancier Assurance Indemnités Journalières Maladie','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13084,'PCG_SUISSE','XXXXXX','XXXXXX','21536',13078,'Créancier Assurance Indemnités Journalières Maladie complémentaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13085,'PCG_SUISSE','XXXXXX','XXXXXX','21539',13078,'Créancier autres caisses et assurances','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13086,'PCG_SUISSE','XXXXXX','XXXXXX','2154',13070,'Impôt source','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13087,'PCG_SUISSE','XXXXXX','XXXXXX','2155',13070,'Autres charges','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13088,'PCG_SUISSE','XXXXXX','XXXXXX','21551',13087,'Taxe réfugiés','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13089,'PCG_SUISSE','XXXXXX','XXXXXX','21552',13087,'Office des Poursuites','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13090,'PCG_SUISSE','XXXXXX','XXXXXX','21553',13087,'Retraite anticipée','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13091,'PCG_SUISSE','XXXXXX','XXXXXX','21554',13087,'Caisse professionnelle','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13092,'PCG_SUISSE','XXXXXX','XXXXXX','21559',13087,'Autres retenues employé à payer','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13093,'PCG_SUISSE','XXXXXX','XXXXXX','2158',13070,'Provisions 13ème et vacances à payer','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13094,'PCG_SUISSE','XXXXXX','XXXXXX','2160',13070,'Indemnités d''assurances','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13095,'PCG_SUISSE','XXXXXX','XXXXXX','21601',13094,'Indemnités d''assurance accidents','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13096,'PCG_SUISSE','XXXXXX','XXXXXX','21602',13094,'Indemnités d''assurance maladie','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13097,'PCG_SUISSE','XXXXXX','XXXXXX','21603',13094,'Indemnités d''assurance maternité','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13098,'PCG_SUISSE','XXXXXX','XXXXXX','21604',13094,'Indemnités d''assurance maternité complémentaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13099,'PCG_SUISSE','XXXXXX','XXXXXX','21605',13094,'Indemnités d''assurance APG militaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13100,'PCG_SUISSE','XXXXXX','XXXXXX','21606',13094,'Indemnités d''assurance militaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13101,'PCG_SUISSE','XXXXXX','XXXXXX','21607',13094,'Indemnités d''assurance chômage','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13102,'PCG_SUISSE','XXXXXX','XXXXXX','21608',13094,'Indemnités d''assurance AI','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13103,'PCG_SUISSE','XXXXXX','XXXXXX','21609',13094,'Autres','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13104,'PCG_SUISSE','XXXXXX','XXXXXX','220',13065,'Autres dettes à court terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13105,'PCG_SUISSE','XXXXXX','XXXXXX','2200',13104,'TVA due','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13106,'PCG_SUISSE','XXXXXX','XXXXXX','2201',13104,'Décompte TVA','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13107,'PCG_SUISSE','XXXXXX','XXXXXX','2206',13104,'Impôt anticipé dû','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13108,'PCG_SUISSE','XXXXXX','XXXXXX','2208',13104,'Impôts directs','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13109,'PCG_SUISSE','XXXXXX','XXXXXX','2210',13104,'Autres dettes à court terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13110,'PCG_SUISSE','XXXXXX','XXXXXX','2261',13104,'Dividendes','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13111,'PCG_SUISSE','XXXXXX','XXXXXX','2270',13104,'Assurances sociales et institutions de prévoyance','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13112,'PCG_SUISSE','XXXXXX','XXXXXX','2279',13104,'Impôt à la source','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13113,'PCG_SUISSE','XXXXXX','XXXXXX','230',13065,'Passifs de régularisation et provision à court terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13114,'PCG_SUISSE','XXXXXX','XXXXXX','2300',13113,'Charges à payer','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13115,'PCG_SUISSE','XXXXXX','XXXXXX','2301',13113,'Produits constatés d''avance','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13116,'PCG_SUISSE','XXXXXX','XXXXXX','2330',13113,'Provisions à court terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13117,'PCG_SUISSE','XXXXXX','XXXXXX','24',13064,'Dettes à long terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13118,'PCG_SUISSE','XXXXXX','XXXXXX','240',13117,'Dettes à long terme rémunérées','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13119,'PCG_SUISSE','XXXXXX','XXXXXX','2400',13118,'Dettes bancaires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13120,'PCG_SUISSE','XXXXXX','XXXXXX','2420',13118,'Engagements de financement par leasing','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13121,'PCG_SUISSE','XXXXXX','XXXXXX','2430',13118,'Emprunts obligataires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13122,'PCG_SUISSE','XXXXXX','XXXXXX','2450',13118,'Emprunts','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13123,'PCG_SUISSE','XXXXXX','XXXXXX','2451',13118,'Hypothèques','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13124,'PCG_SUISSE','XXXXXX','XXXXXX','250',13117,'Autres dettes à long terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13125,'PCG_SUISSE','XXXXXX','XXXXXX','2500',13124,'Autres dettes à long terme','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13126,'PCG_SUISSE','XXXXXX','XXXXXX','260',13117,'Provisions à long terme et provisions légales','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13127,'PCG_SUISSE','XXXXXX','XXXXXX','2600',13126,'Provisions','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13128,'PCG_SUISSE','XXXXXX','XXXXXX','28',13064,'Fonds propres (personnes morales)','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13129,'PCG_SUISSE','XXXXXX','XXXXXX','280',13128,'Capital social ou capital de fondation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13130,'PCG_SUISSE','XXXXXX','XXXXXX','2800',13129,'Capital-actions, capital social, capital de fondation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13131,'PCG_SUISSE','XXXXXX','XXXXXX','290',13064,'Réserves / bénéfices et pertes','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13132,'PCG_SUISSE','XXXXXX','XXXXXX','2900',13131,'Réserves légales issues du capital','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13133,'PCG_SUISSE','XXXXXX','XXXXXX','2930',13131,'Réserves sur participations propres au capital','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13134,'PCG_SUISSE','XXXXXX','XXXXXX','2940',13131,'Réserves d''évaluation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13135,'PCG_SUISSE','XXXXXX','XXXXXX','2950',13131,'Réserves légales issues du bénéfice','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13136,'PCG_SUISSE','XXXXXX','XXXXXX','2960',13131,'Réserves libres','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13137,'PCG_SUISSE','XXXXXX','XXXXXX','2970',13131,'Bénéfice / perte reporté','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13138,'PCG_SUISSE','XXXXXX','XXXXXX','2979',13131,'Bénéfice / perte de l''exercice','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13139,'PCG_SUISSE','XXXXXX','XXXXXX','2980',13131,'Propres actions, parts sociales, droits de participations (poste négatif)','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13140,'PCG_SUISSE','XXXXXX','XXXXXX','3',0,'Chiffre d''affaires résultant des ventes et des prestations de services','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13141,'PCG_SUISSE','XXXXXX','XXXXXX','3000',13140,'Ventes de produits fabriqués','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13142,'PCG_SUISSE','XXXXXX','XXXXXX','3200',13140,'Ventes de marchandises','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13143,'PCG_SUISSE','XXXXXX','XXXXXX','3400',13140,'Ventes de prestations','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13144,'PCG_SUISSE','XXXXXX','XXXXXX','3600',13140,'Autres ventes et prestations de services','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13145,'PCG_SUISSE','XXXXXX','XXXXXX','3700',13140,'Prestations propres','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13146,'PCG_SUISSE','XXXXXX','XXXXXX','3710',13140,'Consommations propres','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13147,'PCG_SUISSE','XXXXXX','XXXXXX','3800',13140,'Déductions sur ventes','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13148,'PCG_SUISSE','XXXXXX','XXXXXX','3805',13140,'Pertes sur clients, variations du ducroire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13149,'PCG_SUISSE','XXXXXX','XXXXXX','3900',13140,'Variation des stocks de produits semis-finis','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13150,'PCG_SUISSE','XXXXXX','XXXXXX','3901',13140,'Variation des stocks de produits finis','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13151,'PCG_SUISSE','XXXXXX','XXXXXX','3904',13140,'Variation de la valeur des prestations non facturées','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13152,'PCG_SUISSE','XXXXXX','XXXXXX','4',0,'Charges de matériel, de marchandises et de prestations de tiers','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13153,'PCG_SUISSE','XXXXXX','XXXXXX','4000',13152,'Charges de matériel de l''atelier','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13154,'PCG_SUISSE','XXXXXX','XXXXXX','4200',13152,'Achats de marchandises destinées à la revente','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13155,'PCG_SUISSE','XXXXXX','XXXXXX','4400',13152,'Prestations / travaux de tiers','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13156,'PCG_SUISSE','XXXXXX','XXXXXX','4500',13152,'Charges d''énergie pour l''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13157,'PCG_SUISSE','XXXXXX','XXXXXX','4900',13152,'Déductions sur les charges','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13158,'PCG_SUISSE','XXXXXX','XXXXXX','5',0,'Charges de personnel','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13159,'PCG_SUISSE','XXXXXX','XXXXXX','5000',13158,'Salaires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13160,'PCG_SUISSE','XXXXXX','XXXXXX','5200',13158,'Charges de personnel','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13161,'PCG_SUISSE','XXXXXX','XXXXXX','5201',13158,'Salaires variables, commissions et primes régulières','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13162,'PCG_SUISSE','XXXXXX','XXXXXX','5202',13158,'Primes occasionnelles et participations au bénéfice','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13163,'PCG_SUISSE','XXXXXX','XXXXXX','5203',13158,'Divers soumis','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13164,'PCG_SUISSE','XXXXXX','XXXXXX','5204',13158,'Divers non soumis','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13165,'PCG_SUISSE','XXXXXX','XXXXXX','5210',13158,'Honoraires et indemnités CA','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13166,'PCG_SUISSE','XXXXXX','XXXXXX','5270',13158,'AVS, AI, APG, assurance-chômage','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13167,'PCG_SUISSE','XXXXXX','XXXXXX','5271',13158,'Caisse d''allocations familiales','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13168,'PCG_SUISSE','XXXXXX','XXXXXX','52721',13167,'Prévoyance professionnelle','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13169,'PCG_SUISSE','XXXXXX','XXXXXX','52722',13167,'Prévoyance professionnelle complémentaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13170,'PCG_SUISSE','XXXXXX','XXXXXX','52731',13167,'Assurance-accidents','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13171,'PCG_SUISSE','XXXXXX','XXXXXX','52732',13167,'Assurance-accidents complémentaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13172,'PCG_SUISSE','XXXXXX','XXXXXX','52741',13167,'Assurance IJM','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13173,'PCG_SUISSE','XXXXXX','XXXXXX','52742',13167,'Assurance IJM complémentaire','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13174,'PCG_SUISSE','XXXXXX','XXXXXX','5275',13158,'Autres assurances','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13175,'PCG_SUISSE','XXXXXX','XXXXXX','5276',13158,'Impôts à la source payé par employeur','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13176,'PCG_SUISSE','XXXXXX','XXXXXX','5278',13158,'Caisse professionnelle','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13177,'PCG_SUISSE','XXXXXX','XXXXXX','5279',13158,'Arrondis sur charges sociales','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13178,'PCG_SUISSE','XXXXXX','XXXXXX','5280',13158,'Autres charges de personnel','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13179,'PCG_SUISSE','XXXXXX','XXXXXX','5281',13158,'Frais de voyages/transport','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13180,'PCG_SUISSE','XXXXXX','XXXXXX','5282',13158,'Frais de repas/hébergement','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13181,'PCG_SUISSE','XXXXXX','XXXXXX','5283',13158,'Frais forfaitaires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13182,'PCG_SUISSE','XXXXXX','XXXXXX','5284',13158,'Frais de représentation, téléphones, divers','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13183,'PCG_SUISSE','XXXXXX','XXXXXX','5288',13158,'Frais de formation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13184,'PCG_SUISSE','XXXXXX','XXXXXX','5289',13158,'Autres frais de personnel','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13185,'PCG_SUISSE','XXXXXX','XXXXXX','5290',13158,'Prestations de travail de tiers','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13186,'PCG_SUISSE','XXXXXX','XXXXXX','5700',13158,'Charges sociales','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13187,'PCG_SUISSE','XXXXXX','XXXXXX','5800',13158,'Autres charges du personnel','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13188,'PCG_SUISSE','XXXXXX','XXXXXX','5900',13158,'Charges de personnels temporaires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13189,'PCG_SUISSE','XXXXXX','XXXXXX','6',0,'Autres charges d''exploitation, amortissements et ajustement de valeur, résultat financier','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13190,'PCG_SUISSE','XXXXXX','XXXXXX','6000',13189,'Charges de locaux','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13191,'PCG_SUISSE','XXXXXX','XXXXXX','6100',13189,'Entretien, réparations et remplacement des inst. servant à l''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13192,'PCG_SUISSE','XXXXXX','XXXXXX','6105',13189,'Leasing immobilisations corporelles meubles','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13193,'PCG_SUISSE','XXXXXX','XXXXXX','6200',13189,'Charges de véhicules et de transport','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13194,'PCG_SUISSE','XXXXXX','XXXXXX','6260',13189,'Leasing et location de véhicule','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13195,'PCG_SUISSE','XXXXXX','XXXXXX','6300',13189,'Assurances-choses, droits, taxes, autorisations','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13196,'PCG_SUISSE','XXXXXX','XXXXXX','6400',13189,'Charges d''énergie et évacuation des déchets','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13197,'PCG_SUISSE','XXXXXX','XXXXXX','6500',13189,'Charges d''administration','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13198,'PCG_SUISSE','XXXXXX','XXXXXX','6510',13189,'Téléphone','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13199,'PCG_SUISSE','XXXXXX','XXXXXX','6511',13189,'Internet','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13200,'PCG_SUISSE','XXXXXX','XXXXXX','6512',13189,'Frais de port','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13201,'PCG_SUISSE','XXXXXX','XXXXXX','6560',13189,'Informatique','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13202,'PCG_SUISSE','XXXXXX','XXXXXX','6570',13189,'Charges et leasing d''informatique','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13203,'PCG_SUISSE','XXXXXX','XXXXXX','6571',13189,'Entretien/Hotline Hardware','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13204,'PCG_SUISSE','XXXXXX','XXXXXX','6573',13189,'Disquettes, CD-Rom, etc. Fourniture d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13205,'PCG_SUISSE','XXXXXX','XXXXXX','6600',13189,'Publicité','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13206,'PCG_SUISSE','XXXXXX','XXXXXX','6610',13189,'Imprimés publicitaires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13207,'PCG_SUISSE','XXXXXX','XXXXXX','6640',13189,'Frais de voyage et conseils à la clientèle','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13208,'PCG_SUISSE','XXXXXX','XXXXXX','6641',13189,'Frais de représentation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13209,'PCG_SUISSE','XXXXXX','XXXXXX','6700',13189,'Autres charges d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13210,'PCG_SUISSE','XXXXXX','XXXXXX','6800',13189,'Amortissement et ajustement de valeur des postes sur immobilisations corporelles','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13211,'PCG_SUISSE','XXXXXX','XXXXXX','6801',13189,'Intérêts pour emprunts','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13212,'PCG_SUISSE','XXXXXX','XXXXXX','6840',13189,'Frais de banque et des chèques postaux','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13213,'PCG_SUISSE','XXXXXX','XXXXXX','6850',13189,'Produits financiers','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13214,'PCG_SUISSE','XXXXXX','XXXXXX','6900',13189,'Charges financières','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13215,'PCG_SUISSE','XXXXXX','XXXXXX','6920',13189,'Amortissement s/immobilisé. corporelles meubles','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13216,'PCG_SUISSE','XXXXXX','XXXXXX','6930',13189,'Amortissement s/immobilisé. corporelles immeubles','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13217,'PCG_SUISSE','XXXXXX','XXXXXX','6940',13189,'Amortissement s/immobilisé. incorporelles','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13218,'PCG_SUISSE','XXXXXX','XXXXXX','6950',13189,'Produits financiers','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13219,'PCG_SUISSE','XXXXXX','XXXXXX','7',0,'Résultat des activités annexes d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13220,'PCG_SUISSE','XXXXXX','XXXXXX','7000',13219,'Produits accessoires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13221,'PCG_SUISSE','XXXXXX','XXXXXX','7010',13219,'Charges accessoires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13222,'PCG_SUISSE','XXXXXX','XXXXXX','7400',13219,'Produits sur placements financiers','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13223,'PCG_SUISSE','XXXXXX','XXXXXX','7410',13219,'Charges sur placements financiers','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13224,'PCG_SUISSE','XXXXXX','XXXXXX','7500',13219,'Produits des immeubles d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13225,'PCG_SUISSE','XXXXXX','XXXXXX','7510',13219,'Charges des immeubles d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13226,'PCG_SUISSE','XXXXXX','XXXXXX','8',0,'Charges hors exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13227,'PCG_SUISSE','XXXXXX','XXXXXX','8000',13226,'Charges hors exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13228,'PCG_SUISSE','XXXXXX','XXXXXX','8100',13226,'Produits hors exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13229,'PCG_SUISSE','XXXXXX','XXXXXX','8500',13226,'Charges extraordinaires, exceptionnelles ou hors période','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13230,'PCG_SUISSE','XXXXXX','XXXXXX','8510',13226,'Produits extraordinaires, exceptionnels ou hors période','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13231,'PCG_SUISSE','XXXXXX','XXXXXX','8900',13226,'Impôts directs','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13232,'PCG_SUISSE','XXXXXX','XXXXXX','9',0,'Produits de vente et de services','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13233,'PCG_SUISSE','XXXXXX','XXXXXX','9001',13232,'Charges de vente et de services','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13234,'PCG_SUISSE','XXXXXX','XXXXXX','9002',13232,'Résultat brut 1','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13235,'PCG_SUISSE','XXXXXX','XXXXXX','9006',13232,'Charges de personnel de production','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13236,'PCG_SUISSE','XXXXXX','XXXXXX','9007',13232,'Résultat brut 2','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13237,'PCG_SUISSE','XXXXXX','XXXXXX','9008',13232,'Autres charges de personnel','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13238,'PCG_SUISSE','XXXXXX','XXXXXX','9009',13232,'Résultat brut 3','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13239,'PCG_SUISSE','XXXXXX','XXXXXX','9010',13232,'Autres charges d''exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13240,'PCG_SUISSE','XXXXXX','XXXXXX','9011',13232,'Résultat d''exploitation 1','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13241,'PCG_SUISSE','XXXXXX','XXXXXX','9012',13232,'Résultat financier','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13242,'PCG_SUISSE','XXXXXX','XXXXXX','9013',13232,'Résultat d''exploitation 2','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13243,'PCG_SUISSE','XXXXXX','XXXXXX','9014',13232,'Amortissements','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13244,'PCG_SUISSE','XXXXXX','XXXXXX','9015',13232,'Résultat d''exploitation 3','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13245,'PCG_SUISSE','XXXXXX','XXXXXX','9016',13232,'Résultat activités annexes exploitation','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13246,'PCG_SUISSE','XXXXXX','XXXXXX','9017',13232,'Résultat d''exploitation 4','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13247,'PCG_SUISSE','XXXXXX','XXXXXX','9018',13232,'Résultats extraordinaires','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13248,'PCG_SUISSE','XXXXXX','XXXXXX','9019',13232,'Résultat d''entreprise avant impôts','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13249,'PCG_SUISSE','XXXXXX','XXXXXX','9020',13232,'Charges d''impôts','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13250,'PCG_SUISSE','XXXXXX','XXXXXX','9090',13232,'Résultat d''entreprise','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13251,'PCG_SUISSE','XXXXXX','XXXXXX','9100',13232,'Bilan d''ouverture','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13252,'PCG_SUISSE','XXXXXX','XXXXXX','9101',13232,'Bilan de clôture','1');
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (13253,'PCG_SUISSE','XXXXXX','XXXXXX','9200',13232,'Bénéfice / perte de l''exercice','1');

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
-- Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
-- Copyright (C) 2004 Guillaume Delecourt <guillaume.delecourt@opensides.be>
-- Copyright (C) 2005-2018 Regis Houssin <regis.houssin@capnetworks.com>
-- Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
-- Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
-- Copyright (C) 2011-2017 Alexandre Spangaro <aspangaro@zendsi.com>
-- Copyright (C) 2017 Juanjo Menent <jmenent@2byte.es>
@ -21,167 +21,165 @@
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
--
--
-- Ne pas placer de commentaire en fin de ligne, ce fichier est parsé lors
-- de l'install et tous les sigles '--' sont supprimés.
--
--
-- Descriptif des plans comptables CL PC-MIPYME
-- ID 4785 - 4999
--
-- ADD 6700000 to rowid # Do no remove this comment --
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1', NULL, 'Activo Circulante', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.10.1', '1.1', 'Caja', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.20.1', '1.1', 'Banco', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.30.1', '1.1', 'Insumos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.40.1', '1.1', 'Productos en Proceso', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.50.1', '1.1', 'Mercaderias', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.60.1', '1.1', 'Depósito  a Plazo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.70.1', '1.1', 'Valores Negociables', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.80.1 ', '1.1', 'Deudores por Ventas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.90.1', '1.1', 'Documnetos por cobrar', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.100.1', '1.1', 'Documentos por cobrar de Terceros', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.120.1', '1.1', 'Documentos y Cuentas  por cobrar a Empresas No  Relacionadas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.130.1', '1.1', 'Estimación Deudores Incobrable (Provisión)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.140.1', '1.1', 'Deudores Varios', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.150.1', '1.1', 'Anticipo Remuneraciones', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.160.1', '1.1', 'Préstamos a Trabajadores', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.170.1', '1.1', 'Otros Descuentos de Remuneraciones', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.180.1', '1.1', 'Préstamos a Socio (empresario)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.190.1', '1.1', 'Cuenta Corriente Consignatario', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.200.1', '1.1', 'Impuestos por recuperar', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.210.1', '1.1', 'Impuesto Específico Combustible', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.220.1', '1.1', 'IVA Créditos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.230.1', '1.1', 'Crédito Impuesto Ley 18.211', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.240.1', '1.1', 'Crédito Impuesto Específico', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.250.1', '1.1', 'Crédito Impuesto Adicional', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.260.1', '1.1', 'Impuestos Diferidos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante ', '1.1.270.1', '1.1', 'Gastos pagados por anticipados', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.280.1', '1.1', 'Otros Activos Circulantes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.290.1', '1.1', 'Contratos Leasing', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Circulante', '1.1.300.1', '1.1', 'Activos para  Leasing', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'XXXXXX', 'XXXXXX', '1.1.310.1', NULL, 'Pago Provisional Mensual (PPM)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Fijo', '1.2', NULL, 'Activos Fijos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Fijo', '1.2.10.1', '1.2', 'Terrenos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Fijo', '1.2.20.1', '1.2', 'Construcciones y Obras de Infraestructura.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Fijo', '1.2.30.1', '1.2', 'Maquinarias y Equipos.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Fijo', '1.2.40.1', '1.2', 'Muebles y Utiles.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Fijo', '1.2.50.1', '1.2', 'Activos en Leasing.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Fijo', '1.2.60.1', '1.2', 'Otros Activos Fijos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Fijo', '1.2.70.1', '1.2', 'Mayor Valor Retasación Técnica del Activo Fijo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Complementaria de AF', '1.2.80.1', '1.2', 'Depreciación Acumulada', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3', NULL, 'Otros Activos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.10.1', '1.3', 'Cuentas Particulares', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.20.1', '1.3', 'Inversión en Empresas Relacionadas.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.30.1', '1.3', 'Inversión en otras Sociedades.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros ', '1.3.40.1', '1.3', 'Deudores largo Plazo.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.50.1', '1.3', 'Documentos y Cuentas por Cobrar a Empresas Relacionada Largo Plazo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.60.1', '1.3', 'Impuestos Diferidos Largo Plazo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.70.1', '1.3', 'Intangibles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.80.1', '1.3', 'Otros Activos. ', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.90.1', '1.3', 'Otros Activos Trabajadores', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.100.1', '1.3', 'Contratos de Leasing de Largo Plazo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.110.1', '1.3', 'Inversión Ley Arica', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Activo', 'Otros', '1.3.120.1', '1.3', 'Inversión Ley Austral', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Complementaria de Ac', 'Otros', '1.3.130.1', '1.3', 'Amortización (Acumulada)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1', NULL, 'Total Pasivos Circulantes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.10.1', '2.1', 'Obligaciones con Bancos e Instituciones Financieras', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.20.1', '2.1', 'Obligaciones con el público (pagarés)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.30.1', '2.1', 'Cuentas y Documentos por pagar.  ', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.40.1', '2.1', 'Documentos y Cuentas por Pagar Empresas Relacionadas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.50.1', '2.1', 'Documentos y Cuentas por Pagar Empresas No Relacionadas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.60.1', '2.1', 'Cuenta Corriente Comitente', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.70.1', '2.1', 'Acreedores Varios', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.80.1', '2.1', 'Obligaciones o Acreedores por Leasing porción C/P', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.90.1', '2.1', 'Intereses diferidos por Leasing', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.100.1', '2.1', 'Provisiones', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.110.1', '2.1', 'Remuneraciones por Pagar', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.120.1', '2.1', 'Entidades Previsionales por Pagar', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.130.1', '2.1', 'Impuesto Único Por Pagar', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.140.1', '2.1', 'Retenciones por Pagar  ', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.150.1', '2.1', 'Impuesto a la Renta por Pagar', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.160.1', '2.1', ' Otros Impuesto Por Pagar', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.170.1', '2.1', 'IVA Débitos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.180.1', '2.1', 'Impuesto Adicional Débitos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.190.1', '2.1', 'Impuesto Ley 18.211 Débitos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.200.1', '2.1', 'Impuestos Diferidos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.210.1', '2.1', 'Ingresos percibidos por adelantado.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.220.1', '2.1', 'Depósitos Garantía de Envases', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'Circulante', '2.1.230.1', '2.1', 'Otros Pasivos Circulantes.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo ', '2.2', NULL, 'Pasivos Largo Plazo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.10.1', '2.2', 'Obligaciones con bancos e Instituciones Financieras L/P', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.20.1', '2.2', 'Obligaciones con el público Largo Plazo (Bonos)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.30.1', '2.2', 'Cuentas y Documentos por pagar L/P', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.40.1', '2.2', 'Acreedores Varios L/P', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.50.1', '2.2', 'Obligaciones o Acreedores por Leasing porción L/P', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.60.1', '2.2', 'Documentos y Cuentas por Pagar a Empresas Relacionadas L/P', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.70.1', '2.2', 'Impuestos Diferidos L/P', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.80.1', '2.2', 'Otros Pasivos Largo Plazo.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'XXXXXX', 'XXXXXX', '3', NULL, 'Patrimonio', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'XXXXXX', 'XXXXXX', '3.1', NULL, 'Capital', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.1.10.1', '3.1', 'Capital Pagado.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.1.20.1', '3.1', 'Reserva Revalorización Capital Propio', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.1.30.1', '3.1', 'Otra Reservas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.1.40.1', '3.1', 'Cuenta Obligada Socio', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'XXXXXX', 'XXXXXX', '3.2', NULL, 'Utilidades', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.2.10.1', '3.2', 'Utilidades Acumuladas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.2.20.1', '3.2', 'Pérdidas Acumuladas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.2.30.1', '3.2', 'Utilidad del Ejercicio', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.2.40.1', '3.2', 'Pérdida y Ganancia', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'XXXXXX', 'XXXXXX', '4', NULL, 'Resultado', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Ganancia', '4.1', NULL, 'Ingresos de Explotación', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Ganancia', '4.1.20.1', '4.1', 'Otros Ingresos del Giro', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.2', NULL, 'Costos de Explotación', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.2.10.1', '4.2', 'Costos Directo por ventas de Bienes y Servicios del Giro', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.2.20.1', '4.2', 'Otros Costos Directos del Giro', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3', NULL, 'Administración y Venta', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.10.1', '4.3', 'Gastos Generales', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.20.1', '4.3', 'Contribuciones', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.30.1', '4.3', 'Deudores Incobrables', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.40.1', '4.3', 'Reparaciones Automóviles', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.50.1', '4.3', 'Gastos de Organización y Puesta en Marcha', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.60.1', '4.3', 'Gastos de Investigación y Desarrollo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.70.1', '4.3', 'Sueldos (Remuneraciones)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.80.1', '4.3', 'Aporte Patronal', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.90.1', '4.3', 'Honorarios', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.100.1', '4.3', 'Sueldo Empresarial', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.110.1', '4.3', 'Depreciación', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.120.1', '4.3', 'Amortización', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.130.1', '4.3', 'Mermas (Castigo de Mercaderías)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.140.1', '4.3', 'Gasto Promoción', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.3.150.1', '4.3', 'Otros Gastos de Administración y Venta', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4', NULL, 'Otros Ingresos Fuera de Explotación', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4.10.1', '4.4', 'Ingresos Financieros', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4.20.1', '4.4', 'Utilidad Inversión en Empresas Relacionadas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.30.1', '4.4', 'Rentas de Fuente Extranjera', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.40.1', '4.4', 'Dividendos Percibidos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.50.1', '4.4', 'Ingresos No Renta', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.60.1', '4.4', 'Rentas Exentas Impuesto 1° Categoría', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.70.1', '4.4', 'Rentas Afectas a Impuesto Único de 1° Categoría', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.80.1', '4.4', 'Rentas por Arriendos de Bienes Raíces Agrícolas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.90.1', '4.4', 'Rentas por Bienes Raíces No Agrícolas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.100.1', '4.4', 'Otras Rentas Afectas a Impuesto de 1° Categoría', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.110.1', '4.4', 'Comisiones Percibidas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.120.1', '4.4', 'Ingresos fuera de Explotación', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.130.1', '4.4', 'Ajuste Ejercicio Anterior', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4.140.1', '4.4', 'Corrección Monetaria', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4.150.1', '4.4', 'Diferencia Por Tipo de Cambio', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'XXXXXX', 'XXXXXX', '4.5', NULL, 'Egresos Fuera de Explotación', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.10.1', '4.5', 'Gastos Financieros', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Perdida', '4.5.20.1', '4.5', 'Comisiones Pagadas', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.40.1', '4.5', 'Costos y Gastos por Rentas Fuentes Extranjeras', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.50.1', '4.5', 'Otros Egresos Fuera de Explotación', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.60.1', '4.5', 'Pérdida por Financiamiento (Operaciones en Leasing)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.70.1', '4.5', 'Gastos aceptado por Donaciones por fines Sociales', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.80.1', '4.5', 'Gastos aceptado por Donaciones para Fines Políticos', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.90.1', '4.5', 'Gasto aceptado por Donaciones del Art. N° 10 Ley 19.885', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.100.1', '4.5', 'Donaciones Escasos Recursos Artc. 46 DL 3063', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.110.1', '4.5', 'Donaciones sin Beneficios Tributarios', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.120.1', '4.5', 'Otras Donaciones', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.130.1', '4.5', 'Provisiones', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Pérdida', '4.5.140.1', '4.5', 'Impuestos no Recuperables', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Gasto', '4.6', NULL, 'Impuesto a la Renta', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('PC-MIPYME', 'Resultado', 'Gasto', '4.6.10.1', '4.6', 'Provisión Impuesto a la Renta', 1, __ENTITY__);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4785, 'PC-MIPYME', 'Activo', 'Circulante', '1.1', '0', 'Activo Circulante', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4786, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.10.1', '4785', 'Caja', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4787, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.20.1', '4785', 'Banco', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4788, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.30.1', '4785', 'Insumos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4789, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.40.1', '4785', 'Productos en Proceso', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4790, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.50.1', '4785', 'Mercaderias', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4791, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.60.1', '4785', 'Depósito  a Plazo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4792, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.70.1', '4785', 'Valores Negociables', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4793, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.80.1 ', '4785', 'Deudores por Ventas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4794, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.90.1', '4785', 'Documnetos por cobrar', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4795, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.100.1', '4785', 'Documentos por cobrar de Terceros', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4797, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.120.1', '4785', 'Documentos y Cuentas  por cobrar a Empresas No  Relacionadas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4798, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.130.1', '4785', 'Estimación Deudores Incobrable (Provisión)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4799, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.140.1', '4785', 'Deudores Varios', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4800, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.150.1', '4785', 'Anticipo Remuneraciones', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4801, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.160.1', '4785', 'Préstamos a Trabajadores', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4802, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.170.1', '4785', 'Otros Descuentos de Remuneraciones', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4803, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.180.1', '4785', 'Préstamos a Socio (empresario)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4804, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.190.1', '4785', 'Cuenta Corriente Consignatario', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4805, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.200.1', '4785', 'Impuestos por recuperar', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4806, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.210.1', '4785', 'Impuesto Específico Combustible', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4807, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.220.1', '4785', 'IVA Créditos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4808, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.230.1', '4785', 'Crédito Impuesto Ley 18.211', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4809, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.240.1', '4785', 'Crédito Impuesto Específico', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4810, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.250.1', '4785', 'Crédito Impuesto Adicional', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4811, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.260.1', '4785', 'Impuestos Diferidos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4812, 'PC-MIPYME', 'Activo', 'Circulante ', '1.1.270.1', '4785', 'Gastos pagados por anticipados', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4813, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.280.1', '4785', 'Otros Activos Circulantes', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4814, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.290.1', '4785', 'Contratos Leasing', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4815, 'PC-MIPYME', 'Activo', 'Circulante', '1.1.300.1', '4785', 'Activos para  Leasing', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4816, 'PC-MIPYME', 'XXXXXX', 'XXXXXX', '1.1.310.1', NULL, 'Pago Provisional Mensual (PPM)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4817, 'PC-MIPYME', 'Activo', 'Fijo', '1.2', NULL, 'Activos Fijos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4818, 'PC-MIPYME', 'Activo', 'Fijo', '1.2.10.1', '4817', 'Terrenos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4819, 'PC-MIPYME', 'Activo', 'Fijo', '1.2.20.1', '4817', 'Construcciones y Obras de Infraestructura.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4820, 'PC-MIPYME', 'Activo', 'Fijo', '1.2.30.1', '4817', 'Maquinarias y Equipos.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4821, 'PC-MIPYME', 'Activo', 'Fijo', '1.2.40.1', '4817', 'Muebles y Utiles.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4822, 'PC-MIPYME', 'Activo', 'Fijo', '1.2.50.1', '4817', 'Activos en Leasing.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4823, 'PC-MIPYME', 'Activo', 'Fijo', '1.2.60.1', '4817', 'Otros Activos Fijos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4824, 'PC-MIPYME', 'Activo', 'Fijo', '1.2.70.1', '4817', 'Mayor Valor Retasación Técnica del Activo Fijo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4825, 'PC-MIPYME', 'Activo', 'Complementaria de AF', '1.2.80.1', '4817', 'Depreciación Acumulada', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4826, 'PC-MIPYME', 'Activo', 'Otros', '1.3', NULL, 'Otros Activos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4827, 'PC-MIPYME', 'Activo', 'Otros', '1.3.10.1', '4826', 'Cuentas Particulares', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4828, 'PC-MIPYME', 'Activo', 'Otros', '1.3.20.1', '4826', 'Inversión en Empresas Relacionadas.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4829, 'PC-MIPYME', 'Activo', 'Otros', '1.3.30.1', '4826', 'Inversión en otras Sociedades.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4831, 'PC-MIPYME', 'Activo', 'Otros ', '1.3.40.1', '4826', 'Deudores largo Plazo.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4832, 'PC-MIPYME', 'Activo', 'Otros', '1.3.50.1', '4826', 'Documentos y Cuentas por Cobrar a Empresas Relacionada Largo Plazo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4833, 'PC-MIPYME', 'Activo', 'Otros', '1.3.60.1', '4826', 'Impuestos Diferidos Largo Plazo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4834, 'PC-MIPYME', 'Activo', 'Otros', '1.3.70.1', '4826', 'Intangibles', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4835, 'PC-MIPYME', 'Activo', 'Otros', '1.3.80.1', '4826', 'Otros Activos. ', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4836, 'PC-MIPYME', 'Activo', 'Otros', '1.3.90.1', '4826', 'Otros Activos Trabajadores', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4837, 'PC-MIPYME', 'Activo', 'Otros', '1.3.100.1', '4826', 'Contratos de Leasing de Largo Plazo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4838, 'PC-MIPYME', 'Activo', 'Otros', '1.3.110.1', '4826', 'Inversión Ley Arica', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4839, 'PC-MIPYME', 'Activo', 'Otros', '1.3.120.1', '4826', 'Inversión Ley Austral', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4840, 'PC-MIPYME', 'Complementaria de Ac', 'Otros', '1.3.130.1', '4826', 'Amortización (Acumulada)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4841, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1', NULL, 'Total Pasivos Circulantes', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4842, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.10.1', '4841', 'Obligaciones con Bancos e Instituciones Financieras', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4843, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.20.1', '4841', 'Obligaciones con el público (pagarés)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4844, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.30.1', '4841', 'Cuentas y Documentos por pagar.  ', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4845, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.40.1', '4841', 'Documentos y Cuentas por Pagar Empresas Relacionadas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4846, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.50.1', '4841', 'Documentos y Cuentas por Pagar Empresas No Relacionadas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4847, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.60.1', '4841', 'Cuenta Corriente Comitente', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4848, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.70.1', '4841', 'Acreedores Varios', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4849, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.80.1', '4841', 'Obligaciones o Acreedores por Leasing porción C/P', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4850, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.90.1', '4841', 'Intereses diferidos por Leasing', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4851, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.100.1', '4841', 'Provisiones', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4852, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.110.1', '4841', 'Remuneraciones por Pagar', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4853, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.120.1', '4841', 'Entidades Previsionales por Pagar', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4854, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.130.1', '4841', 'Impuesto Único Por Pagar', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4855, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.140.1', '4841', 'Retenciones por Pagar  ', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4856, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.150.1', '4841', 'Impuesto a la Renta por Pagar', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4857, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.160.1', '4841', ' Otros Impuesto Por Pagar', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4858, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.170.1', '4841', 'IVA Débitos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4859, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.180.1', '4841', 'Impuesto Adicional Débitos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4860, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.190.1', '4841', 'Impuesto Ley 18.211 Débitos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4861, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.200.1', '4841', 'Impuestos Diferidos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4862, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.210.1', '4841', 'Ingresos percibidos por adelantado.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4863, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.220.1', '4841', 'Depósitos Garantía de Envases', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4864, 'PC-MIPYME', 'Pasivo', 'Circulante', '2.1.230.1', '4841', 'Otros Pasivos Circulantes.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4865, 'PC-MIPYME', 'Pasivo', 'largo plazo ', '2.2', '0', 'Pasivos Largo Plazo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4866, 'PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.10.1', '4865', 'Obligaciones con bancos e Instituciones Financieras L/P', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4867, 'PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.20.1', '4865', 'Obligaciones con el público Largo Plazo (Bonos)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4868, 'PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.30.1', '4865', 'Cuentas y Documentos por pagar L/P', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4869, 'PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.40.1', '4865', 'Acreedores Varios L/P', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4870, 'PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.50.1', '4865', 'Obligaciones o Acreedores por Leasing porción L/P', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4871, 'PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.60.1', '4865', 'Documentos y Cuentas por Pagar a Empresas Relacionadas L/P', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4872, 'PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.70.1', '4865', 'Impuestos Diferidos L/P', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4873, 'PC-MIPYME', 'Pasivo', 'largo plazo', '2.2.80.1', '4865', 'Otros Pasivos Largo Plazo.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4874, 'PC-MIPYME', 'XXXXXX', 'XXXXXX', '3', NULL, 'Patrimonio', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4875, 'PC-MIPYME', 'XXXXXX', 'XXXXXX', '3.1', NULL, 'Capital', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4876, 'PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.1.10.1', '4875', 'Capital Pagado.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4877, 'PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.1.20.1', '4875', 'Reserva Revalorización Capital Propio', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4878, 'PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.1.30.1', '4875', 'Otra Reservas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4879, 'PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.1.40.1', '4875', 'Cuenta Obligada Socio', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4880, 'PC-MIPYME', 'XXXXXX', 'XXXXXX', '3.2', NULL, 'Utilidades', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4881, 'PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.2.10.1', '4880', 'Utilidades Acumuladas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4882, 'PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.2.20.1', '4880', 'Pérdidas Acumuladas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4883, 'PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.2.30.1', '4880', 'Utilidad del Ejercicio', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4884, 'PC-MIPYME', 'Patrimonio', 'XXXXXX', '3.2.40.1', '4880', 'Pérdida y Ganancia', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4885, 'PC-MIPYME', 'XXXXXX', 'XXXXXX', '4', NULL, 'Resultado', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4886, 'PC-MIPYME', 'Resultado', 'Ganancia', '4.1', NULL, 'Ingresos de Explotación', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4887, 'PC-MIPYME', 'Resultado', 'Ganancia', '4.1.20.1', '4886', 'Otros Ingresos del Giro', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4888, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.2', NULL, 'Costos de Explotación', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4889, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.2.10.1', '4888', 'Costos Directo por ventas de Bienes y Servicios del Giro', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4890, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.2.20.1', '4888', 'Otros Costos Directos del Giro', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4891, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3', NULL, 'Administración y Venta', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4892, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.10.1', '4891', 'Gastos Generales', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4893, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.20.1', '4891', 'Contribuciones', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4894, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.30.1', '4891', 'Deudores Incobrables', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4895, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.40.1', '4891', 'Reparaciones Automóviles', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4896, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.50.1', '4891', 'Gastos de Organización y Puesta en Marcha', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4897, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.60.1', '4891', 'Gastos de Investigación y Desarrollo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4898, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.70.1', '4891', 'Sueldos (Remuneraciones)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4899, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.80.1', '4891', 'Aporte Patronal', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4900, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.90.1', '4891', 'Honorarios', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4901, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.100.1', '4891', 'Sueldo Empresarial', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4903, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.110.1', '4891', 'Depreciación', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4904, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.120.1', '4891', 'Amortización', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4905, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.130.1', '4891', 'Mermas (Castigo de Mercaderías)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4906, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.140.1', '4891', 'Gasto Promoción', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4907, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.3.150.1', '4891', 'Otros Gastos de Administración y Venta', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4908, 'PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4', NULL, 'Otros Ingresos Fuera de Explotación', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4909, 'PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4.10.1', '4908', 'Ingresos Financieros', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4910, 'PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4.20.1', '4908', 'Utilidad Inversión en Empresas Relacionadas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4911, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.30.1', '4908', 'Rentas de Fuente Extranjera', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4912, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.40.1', '4908', 'Dividendos Percibidos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4913, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.50.1', '4908', 'Ingresos No Renta', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4914, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.60.1', '4908', 'Rentas Exentas Impuesto 1° Categoría', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4915, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.70.1', '4908', 'Rentas Afectas a Impuesto Único de 1° Categoría', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4916, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.80.1', '4908', 'Rentas por Arriendos de Bienes Raíces Agrícolas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4917, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.90.1', '4908', 'Rentas por Bienes Raíces No Agrícolas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4918, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.100.1', '4908', 'Otras Rentas Afectas a Impuesto de 1° Categoría', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4919, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.110.1', '4908', 'Comisiones Percibidas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4920, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.120.1', '4908', 'Ingresos fuera de Explotación', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4921, 'PC-MIPYME', 'Resultado', 'XXXXXX', '4.4.130.1', '4908', 'Ajuste Ejercicio Anterior', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4922, 'PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4.140.1', '4908', 'Corrección Monetaria', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4923, 'PC-MIPYME', 'Resultado', 'Perdida o Ganancia', '4.4.150.1', '4908', 'Diferencia Por Tipo de Cambio', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4924, 'PC-MIPYME', 'XXXXXX', 'XXXXXX', '4.5', NULL, 'Egresos Fuera de Explotación', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4925, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.10.1', '4924', 'Gastos Financieros', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4927, 'PC-MIPYME', 'Resultado', 'Perdida', '4.5.20.1', '4924', 'Comisiones Pagadas', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4928, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.40.1', '4924', 'Costos y Gastos por Rentas Fuentes Extranjeras', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4929, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.50.1', '4924', 'Otros Egresos Fuera de Explotación', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4930, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.60.1', '4924', 'Pérdida por Financiamiento (Operaciones en Leasing)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4931, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.70.1', '4924', 'Gastos aceptado por Donaciones por fines Sociales', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4932, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.80.1', '4924', 'Gastos aceptado por Donaciones para Fines Políticos', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4933, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.90.1', '4924', 'Gasto aceptado por Donaciones del Art. N° 10 Ley 19.885', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4934, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.100.1', '4924', 'Donaciones Escasos Recursos Artc. 46 DL 3063', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4935, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.110.1', '4924', 'Donaciones sin Beneficios Tributarios', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4936, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.120.1', '4924', 'Otras Donaciones', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4937, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.130.1', '4924', 'Provisiones', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4938, 'PC-MIPYME', 'Resultado', 'Pérdida', '4.5.140.1', '4924', 'Impuestos no Recuperables', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4939, 'PC-MIPYME', 'Resultado', 'Gasto', '4.6', NULL, 'Impuesto a la Renta', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES(4940, 'PC-MIPYME', 'Resultado', 'Gasto', '4.6.10.1', '4939', 'Provisión Impuesto a la Renta', 1);

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
-- Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
-- Copyright (C) 2004 Guillaume Delecourt <guillaume.delecourt@opensides.be>
-- Copyright (C) 2005-2018 Regis Houssin <regis.houssin@capnetworks.com>
-- Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
-- Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
-- Copyright (C) 2011-2017 Alexandre Spangaro <aspangaro@zendsi.com>
--
@ -20,104 +20,102 @@
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
--
--
-- Ne pas placer de commentaire en fin de ligne, ce fichier est parsé lors
-- de l'install et tous les sigles '--' sont supprimés.
--
--
-- Description of the accounts in DK-STD
--
-- ADD 8000000 to rowid # Do no remove this comment --
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Indtægter', '', '1000', '', 'Salg af varer/ydelser m. moms', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Indtægter', '', '1010', '', 'Salg af varer EU', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Indtægter', '', '1020', '', 'Salg af ydelser EU', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Indtægter', '', '1030', '', 'Ej momspligtigt salg', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Indtægter', '', '1040', '', 'Regulering igangværende arbejder', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1100', '', 'Varekøb med moms', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1110', '', 'Køb af varer EU', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1120', '', 'Køb af ydelser EU', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1130', '', 'Varelagerregulering', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1140', '', 'Eget vareforbrug', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1300', '', 'Repræsentation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1310', '', 'Annoncer/reklame', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1320', '', 'Rejseudgifter', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1330', '', 'Aviser og blade', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1400', '', 'Brændstof', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1410', '', 'Bilforsikring', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1420', '', 'Vedligeholdelse', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1430', '', 'Grøn ejerafgift mv.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1440', '', 'Leje og leasing', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1450', '', 'Bilvask og pleje af bil', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1460', '', 'Parkeringsudgifter', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1470', '', 'Biludgifter efter statens takster', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1480', '', 'Fri bil', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1490', '', 'Privat andel af biludgifter', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1600', '', 'Husleje uden forbrug', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1610', '', 'Forbrugsudgifter (el, vand, gas og varme mv)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1620', '', 'Ejendomsskatter og forsikringer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1630', '', 'Vedligeholdelse af lokaler', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1700', '', 'Kontorartikler og tryksager', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1705', '', 'Telefon og internet', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1710', '', 'Fri telefon privat andel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1715', '', 'Anskaffelse af småaktiver', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1720', '', 'Arbejdstøj', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1725', '', 'Rådgiverudgifter', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1730', '', 'Porto og gebyrer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1735', '', 'Forsikringer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1740', '', 'Bøger og faglitteratur', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1745', '', 'Konstaterede tab på debitorer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Omkostninger', '', '1750', '', 'Kassedifferencer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Afskrivninger', '', '2000', '', 'Afskrivning driftsmidler og inventar', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Afskrivninger', '', '2010', '', 'Afskrivning blandede driftsmidler', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Afskrivninger', '', '2020', '', 'Afskrivninger privat andel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Afskrivninger', '', '2030', '', 'Gevinst og tab ved salg af aktiver', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Finansielle poster', '', '2400', '', 'Renteindtægter bank', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Finansielle poster', '', '2410', '', 'Renteindtægter kunder', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Finansielle poster', '', '2500', '', 'Renteudgifter bank og realkreditinstitut', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Finansielle poster', '', '2510', '', 'Renteudgifter leverandører', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Finansielle poster', '', '2520', '', 'Fradragsberettigede låneomkostninger', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Finansielle poster', '', '2530', '', 'Fradragsberettigede renteudgifter til det offentlige', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3000', '', 'Afskrivningsgrundlag primo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3010', '', 'Årets køb', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3015', '', 'Årets forbedringer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3020', '', 'Årest salg', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3030', '', 'Årets afskrivning', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3040', '', 'Gevinst og tab', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3100', '', 'Afskrivningsgrundlag primo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3110', '', 'Årets køb', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3115', '', 'Årets forbedringer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3120', '', 'Årets salg', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3130', '', 'Årets afskrivning', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3140', '', 'Gevinst og tab', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '3900', '', 'Huslejedepositum', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '4000', '', 'Kasse', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '4010', '', 'Bank', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '4020', '', 'Forudbetalte omkostninger', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '4030', '', 'Debitorer', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '4040', '', 'Varelager', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '4050', '', 'Igangværende arbejder', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5000', '', 'Egenkapital primo', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5010', '', 'Årets resultat', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5020', '', 'Privat hævet', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5030', '', 'Fri bil', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5040', '', 'Statens takster', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5050', '', 'Fri telefon m.v.', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5060', '', 'Private andele', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5065', '', 'Private afskrivninger', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5070', '', 'Driftsudgifter u/fradrag', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5080', '', 'Privat udlæg', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '5090', '', 'Indskud', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '7000', '', 'Gæld bank og realkreditinstitut', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '7010', '', 'Gæld til leverandører af varer og tjenesteydelser', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '7020', '', 'Periodeafgrænsningsposter', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '7030', '', 'Anden gæld', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '8000', '', 'Salgsmoms', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '8010', '', 'Købsmoms', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '8020', '', 'Konto for afgift af varekøb i EU', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '8030', '', 'Konto for afgift af købte ydelser i EU', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '8040', '', 'El- afgift', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '8050', '', 'Øvrige energiafgifter', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('DK-STD', 'Balance', '', '8060', '', 'Betalt moms', 1, __ENTITY__);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5082, 'DK-STD', 'Indtægter', '', '1000', '', 'Salg af varer/ydelser m. moms', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5083, 'DK-STD', 'Indtægter', '', '1010', '', 'Salg af varer EU', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5084, 'DK-STD', 'Indtægter', '', '1020', '', 'Salg af ydelser EU', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5085, 'DK-STD', 'Indtægter', '', '1030', '', 'Ej momspligtigt salg', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5086, 'DK-STD', 'Indtægter', '', '1040', '', 'Regulering igangværende arbejder', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5087, 'DK-STD', 'Omkostninger', '', '1100', '', 'Varekøb med moms', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5088, 'DK-STD', 'Omkostninger', '', '1110', '', 'Køb af varer EU', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5089, 'DK-STD', 'Omkostninger', '', '1120', '', 'Køb af ydelser EU', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5090, 'DK-STD', 'Omkostninger', '', '1130', '', 'Varelagerregulering', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5091, 'DK-STD', 'Omkostninger', '', '1140', '', 'Eget vareforbrug', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5092, 'DK-STD', 'Omkostninger', '', '1300', '', 'Repræsentation', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5093, 'DK-STD', 'Omkostninger', '', '1310', '', 'Annoncer/reklame', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5094, 'DK-STD', 'Omkostninger', '', '1320', '', 'Rejseudgifter', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5095, 'DK-STD', 'Omkostninger', '', '1330', '', 'Aviser og blade', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5096, 'DK-STD', 'Omkostninger', '', '1400', '', 'Brændstof', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5097, 'DK-STD', 'Omkostninger', '', '1410', '', 'Bilforsikring', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5098, 'DK-STD', 'Omkostninger', '', '1420', '', 'Vedligeholdelse', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5099, 'DK-STD', 'Omkostninger', '', '1430', '', 'Grøn ejerafgift mv.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5100, 'DK-STD', 'Omkostninger', '', '1440', '', 'Leje og leasing', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5101, 'DK-STD', 'Omkostninger', '', '1450', '', 'Bilvask og pleje af bil', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5102, 'DK-STD', 'Omkostninger', '', '1460', '', 'Parkeringsudgifter', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5103, 'DK-STD', 'Omkostninger', '', '1470', '', 'Biludgifter efter statens takster', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5104, 'DK-STD', 'Omkostninger', '', '1480', '', 'Fri bil', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5105, 'DK-STD', 'Omkostninger', '', '1490', '', 'Privat andel af biludgifter', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5106, 'DK-STD', 'Omkostninger', '', '1600', '', 'Husleje uden forbrug', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5107, 'DK-STD', 'Omkostninger', '', '1610', '', 'Forbrugsudgifter (el, vand, gas og varme mv)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5108, 'DK-STD', 'Omkostninger', '', '1620', '', 'Ejendomsskatter og forsikringer', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5109, 'DK-STD', 'Omkostninger', '', '1630', '', 'Vedligeholdelse af lokaler', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5110, 'DK-STD', 'Omkostninger', '', '1700', '', 'Kontorartikler og tryksager', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5111, 'DK-STD', 'Omkostninger', '', '1705', '', 'Telefon og internet', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5112, 'DK-STD', 'Omkostninger', '', '1710', '', 'Fri telefon privat andel', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5113, 'DK-STD', 'Omkostninger', '', '1715', '', 'Anskaffelse af småaktiver', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5114, 'DK-STD', 'Omkostninger', '', '1720', '', 'Arbejdstøj', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5115, 'DK-STD', 'Omkostninger', '', '1725', '', 'Rådgiverudgifter', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5116, 'DK-STD', 'Omkostninger', '', '1730', '', 'Porto og gebyrer', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5117, 'DK-STD', 'Omkostninger', '', '1735', '', 'Forsikringer', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5118, 'DK-STD', 'Omkostninger', '', '1740', '', 'Bøger og faglitteratur', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5119, 'DK-STD', 'Omkostninger', '', '1745', '', 'Konstaterede tab på debitorer', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5120, 'DK-STD', 'Omkostninger', '', '1750', '', 'Kassedifferencer', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5121, 'DK-STD', 'Afskrivninger', '', '2000', '', 'Afskrivning driftsmidler og inventar', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5122, 'DK-STD', 'Afskrivninger', '', '2010', '', 'Afskrivning blandede driftsmidler', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5123, 'DK-STD', 'Afskrivninger', '', '2020', '', 'Afskrivninger privat andel', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5124, 'DK-STD', 'Afskrivninger', '', '2030', '', 'Gevinst og tab ved salg af aktiver', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5125, 'DK-STD', 'Finansielle poster', '', '2400', '', 'Renteindtægter bank', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5126, 'DK-STD', 'Finansielle poster', '', '2410', '', 'Renteindtægter kunder', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5127, 'DK-STD', 'Finansielle poster', '', '2500', '', 'Renteudgifter bank og realkreditinstitut', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5128, 'DK-STD', 'Finansielle poster', '', '2510', '', 'Renteudgifter leverandører', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5129, 'DK-STD', 'Finansielle poster', '', '2520', '', 'Fradragsberettigede låneomkostninger', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5130, 'DK-STD', 'Finansielle poster', '', '2530', '', 'Fradragsberettigede renteudgifter til det offentlige', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5131, 'DK-STD', 'Balance', '', '3000', '', 'Afskrivningsgrundlag primo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5132, 'DK-STD', 'Balance', '', '3010', '', 'Årets køb', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5133, 'DK-STD', 'Balance', '', '3015', '', 'Årets forbedringer', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5134, 'DK-STD', 'Balance', '', '3020', '', 'Årest salg', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5135, 'DK-STD', 'Balance', '', '3030', '', 'Årets afskrivning', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5136, 'DK-STD', 'Balance', '', '3040', '', 'Gevinst og tab', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5137, 'DK-STD', 'Balance', '', '3100', '', 'Afskrivningsgrundlag primo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5138, 'DK-STD', 'Balance', '', '3110', '', 'Årets køb', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5139, 'DK-STD', 'Balance', '', '3115', '', 'Årets forbedringer', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5140, 'DK-STD', 'Balance', '', '3120', '', 'Årets salg', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5141, 'DK-STD', 'Balance', '', '3130', '', 'Årets afskrivning', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5142, 'DK-STD', 'Balance', '', '3140', '', 'Gevinst og tab', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5143, 'DK-STD', 'Balance', '', '3900', '', 'Huslejedepositum', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5144, 'DK-STD', 'Balance', '', '4000', '', 'Kasse', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5145, 'DK-STD', 'Balance', '', '4010', '', 'Bank', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5146, 'DK-STD', 'Balance', '', '4020', '', 'Forudbetalte omkostninger', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5147, 'DK-STD', 'Balance', '', '4030', '', 'Debitorer', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5148, 'DK-STD', 'Balance', '', '4040', '', 'Varelager', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5149, 'DK-STD', 'Balance', '', '4050', '', 'Igangværende arbejder', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5150, 'DK-STD', 'Balance', '', '5000', '', 'Egenkapital primo', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5151, 'DK-STD', 'Balance', '', '5010', '', 'Årets resultat', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5152, 'DK-STD', 'Balance', '', '5020', '', 'Privat hævet', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5153, 'DK-STD', 'Balance', '', '5030', '', 'Fri bil', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5154, 'DK-STD', 'Balance', '', '5040', '', 'Statens takster', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5155, 'DK-STD', 'Balance', '', '5050', '', 'Fri telefon m.v.', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5156, 'DK-STD', 'Balance', '', '5060', '', 'Private andele', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5157, 'DK-STD', 'Balance', '', '5065', '', 'Private afskrivninger', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5158, 'DK-STD', 'Balance', '', '5070', '', 'Driftsudgifter u/fradrag', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5159, 'DK-STD', 'Balance', '', '5080', '', 'Privat udlæg', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5160, 'DK-STD', 'Balance', '', '5090', '', 'Indskud', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5161, 'DK-STD', 'Balance', '', '7000', '', 'Gæld bank og realkreditinstitut', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5162, 'DK-STD', 'Balance', '', '7010', '', 'Gæld til leverandører af varer og tjenesteydelser', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5163, 'DK-STD', 'Balance', '', '7020', '', 'Periodeafgrænsningsposter', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5164, 'DK-STD', 'Balance', '', '7030', '', 'Anden gæld', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5165, 'DK-STD', 'Balance', '', '8000', '', 'Salgsmoms', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5166, 'DK-STD', 'Balance', '', '8010', '', 'Købsmoms', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5167, 'DK-STD', 'Balance', '', '8020', '', 'Konto for afgift af varekøb i EU', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5168, 'DK-STD', 'Balance', '', '8030', '', 'Konto for afgift af købte ydelser i EU', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5169, 'DK-STD', 'Balance', '', '8040', '', 'El- afgift', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5170, 'DK-STD', 'Balance', '', '8050', '', 'Øvrige energiafgifter', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (5171, 'DK-STD', 'Balance', '', '8060', '', 'Betalt moms', 1);

View File

@ -0,0 +1,838 @@
-- Copyright (C) 2018 Abbes Bahfir <dolipar@dolipar.org>
--
-- 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/>.
--
--
--
-- Ne pas placer de commentaire en fin de ligne, ce fichier est parsé lors
-- de l'install et tous les sigles '--' sont supprimés.
--
-- Descriptif du système comptable financier DZ NSCF
-- ID 15000 - 15811
-- ADD 1300000 to rowid # Do no remove this comment --
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (17000,'NSCF','CAPIT','XXXXXX','1',0,'Comptes de capitaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15001,'NSCF','CAPIT','XXXXXX','10',17000,'Capital, réserves et assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15002,'NSCF','CAPIT','XXXXXX','101',15001,'Capital émis','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15003,'NSCF','CAPIT','XXXXXX','1011',15002,'Capital souscrit, non appelé','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15004,'NSCF','CAPIT','XXXXXX','1012',15002,'Capital souscrit, appelé, non versé','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15005,'NSCF','CAPIT','XXXXXX','1013',15002,'Capital souscrit, appelé, versé','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15006,'NSCF','CAPIT','XXXXXX','10131',15005,'Capital non amorti','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15007,'NSCF','CAPIT','XXXXXX','10132',15005,'Capital amorti','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15008,'NSCF','CAPIT','XXXXXX','1018',15002,'Capital souscrit, soumis à des réglementations particulières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15009,'NSCF','CAPIT','XXXXXX','103',15001,'Primes liées au capital social','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15010,'NSCF','CAPIT','XXXXXX','1031',15009,'Primes d''émission','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15011,'NSCF','CAPIT','XXXXXX','1032',15009,'Primes de fusion','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15012,'NSCF','CAPIT','XXXXXX','1033',15009,'Primes d''apport','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15013,'NSCF','CAPIT','XXXXXX','1034',15009,'Primes de conversion d''obligations en actions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15014,'NSCF','CAPIT','XXXXXX','104',15001,'Ecart d''évaluation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15015,'NSCF','CAPIT','XXXXXX','105',15001,'Ecart de réévaluation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15016,'NSCF','CAPIT','XXXXXX','1050',15015,'Ecart de réévaluation : Immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15017,'NSCF','CAPIT','XXXXXX','10503',15016,'Ecart de réévaluation : Frais de recherche et de développement immobilisés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15018,'NSCF','CAPIT','XXXXXX','10504',15016,'Ecart de réévaluation : Logiciels informatiques et assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15019,'NSCF','CAPIT','XXXXXX','10505',15016,'Ecart de réévaluation : Concessions et droits similaires, brevets, licences et marques','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15020,'NSCF','CAPIT','XXXXXX','10507',15016,'Ecarts de réévaluation : Fonds commercial goodwill','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15021,'NSCF','CAPIT','XXXXXX','10508',15016,'Ecart de réévaluation : Immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15022,'NSCF','CAPIT','XXXXXX','1051',15015,'Ecart de réévaluation :Immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15023,'NSCF','CAPIT','XXXXXX','10511',15022,'Ecart de réévaluation : Terrains','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15024,'NSCF','CAPIT','XXXXXX','10512',15022,'Ecart de réévaluation : Agencements et aménagements de terrains','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15025,'NSCF','CAPIT','XXXXXX','10513',15022,'Ecart de réévaluation : Constructions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15026,'NSCF','CAPIT','XXXXXX','10515',15022,'Ecarts de réévaluation : Installations techniques','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15027,'NSCF','CAPIT','XXXXXX','10518',15022,'Ecart de réévaluation : Autres Immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15028,'NSCF','CAPIT','XXXXXX','1052',15015,'Ecart de réévaluation sur immobilisations financières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15029,'NSCF','CAPIT','XXXXXX','10526',15028,'Ecart de réévaluation : Titres de filiale','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15030,'NSCF','CAPIT','XXXXXX','10527',15028,'Ecart de réévaluation : Autres immobilisations financières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15031,'NSCF','CAPIT','XXXXXX','106',15001,'Réserves','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15032,'NSCF','CAPIT','XXXXXX','1061',15031,'Réserve légale','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15033,'NSCF','CAPIT','XXXXXX','1062',15031,'Réserve statutaire','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15034,'NSCF','CAPIT','XXXXXX','1063',15031,'Réserve ordinaire','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15035,'NSCF','CAPIT','XXXXXX','1064',15031,'Réserve réglementée','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15036,'NSCF','CAPIT','XXXXXX','10641',15035,'Réserve réglementée proprement dits','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15037,'NSCF','CAPIT','XXXXXX','10642',15035,'Plus-values nettes à long terme','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15038,'NSCF','CAPIT','XXXXXX','1068',15031,'Autres réserves','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15039,'NSCF','CAPIT','XXXXXX','107',15001,'Ecart d''équivalence','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15040,'NSCF','CAPIT','XXXXXX','108',15001,'Compte de l''exploitant','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15041,'NSCF','CAPIT','XXXXXX','109',15001,'Capital souscrit - non appelé (Solde débiteur à l''actif du bilan)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15042,'NSCF','CAPIT','XXXXXX','11',17000,'Report à nouveau (solde créditeur ou débiteur)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15043,'NSCF','CAPIT','XXXXXX','110',15042,'Report à nouveau (solde créditeur)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15044,'NSCF','CAPIT','XXXXXX','119',15042,'Report à nouveau (solde débiteur)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15045,'NSCF','CAPIT','XXXXXX','12',17000,'Résultat de l''exercice (bénéfice ou perte)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15046,'NSCF','CAPIT','XXXXXX','120',15045,'Résultat de l''exercice (bénéfice)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15047,'NSCF','CAPIT','XXXXXX','129',15045,'Résultat de l''exercice (perte)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15048,'NSCF','CAPIT','XXXXXX','13',17000,'Produits et charges différés hors cycle d''exploitation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15049,'NSCF','CAPIT','XXXXXX','131',15048,'Subventions d''équipements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15050,'NSCF','CAPIT','XXXXXX','1312',15049,'Subventions d''équipements Transfert gratuit d''immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15051,'NSCF','CAPIT','XXXXXX','1314',15049,'Subventions d''équipements Financement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15052,'NSCF','CAPIT','XXXXXX','1319',15049,'Subventions d''investissement inscrites au compte de résultat','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15053,'NSCF','CAPIT','XXXXXX','132',15048,'Autres subventions d''investissements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15054,'NSCF','CAPIT','XXXXXX','133',15048,'Impôts différés actif','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15055,'NSCF','CAPIT','XXXXXX','134',15048,'Impôts différés passif','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15056,'NSCF','CAPIT','XXXXXX','138',15048,'Autres produits et charges différés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15057,'NSCF','CAPIT','XXXXXX','15',17000,'Provisions pour charges - passifs non courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15058,'NSCF','CAPIT','XXXXXX','153',15057,'Provisions pour pensions et obligations similaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15059,'NSCF','CAPIT','XXXXXX','155',15057,'Provisions pour impôts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15060,'NSCF','CAPIT','XXXXXX','156',15057,'Provisions pour renouvellement des immobilisations en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15061,'NSCF','CAPIT','XXXXXX','1560',15060,'Provisions pour renouvellement d''immobilisation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15062,'NSCF','CAPIT','XXXXXX','1562',15060,'Provisions pour renouvellement de gisements miniers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15063,'NSCF','CAPIT','XXXXXX','158',15057,'Autres provisions pour charges passifs non courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15064,'NSCF','CAPIT','XXXXXX','1581',15063,'Provisions réglementées relatives aux immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15065,'NSCF','CAPIT','XXXXXX','1583',15063,'Provisions pour risques environnementaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15066,'NSCF','CAPIT','XXXXXX','16',17000,'Emprunts et dettes assimilées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15067,'NSCF','CAPIT','XXXXXX','161',15066,'Titres participatifs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15068,'NSCF','CAPIT','XXXXXX','162',15066,'Emprunts obligataires convertibles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15069,'NSCF','CAPIT','XXXXXX','163',15066,'Autres emprunts obligataires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15070,'NSCF','CAPIT','XXXXXX','164',15066,'Emprunts auprès des établissements de crédit','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15071,'NSCF','CAPIT','XXXXXX','165',15066,'Dépôts et cautionnements reçus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15072,'NSCF','CAPIT','XXXXXX','1651',15071,'Dépôts reçus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15073,'NSCF','CAPIT','XXXXXX','1655',15071,'Cautionnements reçus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15074,'NSCF','CAPIT','XXXXXX','167',15066,'Dettes sur contrat de location - financement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15075,'NSCF','CAPIT','XXXXXX','168',15066,'Autres emprunts et dettes assimilées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15076,'NSCF','CAPIT','XXXXXX','1681',15075,'Autres emprunts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15077,'NSCF','CAPIT','XXXXXX','1682',15075,'Emprunts auprès d''organismes internationaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15078,'NSCF','CAPIT','XXXXXX','1688',15075,'Intérêts courus sur emprunts et dettes assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15079,'NSCF','CAPIT','XXXXXX','169',15066,'Primes de remboursement des obligations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15080,'NSCF','CAPIT','XXXXXX','17',17000,'Dettes rattachées à des participations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15081,'NSCF','CAPIT','XXXXXX','171',15080,'Dettes rattachées à des participations groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15082,'NSCF','CAPIT','XXXXXX','172',15080,'Dettes rattachées à des participations hors groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15083,'NSCF','CAPIT','XXXXXX','173',15080,'Dettes rattachées à des sociétés en participation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15084,'NSCF','CAPIT','XXXXXX','1731',15083,'Principal','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15085,'NSCF','CAPIT','XXXXXX','1738',15083,'Intérêts courus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15086,'NSCF','CAPIT','XXXXXX','178',15080,'Autres dettes rattachées à des participations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15087,'NSCF','CAPIT','XXXXXX','18',17000,'Comptes de liaison des établissements et sociétés en participation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15088,'NSCF','CAPIT','XXXXXX','187',15087,'Biens et prestations de services échangés entre établissements (produits)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15089,'NSCF','CAPIT','XXXXXX','188',15087,'Comptes de liaison entre sociétés en participation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15090,'NSCF','IMMO','XXXXXX','2',0,'COMPTES D''IMMOBILISATIONS','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15091,'NSCF','IMMO','XXXXXX','20',15090,'Immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15092,'NSCF','IMMO','XXXXXX','203',15091,'Frais de développement immobilisables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15093,'NSCF','IMMO','XXXXXX','204',15091,'Logiciels informatiques et assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15094,'NSCF','IMMO','XXXXXX','205',15091,'Concessions et droits similaires, brevets, licences, marques','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15095,'NSCF','IMMO','XXXXXX','2051',15094,'Logiciels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15096,'NSCF','IMMO','XXXXXX','2052',15094,'Brevets','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15097,'NSCF','IMMO','XXXXXX','2053',15094,'Marques','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15098,'NSCF','IMMO','XXXXXX','2056',15094,'Licence','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15099,'NSCF','IMMO','XXXXXX','2058',15094,'Concession - autres droits similaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15100,'NSCF','IMMO','XXXXXX','207',15091,'Ecart d''acquisition - goodwill','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15101,'NSCF','IMMO','XXXXXX','208',15091,'Autres immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15102,'NSCF','IMMO','XXXXXX','21',15090,'Immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15103,'NSCF','IMMO','XXXXXX','211',15102,'Terrains','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15104,'NSCF','IMMO','XXXXXX','2110',15103,'Terrains de construction et chantiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15105,'NSCF','IMMO','XXXXXX','2111',15103,'Terrains nus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15106,'NSCF','IMMO','XXXXXX','2112',15103,'Terrains aménagés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15107,'NSCF','IMMO','XXXXXX','2114',15103,'Terrains bâtis','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15108,'NSCF','IMMO','XXXXXX','2115',15103,'Carrières et gisements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15109,'NSCF','IMMO','XXXXXX','2118',15103,'Autres terrains','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15110,'NSCF','IMMO','XXXXXX','212',15102,'Agencements et aménagements de terrains (même ventilation que celle du compte 211)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15111,'NSCF','IMMO','XXXXXX','213',15102,'Constructions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15112,'NSCF','IMMO','XXXXXX','2131',15111,'Bâtiments','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15113,'NSCF','IMMO','XXXXXX','21311',15112,'Bâtiments industriels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15114,'NSCF','IMMO','XXXXXX','21312',15112,'Bâtiments administratifs et commerciaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15115,'NSCF','IMMO','XXXXXX','21318',15112,'Autres ensembles immobiliers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15116,'NSCF','IMMO','XXXXXX','213181',15115,'Affectés aux opérations professionnelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15117,'NSCF','IMMO','XXXXXX','213188',15115,'Affectés aux opérations non professionnelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15118,'NSCF','IMMO','XXXXXX','2135',15111,'Installations générales - agencements - aménagements des constructions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15119,'NSCF','IMMO','XXXXXX','21351',15118,'Installation d''eau','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15120,'NSCF','IMMO','XXXXXX','21352',15118,'Installation d''électricité','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15121,'NSCF','IMMO','XXXXXX','21353',15118,'Installation de gaz','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15122,'NSCF','IMMO','XXXXXX','21354',15118,'Installation de vapeur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15123,'NSCF','IMMO','XXXXXX','21355',15118,'Installation de protection et de sécurité','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15124,'NSCF','IMMO','XXXXXX','21356',15118,'Installation de télécommunication','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15125,'NSCF','IMMO','XXXXXX','21357',15118,'Installation d''aération, chauffage et climatisation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15126,'NSCF','IMMO','XXXXXX','21358',15118,'Autres agencements et installations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15127,'NSCF','IMMO','XXXXXX','2138',15111,'Ouvrages d''infrastructures','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15128,'NSCF','IMMO','XXXXXX','21381',15127,'Voies de terre','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15129,'NSCF','IMMO','XXXXXX','21382',15127,'Voies de fer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15130,'NSCF','IMMO','XXXXXX','21383',15127,'Voies d''eau','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15131,'NSCF','IMMO','XXXXXX','21384',15127,'Barrages - puits d''eau','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15132,'NSCF','IMMO','XXXXXX','21385',15127,'Pistes d''aérodromes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15133,'NSCF','IMMO','XXXXXX','215',15102,'Installations techniques, matériel et outillage industriels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15134,'NSCF','IMMO','XXXXXX','2151',15133,'Installations complexes spécialisées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15135,'NSCF','IMMO','XXXXXX','2153',15133,'Installations à caractère spécifique','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15136,'NSCF','IMMO','XXXXXX','2154',15133,'Matériel industriel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15137,'NSCF','IMMO','XXXXXX','2155',15133,'Outillage industriel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15138,'NSCF','IMMO','XXXXXX','2157',15133,'Agencements et aménagements des matériels et outillage industriels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15139,'NSCF','IMMO','XXXXXX','218',15102,'Autres immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15140,'NSCF','IMMO','XXXXXX','2181',15139,'Installations générales, agencements, aménagements divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15141,'NSCF','IMMO','XXXXXX','2182',15139,'Matériel de transport','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15142,'NSCF','IMMO','XXXXXX','2183',15139,'Matériel de bureau et matériel informatique','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15143,'NSCF','IMMO','XXXXXX','2184',15139,'Mobilier','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15144,'NSCF','IMMO','XXXXXX','2185',15139,'Cheptel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15145,'NSCF','IMMO','XXXXXX','2186',15139,'Emballages récupérables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15146,'NSCF','IMMO','XXXXXX','22',15090,'Immobilisations mises en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15147,'NSCF','IMMO','XXXXXX','221',15146,'Terrains en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15148,'NSCF','IMMO','XXXXXX','222',15146,'Agencements et aménagements de terrains en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15149,'NSCF','IMMO','XXXXXX','223',15146,'Constructions en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15150,'NSCF','IMMO','XXXXXX','225',15146,'Installations techniques en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15151,'NSCF','IMMO','XXXXXX','228',15146,'Autres immobilisations corporelles en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15152,'NSCF','IMMO','XXXXXX','229',15146,'Droits du concédant','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15153,'NSCF','IMMO','XXXXXX','23',15090,'Immobilisations en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15154,'NSCF','IMMO','XXXXXX','232',15153,'Immobilisations corporelles en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15155,'NSCF','IMMO','XXXXXX','2322',15154,'Agencements et aménagements de Terrains en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15156,'NSCF','IMMO','XXXXXX','2323',15154,'Constructions en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15157,'NSCF','IMMO','XXXXXX','2325',15154,'Installations techniques, matériel et outillage industriels en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15158,'NSCF','IMMO','XXXXXX','2328',15154,'Autres immobilisations corporelles en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15159,'NSCF','IMMO','XXXXXX','237',15153,'Immobilisations incorporelles en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15160,'NSCF','IMMO','XXXXXX','238',15153,'Avances et acomptes versés sur commandes d''immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15161,'NSCF','IMMO','XXXXXX','2382',15160,'Avances et acomptes versés sur commandes d''immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15162,'NSCF','IMMO','XXXXXX','2387',15160,'Avances et acomptes versés sur commandes d''immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15163,'NSCF','IMMO','XXXXXX','26',15090,'Participations et créances rattachées à des participations (entreprises associées)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15164,'NSCF','IMMO','XXXXXX','261',15163,'Titres de filiales','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15165,'NSCF','IMMO','XXXXXX','2611',15164,'Actions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15166,'NSCF','IMMO','XXXXXX','2618',15164,'Autres titres','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15167,'NSCF','IMMO','XXXXXX','262',15163,'Autres titres de participation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15168,'NSCF','IMMO','XXXXXX','265',15163,'Titres de participation évalués par équivalence','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15169,'NSCF','IMMO','XXXXXX','266',15163,'Créances rattachées à des participations groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15170,'NSCF','IMMO','XXXXXX','2661',15169,'Créances liées à des participations groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15171,'NSCF','IMMO','XXXXXX','2665',15169,'Versements représentatifs d''apports non capitalisés (appel de fonds)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15172,'NSCF','IMMO','XXXXXX','2666',15169,'Avances consolidables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15173,'NSCF','IMMO','XXXXXX','2668',15169,'Dividendes à percevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15174,'NSCF','IMMO','XXXXXX','267',15163,'Créances rattachées à des participations hors groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15175,'NSCF','IMMO','XXXXXX','2671',15174,'Créances liées à des participations hors groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15176,'NSCF','IMMO','XXXXXX','2675',15174,'Versements représentatifs d''apports non capitalisés (appel de fonds)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15177,'NSCF','IMMO','XXXXXX','2676',15174,'Avances consolidables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15178,'NSCF','IMMO','XXXXXX','2677',15174,'Autres créances rattachées à des participations hors groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15179,'NSCF','IMMO','XXXXXX','2678',15174,'Dividendes et intérêts à percevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15180,'NSCF','IMMO','XXXXXX','268',15163,'Créances rattachées à des sociétés en participation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15181,'NSCF','IMMO','XXXXXX','2681',15180,'Principal','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15182,'NSCF','IMMO','XXXXXX','2688',15180,'Intérêts courus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15183,'NSCF','IMMO','XXXXXX','269',15163,'Versements restant à effectuer sur titres de participation non libérés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15184,'NSCF','IMMO','XXXXXX','27',15090,'Autres immobilisations financières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15185,'NSCF','IMMO','XXXXXX','271',15184,'Titres immobilisés autres que les titres immobilisés de l''activité de portefeuille','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15186,'NSCF','IMMO','XXXXXX','2711',15185,'Actions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15187,'NSCF','IMMO','XXXXXX','2718',15185,'Autres titres','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15188,'NSCF','IMMO','XXXXXX','272',15184,'Titres représentatifs de droit de créance','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15189,'NSCF','IMMO','XXXXXX','2721',15188,'Obligations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15190,'NSCF','IMMO','XXXXXX','2722',15188,'Bons','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15191,'NSCF','IMMO','XXXXXX','273',15184,'Titres immobilisés de l''activité de portefeuille','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15192,'NSCF','IMMO','XXXXXX','2731',15191,'Actions immobilisées de l''activité de portefeuille','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15193,'NSCF','IMMO','XXXXXX','2732',15191,'Obligations remboursables en actions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15194,'NSCF','IMMO','XXXXXX','2733',15191,'Obligations convertibles en actions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15195,'NSCF','IMMO','XXXXXX','274',15184,'Prêts et créances sur contrat de location financement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15196,'NSCF','IMMO','XXXXXX','2741',15195,'Prêts participatifs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15197,'NSCF','IMMO','XXXXXX','2742',15195,'Prêts aux associés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15198,'NSCF','IMMO','XXXXXX','2743',15195,'Prêts au personnel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15199,'NSCF','IMMO','XXXXXX','2745',15195,'Créances sur contrat de location - financement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15200,'NSCF','IMMO','XXXXXX','2748',15195,'Autres prêts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15201,'NSCF','IMMO','XXXXXX','275',15184,'Dépôts et cautionnements versés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15202,'NSCF','IMMO','XXXXXX','2751',15201,'Dépôts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15203,'NSCF','IMMO','XXXXXX','2755',15201,'Cautionnements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15204,'NSCF','IMMO','XXXXXX','276',15184,'Autres créances immobilisées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15205,'NSCF','IMMO','XXXXXX','2761',15204,'Créances diverses','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15206,'NSCF','IMMO','XXXXXX','2768',15204,'Intérêts courus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15207,'NSCF','IMMO','XXXXXX','27682',15206,'Autres créances sur titres immobilisés (droit de créance)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15208,'NSCF','IMMO','XXXXXX','27684',15206,'Autres créances sur prêts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15209,'NSCF','IMMO','XXXXXX','27685',15206,'Autres créances sur dépôts et cautionnements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15210,'NSCF','IMMO','XXXXXX','27688',15206,'Autres créances sur créances diverses','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15211,'NSCF','IMMO','XXXXXX','279',15184,'Versements restant à effectuer sur titres immobilisés non libérés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15212,'NSCF','IMMO','XXXXXX','28',15090,'Amortissement des immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15213,'NSCF','IMMO','XXXXXX','280',15212,'Amortissement des immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15214,'NSCF','IMMO','XXXXXX','2803',15213,'Amortissement des frais de recherche et de développement immobilisables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15215,'NSCF','IMMO','XXXXXX','2804',15213,'Amortissement. des logiciels informatiques et assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15216,'NSCF','IMMO','XXXXXX','2805',15213,'Amortissement concessions et droits similaires, brevets, licences, marques.','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15217,'NSCF','IMMO','XXXXXX','2807',15213,'Amortissement écart d''acquisition - Goodwill','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15218,'NSCF','IMMO','XXXXXX','2808',15213,'Amortissement autres immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15219,'NSCF','IMMO','XXXXXX','281',15212,'Amortissement des immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15220,'NSCF','IMMO','XXXXXX','2812',15219,'Amortissement des agencements et aménagement de terrains','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15221,'NSCF','IMMO','XXXXXX','2813',15219,'Amortissement des constructions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15222,'NSCF','IMMO','XXXXXX','2815',15219,'Amortissement des installations techniques','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15223,'NSCF','IMMO','XXXXXX','2818',15219,'Amortissement des autres immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15224,'NSCF','IMMO','XXXXXX','282',15212,'Amortissement des immobilisations mises en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15225,'NSCF','IMMO','XXXXXX','29',15090,'Pertes de valeur sur immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15226,'NSCF','IMMO','XXXXXX','290',15225,'Pertes de valeur sur immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15227,'NSCF','IMMO','XXXXXX','2903',15226,'Pertes de valeurs sur frais de recherche et de développement immobilisables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15228,'NSCF','IMMO','XXXXXX','2904',15226,'Pertes de valeur sur logiciels informatiques et assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15229,'NSCF','IMMO','XXXXXX','2905',15226,'Pertes de valeur sur concessions et droits similaires, brevets, licences, marques.','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15230,'NSCF','IMMO','XXXXXX','2907',15226,'Pertes de valeur sur écart d''acquisition Goodwill','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15231,'NSCF','IMMO','XXXXXX','2908',15226,'Pertes de valeur sur autres immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15232,'NSCF','IMMO','XXXXXX','291',15225,'Pertes de valeurs sur immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15233,'NSCF','IMMO','XXXXXX','2912',15232,'Pertes de valeur sur agencements et aménagements de terrains','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15234,'NSCF','IMMO','XXXXXX','2913',15232,'Pertes de valeur sur constructions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15235,'NSCF','IMMO','XXXXXX','2915',15232,'Pertes de valeur sur installations techniques','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15236,'NSCF','IMMO','XXXXXX','2918',15232,'Pertes de valeur sur autres immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15237,'NSCF','IMMO','XXXXXX','292',15225,'Pertes de valeur sur immobilisations mises en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15238,'NSCF','IMMO','XXXXXX','293',15225,'Pertes de valeur sur immobilisations en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15239,'NSCF','IMMO','XXXXXX','2931',15238,'Pertes de valeur sur immobilisations corporelles en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15240,'NSCF','IMMO','XXXXXX','2932',15238,'Pertes de valeur sur immobilisations incorporelles en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15241,'NSCF','IMMO','XXXXXX','296',15225,'Pertes de valeur sur participations et créances rattachées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15242,'NSCF','IMMO','XXXXXX','2961',15241,'Pertes de valeur sur titres de filiales','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15243,'NSCF','IMMO','XXXXXX','2962',15241,'Pertes de valeur sur autres formes de participations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15244,'NSCF','IMMO','XXXXXX','2965',15241,'Pertes de valeur sur titres de participations évalués par équivalence','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15245,'NSCF','IMMO','XXXXXX','2966',15241,'Pertes de valeur sur créances rattachées à des participations groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15246,'NSCF','IMMO','XXXXXX','2967',15241,'Pertes de valeur sur créances rattachées à des participations hors groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15247,'NSCF','IMMO','XXXXXX','2968',15241,'Pertes de valeur sur créances rattachées à des sociétés en participations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15248,'NSCF','IMMO','XXXXXX','297',15225,'Pertes de valeur sur autres titres immobilisés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15249,'NSCF','IMMO','XXXXXX','2971',15248,'Pertes de valeur sur titres immobilisés autres que les titres immobilisés autres que TIAP (droits de propriété)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15250,'NSCF','IMMO','XXXXXX','2972',15248,'Pertes de valeur sur titres représentatifs de droit de créance','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15251,'NSCF','IMMO','XXXXXX','2973',15248,'Pertes de valeur sur titres immobilisés de l''activité de portefeuille','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15252,'NSCF','IMMO','XXXXXX','2974',15248,'Pertes de valeur sur contrat de location financement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15253,'NSCF','IMMO','XXXXXX','2975',15248,'Pertes de valeur sur dépôts et cautionnements versés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15254,'NSCF','IMMO','XXXXXX','2976',15248,'Pertes de valeur sur autres créances immobilisées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15255,'NSCF','IMMO','XXXXXX','298',15225,'Pertes de valeur sur autres instruments financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15256,'NSCF','STOCK','XXXXXX','3',0,'COMPTES DE STOCKS ET ENCOURS','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15257,'NSCF','STOCK','XXXXXX','30',15256,'Stocks de marchandises','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15258,'NSCF','STOCK','XXXXXX','31',15256,'Matières premières et fournitures','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15259,'NSCF','STOCK','XXXXXX','311',15258,'Matières (ou groupe) A','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15260,'NSCF','STOCK','XXXXXX','312',15258,'Matières (ou groupe) B','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15261,'NSCF','STOCK','XXXXXX','313',15258,'Matières ...','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15262,'NSCF','STOCK','XXXXXX','32',15256,'Autres approvisionnements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15263,'NSCF','STOCK','XXXXXX','321',15262,'Matières consommables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15264,'NSCF','STOCK','XXXXXX','322',15262,'Fournitures consommables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15265,'NSCF','STOCK','XXXXXX','326',15262,'Emballages','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15266,'NSCF','STOCK','XXXXXX','3261',15265,'Emballages perdus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15267,'NSCF','STOCK','XXXXXX','3265',15265,'Emballages récupérables non identifiables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15268,'NSCF','STOCK','XXXXXX','3267',15265,'Emballages à usage mixte','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15269,'NSCF','STOCK','XXXXXX','33',15256,'En-cours de production de biens','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15270,'NSCF','STOCK','XXXXXX','331',15269,'Produits en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15271,'NSCF','STOCK','XXXXXX','335',15269,'Travaux en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15272,'NSCF','STOCK','XXXXXX','34',15256,'En-cours de production de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15273,'NSCF','STOCK','XXXXXX','341',15272,'Etudes en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15274,'NSCF','STOCK','XXXXXX','345',15272,'Prestations de services en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15275,'NSCF','STOCK','XXXXXX','35',15256,'Stocks de produits','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15276,'NSCF','STOCK','XXXXXX','351',15275,'Produits intermédiaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15277,'NSCF','STOCK','XXXXXX','355',15275,'Produits finis','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15278,'NSCF','STOCK','XXXXXX','358',15275,'Produits résiduels ou matières de récupération','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15279,'NSCF','STOCK','XXXXXX','3581',15278,'Déchets','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15280,'NSCF','STOCK','XXXXXX','3585',15278,'Rebuts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15281,'NSCF','STOCK','XXXXXX','3586',15278,'Matières de récupération','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15282,'NSCF','STOCK','XXXXXX','36',15256,'Stocks provenant d''immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15283,'NSCF','STOCK','XXXXXX','37',15256,'Stocks à l''extérieur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15284,'NSCF','STOCK','XXXXXX','370',15283,'Stocks de marchandises l''extérieur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15285,'NSCF','STOCK','XXXXXX','3700',15284,'Stocks en cours de route','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15286,'NSCF','STOCK','XXXXXX','3701',15284,'Stocks de marchandises en dépôt à l''extérieur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15287,'NSCF','STOCK','XXXXXX','3702',15284,'Stocks de marchandises en consignation à l''extérieur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15288,'NSCF','STOCK','XXXXXX','371',15283,'Stocks de matières premières et fournitures à l''extérieur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15289,'NSCF','STOCK','XXXXXX','375',15283,'Stocks de produits à l''extérieur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15290,'NSCF','STOCK','XXXXXX','38',15256,'Achats stockés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15291,'NSCF','STOCK','XXXXXX','380',15290,'Marchandises stockées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15292,'NSCF','STOCK','XXXXXX','381',15290,'Matières premières et fournitures stockées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15293,'NSCF','STOCK','XXXXXX','382',15290,'Autres approvisionnements stockés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15294,'NSCF','STOCK','XXXXXX','39',15256,'Pertes de valeur sur stocks et en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15295,'NSCF','STOCK','XXXXXX','390',15294,'Pertes de valeur sur stocks de marchandises','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15296,'NSCF','STOCK','XXXXXX','391',15294,'Pertes de valeur sur matières premières et fournitures de biens','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15297,'NSCF','STOCK','XXXXXX','392',15294,'Pertes de valeur sur autres approvisionnements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15298,'NSCF','STOCK','XXXXXX','393',15294,'Pertes de valeur sur en-cours de production de de biens','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15299,'NSCF','STOCK','XXXXXX','394',15294,'Pertes de valeur sur en-cours de production de de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15300,'NSCF','STOCK','XXXXXX','395',15294,'Pertes de valeur sur stocks de produits','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15301,'NSCF','STOCK','XXXXXX','397',15294,'Pertes de valeur sur stocks à l''extérieur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15302,'NSCF','THIRDPARTY','XXXXXX','4',0,'COMPTES DE TIERS','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15303,'NSCF','THIRDPARTY','XXXXXX','40',15302,'Fournisseurs et comptes rattachés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15304,'NSCF','THIRDPARTY','XXXXXX','401',15303,'Fournisseurs de stocks et services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15305,'NSCF','THIRDPARTY','XXXXXX','4011',15304,'Fournisseurs - Achats de biens et prestations de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15306,'NSCF','THIRDPARTY','XXXXXX','4017',15304,'Fournisseurs - Retenues de garantie','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15307,'NSCF','THIRDPARTY','XXXXXX','403',15303,'Fournisseurs - Effets à payer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15308,'NSCF','THIRDPARTY','XXXXXX','404',15303,'Fournisseurs d''immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15309,'NSCF','THIRDPARTY','XXXXXX','4041',15308,'Fournisseurs - Achats d''immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15310,'NSCF','THIRDPARTY','XXXXXX','4047',15308,'Fournisseurs d''immobilisations Retenues de garantie','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15311,'NSCF','THIRDPARTY','XXXXXX','405',15303,'Fournisseurs d''immobilisations - Effets à payer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15312,'NSCF','THIRDPARTY','XXXXXX','408',15303,'Fournisseurs - factures non parvenues','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15313,'NSCF','THIRDPARTY','XXXXXX','4081',15312,'Fournisseurs de stocks - Factures non parvenues','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15314,'NSCF','THIRDPARTY','XXXXXX','4084',15312,'Fournisseurs d''immobilisations Factures non parvenues','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15315,'NSCF','THIRDPARTY','XXXXXX','4088',15312,'Fournisseurs - Intérêts courus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15316,'NSCF','THIRDPARTY','XXXXXX','409',15303,'Fournisseurs débiteurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15317,'NSCF','THIRDPARTY','XXXXXX','4091',15316,'Fournisseurs - Avances et acomptes versés sur commandes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15318,'NSCF','THIRDPARTY','XXXXXX','4096',15316,'Fournisseurs - Créances pour emballages et matériel à rendre ','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15319,'NSCF','THIRDPARTY','XXXXXX','4097',15316,'Fournisseurs - Autres avoirs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15320,'NSCF','THIRDPARTY','XXXXXX','4098',15316,'Rabais, remises, ristournes à obtenir et autres avoirs non encore reçus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15321,'NSCF','THIRDPARTY','XXXXXX','41',15302,'Clients et comptes rattachés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15322,'NSCF','THIRDPARTY','XXXXXX','411',15321,'Clients','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15323,'NSCF','THIRDPARTY','XXXXXX','4111',15322,'Clients - Ventes de biens ou de prestations de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15324,'NSCF','THIRDPARTY','XXXXXX','4117',15322,'Clients - Retenues de garantie','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15325,'NSCF','THIRDPARTY','XXXXXX','413',15321,'Clients - Effets à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15326,'NSCF','THIRDPARTY','XXXXXX','416',15321,'Clients douteux (litigieux)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15327,'NSCF','THIRDPARTY','XXXXXX','417',15321,'Créances sur travaux ou prestations en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15328,'NSCF','THIRDPARTY','XXXXXX','418',15321,'Clients - Produits non encore facturés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15329,'NSCF','THIRDPARTY','XXXXXX','4181',15328,'Clients - Factures à établir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15330,'NSCF','THIRDPARTY','XXXXXX','4188',15328,'Clients - Intérêts courus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15331,'NSCF','THIRDPARTY','XXXXXX','419',15321,'Clients créditeurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15332,'NSCF','THIRDPARTY','XXXXXX','4191',15331,'Clients - Avances et acomptes reçus sur commandes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15333,'NSCF','THIRDPARTY','XXXXXX','4196',15331,'Clients - Dettes sur emballages et matériels consignés autres avoirs à établir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15334,'NSCF','THIRDPARTY','XXXXXX','4197',15331,'Clients - Autres avoirs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15335,'NSCF','THIRDPARTY','XXXXXX','4198',15331,'Rabais, remises, ristournes à accorder et','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15336,'NSCF','THIRDPARTY','XXXXXX','42',15302,'Personnel et comptes rattachés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15337,'NSCF','THIRDPARTY','XXXXXX','421',15336,'Personnel - Rémunérations dues','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15338,'NSCF','THIRDPARTY','XXXXXX','422',15336,'Fonds des œuvres sociales','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15339,'NSCF','THIRDPARTY','XXXXXX','423',15336,'Participation des salariés aux résultats','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15340,'NSCF','THIRDPARTY','XXXXXX','425',15336,'Personnel - Avances et acomptes accordés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15341,'NSCF','THIRDPARTY','XXXXXX','426',15336,'Personnel - Dépôts reçus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15342,'NSCF','THIRDPARTY','XXXXXX','427',15336,'Personnel - Oppositions sur salaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15343,'NSCF','THIRDPARTY','XXXXXX','428',15336,'Personnel - Charges à payer et produits à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15344,'NSCF','THIRDPARTY','XXXXXX','4286',15343,'Personnel, charges à payer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15345,'NSCF','THIRDPARTY','XXXXXX','4287',15343,'Personnel, produits à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15346,'NSCF','THIRDPARTY','XXXXXX','43',15302,'Organismes sociaux et comptes rattachés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15347,'NSCF','THIRDPARTY','XXXXXX','431',15346,'Sécurité sociale','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15348,'NSCF','THIRDPARTY','XXXXXX','432',15346,'Autres organismes sociaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15349,'NSCF','THIRDPARTY','XXXXXX','438',15346,'Organismes sociaux - Charges à payer et produits à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15350,'NSCF','THIRDPARTY','XXXXXX','4386',15349,'Organismes sociaux, charges à payer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15351,'NSCF','THIRDPARTY','XXXXXX','4387',15349,'Organismes sociaux, produits à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15352,'NSCF','THIRDPARTY','XXXXXX','44',15302,'État, collectivités publiques, organismes internationaux et comptes rattachés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15353,'NSCF','THIRDPARTY','XXXXXX','441',15352,'État et collectivités publiques, subventions à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15354,'NSCF','THIRDPARTY','XXXXXX','4411',15353,'Subventions d''investissement à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15355,'NSCF','THIRDPARTY','XXXXXX','4417',15353,'Subventions d''exploitation à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15356,'NSCF','THIRDPARTY','XXXXXX','4418',15353,'Subventions d''équilibre à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15357,'NSCF','THIRDPARTY','XXXXXX','4419',15353,'Avances sur subventions à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15358,'NSCF','THIRDPARTY','XXXXXX','442',15352,'Impôts et taxes recouvrables sur des tiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15359,'NSCF','THIRDPARTY','XXXXXX','443',15352,'Opérations particulières avec l''Etat et les collectivités publiques','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15360,'NSCF','THIRDPARTY','XXXXXX','444',15352,'Etat - Impôts sur les résultats','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15361,'NSCF','THIRDPARTY','XXXXXX','445',15352,'Etat - Taxes sur le chiffre d''affaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15362,'NSCF','THIRDPARTY','XXXXXX','4451',15361,'Taxes sur le chiffre d''affaires à décaisser','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15363,'NSCF','THIRDPARTY','XXXXXX','44511',15362,'T.V.A. à décaisser','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15364,'NSCF','THIRDPARTY','XXXXXX','44518',15362,'Autres taxes assimilées à décaisser','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15365,'NSCF','THIRDPARTY','XXXXXX','4456',15361,'Taxes sur le chiffre d''affaires déductibles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15366,'NSCF','THIRDPARTY','XXXXXX','44562',15365,'T.V.A. sur immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15367,'NSCF','THIRDPARTY','XXXXXX','44566',15365,'T.V.A. sur autres biens et services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15368,'NSCF','THIRDPARTY','XXXXXX','44567',15365,'Crédit de T.V.A. à reporter','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15369,'NSCF','THIRDPARTY','XXXXXX','4457',15361,'Taxes sur le chiffre d''affaires collectées par l''entreprise','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15370,'NSCF','THIRDPARTY','XXXXXX','44571',15369,'T.V.A. collectée','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15371,'NSCF','THIRDPARTY','XXXXXX','44578',15369,'Autres taxes collectée assimilées à la T.V.A.','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15372,'NSCF','THIRDPARTY','XXXXXX','4458',15361,'Taxes sur le chiffre d''affaires à régulariser ou en attente','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15373,'NSCF','THIRDPARTY','XXXXXX','44586',15372,'Taxes sur le chiffre d''affaires sur factures non parvenues','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15374,'NSCF','THIRDPARTY','XXXXXX','44587',15372,'Taxes sur le chiffre d''affaires sur factures à établir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15375,'NSCF','THIRDPARTY','XXXXXX','446',15352,'Organismes internationaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15376,'NSCF','THIRDPARTY','XXXXXX','447',15352,'Autres impôts, taxes et versements assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15377,'NSCF','THIRDPARTY','XXXXXX','448',15352,'Etat - Charges à payer et produits à recevoir (hors impôts)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15378,'NSCF','THIRDPARTY','XXXXXX','4486',15377,'Etat, charges à payer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15379,'NSCF','THIRDPARTY','XXXXXX','4487',15377,'Etat, produits à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15380,'NSCF','THIRDPARTY','XXXXXX','4488',15377,'Obligations cautionnées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15381,'NSCF','THIRDPARTY','XXXXXX','45',15302,'Groupe et associés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15382,'NSCF','THIRDPARTY','XXXXXX','451',15381,'Opérations groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15383,'NSCF','THIRDPARTY','XXXXXX','4510',15382,'Groupe, avances accordées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15384,'NSCF','THIRDPARTY','XXXXXX','4511',15382,'Groupe, avances reçues','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15385,'NSCF','THIRDPARTY','XXXXXX','455',15381,'Associés - Comptes courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15386,'NSCF','THIRDPARTY','XXXXXX','4551',15385,'Principal','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15387,'NSCF','THIRDPARTY','XXXXXX','4558',15385,'Intérêts courus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15388,'NSCF','THIRDPARTY','XXXXXX','456',15381,'Associés - Opérations sur le capital','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15389,'NSCF','THIRDPARTY','XXXXXX','4561',15388,'Associés - Comptes d''apport en société','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15390,'NSCF','THIRDPARTY','XXXXXX','45611',15389,'Apports en nature','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15391,'NSCF','THIRDPARTY','XXXXXX','45615',15389,'Apports en numéraire','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15392,'NSCF','THIRDPARTY','XXXXXX','4562',15388,'Apporteurs - Capital appelé, non versé','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15393,'NSCF','THIRDPARTY','XXXXXX','45621',15392,'Actionnaires - Capital souscrit et appelé, non versé','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15394,'NSCF','THIRDPARTY','XXXXXX','45625',15392,'Associés - Capital appelé, non versé','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15395,'NSCF','THIRDPARTY','XXXXXX','4563',15388,'Associés - versements reçus sur augmentation de capital','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15396,'NSCF','THIRDPARTY','XXXXXX','4564',15388,'Associés - Versements anticipés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15397,'NSCF','THIRDPARTY','XXXXXX','4566',15388,'Actionnaires défaillants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15398,'NSCF','THIRDPARTY','XXXXXX','4567',15388,'Associés - Capital à rembourser','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15399,'NSCF','THIRDPARTY','XXXXXX','457',15381,'Associés - Dividendes à payer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15400,'NSCF','THIRDPARTY','XXXXXX','458',15381,'Associés - Opérations faites en commun ou en groupement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15401,'NSCF','THIRDPARTY','XXXXXX','4581',15400,'Opérations courantes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15402,'NSCF','THIRDPARTY','XXXXXX','4588',15400,'Intérêts courus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15403,'NSCF','THIRDPARTY','XXXXXX','46',15302,'Débiteurs divers et créditeurs divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15404,'NSCF','THIRDPARTY','XXXXXX','462',15403,'Créances sur cessions d''immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15405,'NSCF','THIRDPARTY','XXXXXX','464',15403,'Dettes sur acquisitions valeurs mobilières de placement et instruments financiers dérivés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15406,'NSCF','THIRDPARTY','XXXXXX','465',15403,'Créances sur cessions valeurs mobilières de placement et instruments financiers dérivés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15407,'NSCF','THIRDPARTY','XXXXXX','467',15403,'Autres comptes débiteurs ou créditeurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15408,'NSCF','THIRDPARTY','XXXXXX','468',15403,'Diverses charges à payer et produits à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15409,'NSCF','THIRDPARTY','XXXXXX','4686',15408,'Diverses charges à payer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15410,'NSCF','THIRDPARTY','XXXXXX','4687',15408,'Divers produits à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15411,'NSCF','THIRDPARTY','XXXXXX','47',15302,'Comptes transitoires ou d''attente','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15412,'NSCF','THIRDPARTY','XXXXXX','471',15411,'Compte d''attente 1','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15413,'NSCF','THIRDPARTY','XXXXXX','472',15411,'Compte d''attente 2','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15414,'NSCF','THIRDPARTY','XXXXXX','473',15411,'Compte d''attente 3','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15415,'NSCF','THIRDPARTY','XXXXXX','474',15411,'Compte d''attente 4','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15416,'NSCF','THIRDPARTY','XXXXXX','475',15411,'Compte d''attente 5','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15417,'NSCF','THIRDPARTY','XXXXXX','476',15411,'Différence de conversion - Actif','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15418,'NSCF','THIRDPARTY','XXXXXX','4761',15417,'Diminution des créances','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15419,'NSCF','THIRDPARTY','XXXXXX','4762',15417,'Augmentation des dettes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15420,'NSCF','THIRDPARTY','XXXXXX','4768',15417,'Différences compensées par couverture de change','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15421,'NSCF','THIRDPARTY','XXXXXX','477',15411,'Différences de conversion - Passif','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15422,'NSCF','THIRDPARTY','XXXXXX','4771',15421,'Augmentation des créances','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15423,'NSCF','THIRDPARTY','XXXXXX','4772',15421,'Diminution des dettes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15424,'NSCF','THIRDPARTY','XXXXXX','4778',15421,'Différences compensées par couverture de change','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15425,'NSCF','THIRDPARTY','XXXXXX','478',15411,'Autres comptes transitoires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15426,'NSCF','THIRDPARTY','XXXXXX','48',15302,'Charges ou produits constatés d''avance et provisions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15427,'NSCF','THIRDPARTY','XXXXXX','481',15426,'Provisions, passifs courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15428,'NSCF','THIRDPARTY','XXXXXX','486',15426,'Charges constatées d''avance','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15429,'NSCF','THIRDPARTY','XXXXXX','487',15426,'Produits constatés d''avance','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15430,'NSCF','THIRDPARTY','XXXXXX','49',15302,'Pertes de valeur sur comptes de tiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15431,'NSCF','THIRDPARTY','XXXXXX','491',15430,'Pertes de valeur sur comptes de clients','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15432,'NSCF','THIRDPARTY','XXXXXX','495',15430,'Pertes de valeur sur comptes du groupe et sur associés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15433,'NSCF','THIRDPARTY','XXXXXX','4951',15432,'Pertes de valeur sur comptes du groupe','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15434,'NSCF','THIRDPARTY','XXXXXX','4955',15432,'Pertes de valeur sur comptes courants des associés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15435,'NSCF','THIRDPARTY','XXXXXX','496',15430,'Pertes de valeur sur comptes de débiteurs divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15436,'NSCF','THIRDPARTY','XXXXXX','4962',15435,'Créances sur cessions d''immobilisations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15437,'NSCF','THIRDPARTY','XXXXXX','4965',15435,'Créances sur cessions de valeurs mobilières de placement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15438,'NSCF','THIRDPARTY','XXXXXX','4967',15435,'Autres comptes débiteurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15439,'NSCF','THIRDPARTY','XXXXXX','498',15430,'Pertes de valeur sur comptes de débiteurs divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15440,'NSCF','FINAN','XXXXXX','5',0,'COMPTES FINANCIERS','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15441,'NSCF','FINAN','XXXXXX','50',15440,'Valeurs mobilières de placement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15442,'NSCF','FINAN','XXXXXX','501',15441,'Parts dans des entreprises liées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15443,'NSCF','FINAN','XXXXXX','502',15441,'Actions propres','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15444,'NSCF','FINAN','XXXXXX','503',15441,'Autres actions ou titres conférant un droit de propriété','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15445,'NSCF','FINAN','XXXXXX','5031',15444,'Titres cotés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15446,'NSCF','FINAN','XXXXXX','5032',15444,'Titres non cotés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15447,'NSCF','FINAN','XXXXXX','506',15441,'Obligations, bons du Trésor et bons de caisse à court terme','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15448,'NSCF','FINAN','XXXXXX','5061',15447,'Obligations à court termes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15449,'NSCF','FINAN','XXXXXX','5062',15447,'Bons du trésor à court terme','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15450,'NSCF','FINAN','XXXXXX','5063',15447,'Bons de caisse à court terme','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15451,'NSCF','FINAN','XXXXXX','508',15441,'Autres valeurs mobilières de placement et créances assimilées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15452,'NSCF','FINAN','XXXXXX','5088',15451,'Autres valeurs mobilières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15453,'NSCF','FINAN','XXXXXX','5082',15451,'Bons de souscription','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15454,'NSCF','FINAN','XXXXXX','5083',15451,'Intérêts courus sur obligations, bons et valeurs assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15455,'NSCF','FINAN','XXXXXX','509',15441,'Versements restant à effectuer sur valeurs mobilières de placement non libérées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15456,'NSCF','FINAN','XXXXXX','51',15440,'Banques, établissements financiers et assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15457,'NSCF','FINAN','XXXXXX','511',15456,'Valeurs à l''encaissement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15458,'NSCF','FINAN','XXXXXX','5111',15457,'Coupons échus à l''encaissement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15459,'NSCF','FINAN','XXXXXX','5112',15457,'Chèques à encaisser','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15460,'NSCF','FINAN','XXXXXX','5113',15457,'Effets à l''encaissement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15461,'NSCF','FINAN','XXXXXX','5114',15457,'Effets à l''escompte','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15462,'NSCF','FINAN','XXXXXX','5115',15457,'Cartes bancaires à l''encaissement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15463,'NSCF','FINAN','XXXXXX','512',15456,'Banques comptes courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15464,'NSCF','FINAN','XXXXXX','514',15456,'Chèques postaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15465,'NSCF','FINAN','XXXXXX','515',15456,'Caisses du Trésor et des établissements publics','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15466,'NSCF','FINAN','XXXXXX','516',15456,'Sociétés de bourse','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15467,'NSCF','FINAN','XXXXXX','517',15456,'Autres organismes financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15468,'NSCF','FINAN','XXXXXX','518',15456,'Intérêts courus','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15469,'NSCF','FINAN','XXXXXX','5181',15468,'Intérêts courus à payer','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15470,'NSCF','FINAN','XXXXXX','5188',15468,'Intérêts courus à recevoir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15471,'NSCF','FINAN','XXXXXX','519',15456,'Concours bancaires courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15472,'NSCF','FINAN','XXXXXX','5191',15471,'Crédit de mobilisation de créances commerciales (CMCC)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15473,'NSCF','FINAN','XXXXXX','5192',15471,'Crédit documentaire','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15474,'NSCF','FINAN','XXXXXX','5193',15471,'Mobilisation de créances nées à l''étranger','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15475,'NSCF','FINAN','XXXXXX','5198',15471,'Intérêts courus sur concours bancaires courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15476,'NSCF','FINAN','XXXXXX','52',15440,'Instruments de trésorerie','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15477,'NSCF','FINAN','XXXXXX','53',15440,'Caisse','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15478,'NSCF','FINAN','XXXXXX','54',15440,'Régies d''avance et accréditifs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15479,'NSCF','FINAN','XXXXXX','541',15478,'Régie d''avance','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15480,'NSCF','FINAN','XXXXXX','542',15478,'Accréditifs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15481,'NSCF','FINAN','XXXXXX','58',15440,'Virements internes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15482,'NSCF','FINAN','XXXXXX','581',15481,'Virements de fonds','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15483,'NSCF','FINAN','XXXXXX','588',15481,'Autres virements internes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15484,'NSCF','FINAN','XXXXXX','59',15440,'Pertes de valeur des actifs financiers courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15485,'NSCF','FINAN','XXXXXX','591',15484,'Pertes de valeur des dépôts en banque et autres établissements financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15486,'NSCF','FINAN','XXXXXX','594',15484,'Pertes de valeur sur des régies d''avance et accréditifs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15487,'NSCF','EXPENSE','XXXXXX','6',0,'COMPTES DE CHARGES','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15488,'NSCF','EXPENSE','XXXXXX','60',15487,'Achats consommées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15489,'NSCF','EXPENSE','XXXXXX','600',15488,'Achats de marchandises vendues','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15490,'NSCF','EXPENSE','XXXXXX','601',15488,'Matières premières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15491,'NSCF','EXPENSE','XXXXXX','602',15488,'Autres approvisionnements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15492,'NSCF','EXPENSE','XXXXXX','603',15488,'Variations des stocks ','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15493,'NSCF','EXPENSE','XXXXXX','6030',15492,'Variations des stocks de marchandises','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15494,'NSCF','EXPENSE','XXXXXX','6031',15492,'Variations des stocks de matières premières et fournitures','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15495,'NSCF','EXPENSE','XXXXXX','6032',15492,'Variations des stocks d''autres approvisionnements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15496,'NSCF','EXPENSE','XXXXXX','604',15488,'Achats d''études et prestations de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15497,'NSCF','EXPENSE','XXXXXX','605',15488,'Achats de matériel, équipements et travaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15498,'NSCF','EXPENSE','XXXXXX','607',15488,'Achats non stockés de matière et fournitures','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15499,'NSCF','EXPENSE','XXXXXX','6071',15498,'Fournitures non stockables (eau, énergie)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15500,'NSCF','EXPENSE','XXXXXX','6073',15498,'Fournitures d''entretien et de petit équipement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15501,'NSCF','EXPENSE','XXXXXX','6074',15498,'Fournitures administratives','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15502,'NSCF','EXPENSE','XXXXXX','6078',15498,'Autres matières et fournitures','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15503,'NSCF','EXPENSE','XXXXXX','608',15488,'Frais accessoires sur achats (FAA)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15504,'NSCF','EXPENSE','XXXXXX','609',15488,'Rabais, remises et ristournes obtenus sur achats','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15505,'NSCF','EXPENSE','XXXXXX','61',15487,'Services extérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15506,'NSCF','EXPENSE','XXXXXX','611',15505,'Sous-traitance générale','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15507,'NSCF','EXPENSE','XXXXXX','613',15505,'Locations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15508,'NSCF','EXPENSE','XXXXXX','6132',15507,'Locations immobilières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15509,'NSCF','EXPENSE','XXXXXX','6135',15507,'Locations mobilières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15510,'NSCF','EXPENSE','XXXXXX','6136',15507,'Malis sur emballages','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15511,'NSCF','EXPENSE','XXXXXX','614',15505,'Charges locatives et charges de copropriété','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15512,'NSCF','EXPENSE','XXXXXX','615',15505,'Entretien, réparations et maintenance','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15513,'NSCF','EXPENSE','XXXXXX','6152',15512,'Sur biens immobiliers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15514,'NSCF','EXPENSE','XXXXXX','6155',15512,'Sur biens mobiliers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15515,'NSCF','EXPENSE','XXXXXX','6156',15512,'Maintenance','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15516,'NSCF','EXPENSE','XXXXXX','616',15505,'Primes d''assurances','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15517,'NSCF','EXPENSE','XXXXXX','6161',15516,'Multirisques','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15518,'NSCF','EXPENSE','XXXXXX','6162',15516,'Assurance obligatoire dommage construction','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15519,'NSCF','EXPENSE','XXXXXX','6163',15516,'Assurance-transport','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15520,'NSCF','EXPENSE','XXXXXX','61636',15519,'sur achats','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15521,'NSCF','EXPENSE','XXXXXX','61637',15519,'sur ventes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15522,'NSCF','EXPENSE','XXXXXX','61638',15519,'sur autres biens','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15523,'NSCF','EXPENSE','XXXXXX','6166',15516,'Assurances véhicules','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15524,'NSCF','EXPENSE','XXXXXX','6168',15516,'Autres assurances','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15525,'NSCF','EXPENSE','XXXXXX','617',15505,'Etudes et recherches','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15526,'NSCF','EXPENSE','XXXXXX','618',15505,'Documentation et divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15527,'NSCF','EXPENSE','XXXXXX','6181',15526,'Documentation générale','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15528,'NSCF','EXPENSE','XXXXXX','6183',15526,'Documentation technique','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15529,'NSCF','EXPENSE','XXXXXX','6185',15526,'Frais de colloques, séminaires, conférences','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15530,'NSCF','EXPENSE','XXXXXX','619',15505,'Rabais, remises et ristournes obtenus sur services extérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15531,'NSCF','EXPENSE','XXXXXX','62',15487,'Autres services extérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15532,'NSCF','EXPENSE','XXXXXX','621',15531,'Personnel extérieur à l''entreprise','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15533,'NSCF','EXPENSE','XXXXXX','6211',15532,'Personnel intérimaire','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15534,'NSCF','EXPENSE','XXXXXX','6214',15532,'Personnel détaché ou prêté à l''entreprise','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15535,'NSCF','EXPENSE','XXXXXX','622',15531,'Rémunérations d''intermédiaires et honoraires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15536,'NSCF','EXPENSE','XXXXXX','6221',15535,'Commissions et courtages sur achats','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15537,'NSCF','EXPENSE','XXXXXX','6222',15535,'Commissions et courtages sur ventes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15538,'NSCF','EXPENSE','XXXXXX','6224',15535,'Rémunérations des transitaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15539,'NSCF','EXPENSE','XXXXXX','6225',15535,'Rémunérations d''affacturage (mémoire)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15540,'NSCF','EXPENSE','XXXXXX','6226',15535,'Honoraires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15541,'NSCF','EXPENSE','XXXXXX','6227',15535,'Frais d''actes et de contentieux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15542,'NSCF','EXPENSE','XXXXXX','6228',15535,'Divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15543,'NSCF','EXPENSE','XXXXXX','624',15531,'Transports de biens et transports collectifs du personnel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15544,'NSCF','EXPENSE','XXXXXX','6241',15543,'Transports sur achats','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15545,'NSCF','EXPENSE','XXXXXX','6242',15543,'Transports sur ventes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15546,'NSCF','EXPENSE','XXXXXX','6243',15543,'Transports entre établissements ou chantiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15547,'NSCF','EXPENSE','XXXXXX','6244',15543,'Transports administratifs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15548,'NSCF','EXPENSE','XXXXXX','6247',15543,'Transports collectifs du personnel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15549,'NSCF','EXPENSE','XXXXXX','6248',15543,'Divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15550,'NSCF','EXPENSE','XXXXXX','625',15531,'Déplacements, missions et réceptions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15551,'NSCF','EXPENSE','XXXXXX','6251',15550,'Voyages et déplacements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15552,'NSCF','EXPENSE','XXXXXX','6255',15550,'Frais de déménagement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15553,'NSCF','EXPENSE','XXXXXX','6256',15550,'Missions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15554,'NSCF','EXPENSE','XXXXXX','6257',15550,'Réceptions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15555,'NSCF','EXPENSE','XXXXXX','626',15531,'Frais postaux et de télécommunications','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15556,'NSCF','EXPENSE','XXXXXX','627',15531,'Services bancaires et assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15557,'NSCF','EXPENSE','XXXXXX','6271',15556,'Frais sur titres (achat, vente, garde)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15558,'NSCF','EXPENSE','XXXXXX','6272',15556,'Commissions et frais sur émission d''emprunts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15559,'NSCF','EXPENSE','XXXXXX','6275',15556,'Frais sur effets','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15560,'NSCF','EXPENSE','XXXXXX','6276',15556,'Location de coffres','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15561,'NSCF','EXPENSE','XXXXXX','6278',15556,'Autres frais et commissions sur prestations de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15562,'NSCF','EXPENSE','XXXXXX','628',15531,'Cotisations et divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15563,'NSCF','EXPENSE','XXXXXX','6281',15562,'Concours divers (cotisations)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15564,'NSCF','EXPENSE','XXXXXX','6284',15562,'Frais de recrutement de personnel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15565,'NSCF','EXPENSE','XXXXXX','629',15531,'Rabais, remises et ristournes obtenus sur autres services extérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15566,'NSCF','EXPENSE','XXXXXX','63',15487,'Charges de personnel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15567,'NSCF','EXPENSE','XXXXXX','631',15566,'Rémunérations du personnel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15568,'NSCF','EXPENSE','XXXXXX','6311',15567,'Salaires, appointements','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15569,'NSCF','EXPENSE','XXXXXX','6312',15567,'Congés payés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15570,'NSCF','EXPENSE','XXXXXX','6313',15567,'Primes et gratifications','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15571,'NSCF','EXPENSE','XXXXXX','6314',15567,'Indemnités et avantages divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15572,'NSCF','EXPENSE','XXXXXX','6316',15567,'Contributions aux œuvres sociales','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15573,'NSCF','EXPENSE','XXXXXX','634',15566,'Rémunération de l''exploitant individuel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15574,'NSCF','EXPENSE','XXXXXX','635',15566,'Cotisations aux organismes sociaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15575,'NSCF','EXPENSE','XXXXXX','6351',15574,'Cotisations CNAS','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15576,'NSCF','EXPENSE','XXXXXX','6352',15574,'Cotisations aux mutuelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15577,'NSCF','EXPENSE','XXXXXX','6353',15574,'Cotisations aux caisses de retraites','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15578,'NSCF','EXPENSE','XXXXXX','6358',15574,'Cotisations aux autres organismes sociaux (CACOBATH)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15579,'NSCF','EXPENSE','XXXXXX','636',15566,'Charges sociales de l''exploitant individuel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15580,'NSCF','EXPENSE','XXXXXX','637',15566,'Autres charges sociales','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15581,'NSCF','EXPENSE','XXXXXX','6371',15580,'Prestations directes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15582,'NSCF','EXPENSE','XXXXXX','6372',15580,'Versements aux comités d''entreprise et d''établissement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15583,'NSCF','EXPENSE','XXXXXX','6374',15580,'Versements aux autres œuvres sociales','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15584,'NSCF','EXPENSE','XXXXXX','6375',15580,'Médecine du travail, pharmacie','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15585,'NSCF','EXPENSE','XXXXXX','638',15566,'Autres charges de personnel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15586,'NSCF','EXPENSE','XXXXXX','64',15487,'Impôts, taxes et versements assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15587,'NSCF','EXPENSE','XXXXXX','641',15586,'Impôts, taxes et versements assimilés sur rémunérations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15588,'NSCF','EXPENSE','XXXXXX','6411',15587,'Taxe sur les salaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15589,'NSCF','EXPENSE','XXXXXX','6413',15587,'Participation des employeurs à la formation professionnelle','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15590,'NSCF','EXPENSE','XXXXXX','6418',15587,'Autres impôts, taxes et versements assimilés sur rémunérations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15591,'NSCF','EXPENSE','XXXXXX','642',15586,'Impôts et taxes non récupérables sur le chiffre d''affaire','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15592,'NSCF','EXPENSE','XXXXXX','6421',15591,'Taxe sur l''activité professionnelle (TAP)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15593,'NSCF','EXPENSE','XXXXXX','6422',15591,'TVA non récupérable','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15594,'NSCF','EXPENSE','XXXXXX','6423',15591,'Droits de timbre et d''enregistrement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15595,'NSCF','EXPENSE','XXXXXX','6428',15591,'Autres impôts et taxes non récupérables sur le chiffre d''affaire','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15596,'NSCF','EXPENSE','XXXXXX','645',15586,'Autres impôts et taxes (hors impôts sur le résultat)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15597,'NSCF','EXPENSE','XXXXXX','6451',15596,'Taxe foncière','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15598,'NSCF','EXPENSE','XXXXXX','6452',15596,'Taxe d''assainissement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15599,'NSCF','EXPENSE','XXXXXX','6453',15596,'Droits de douane','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15600,'NSCF','EXPENSE','XXXXXX','6454',15596,'Vignettes automobiles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15601,'NSCF','EXPENSE','XXXXXX','6456',15596,'Taxe écologique','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15602,'NSCF','EXPENSE','XXXXXX','6458',15596,'Autres droits et taxes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15603,'NSCF','EXPENSE','XXXXXX','65',15487,'Autres charges opérationnelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15604,'NSCF','EXPENSE','XXXXXX','651',15603,'Redevances pour concessions, brevets, licences, logiciels et accès similaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15605,'NSCF','EXPENSE','XXXXXX','6511',15604,'Redevances pour concessions, brevets, licences, marques, procédés, logiciels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15606,'NSCF','EXPENSE','XXXXXX','6516',15604,'Droits d''auteur et de reproduction','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15607,'NSCF','EXPENSE','XXXXXX','6518',15604,'Autres droits et valeurs similaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15608,'NSCF','EXPENSE','XXXXXX','652',15603,'Moins-values sur sorties d''actifs immobilisés non financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15609,'NSCF','EXPENSE','XXXXXX','653',15603,'Jetons de présence','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15610,'NSCF','EXPENSE','XXXXXX','654',15603,'Pertes sur créances irrécouvrables','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15611,'NSCF','EXPENSE','XXXXXX','6541',15610,'Pertes sur créances de l''exercice','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15612,'NSCF','EXPENSE','XXXXXX','6544',15610,'Pertes sur créances des exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15613,'NSCF','EXPENSE','XXXXXX','655',15603,'Quote-part de résultat sur opérations faites en commun','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15614,'NSCF','EXPENSE','XXXXXX','6551',15613,'Quote-part de résultats de groupement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15615,'NSCF','EXPENSE','XXXXXX','6558',15613,'Amortissements de caducité des immobilisations mises en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15616,'NSCF','EXPENSE','XXXXXX','6559',15613,'Dotations aux provisions des immobilisations mises en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15617,'NSCF','EXPENSE','XXXXXX','656',15603,'Amendes et pénalités, subventions accordées dons et libéralités','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15618,'NSCF','EXPENSE','XXXXXX','6561',15617,'Amendes et pénalité','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15619,'NSCF','EXPENSE','XXXXXX','6562',15617,'Subventions accordées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15620,'NSCF','EXPENSE','XXXXXX','6563',15617,'Dons et libéralités','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15621,'NSCF','EXPENSE','XXXXXX','657',15603,'Charges exceptionnelles de gestion courante','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15622,'NSCF','EXPENSE','XXXXXX','658',15603,'Autres charges de gestion courante','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15623,'NSCF','EXPENSE','XXXXXX','66',15487,'Charges financières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15624,'NSCF','EXPENSE','XXXXXX','661',15623,'Charges d''intérêts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15625,'NSCF','EXPENSE','XXXXXX','6611',15624,'Intérêts des emprunts et dettes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15626,'NSCF','EXPENSE','XXXXXX','66116',15625,'Intérêts des emprunts et dettes assimilées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15627,'NSCF','EXPENSE','XXXXXX','66117',15625,'Intérêts des emprunts et dettes rattachées à des participations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15628,'NSCF','EXPENSE','XXXXXX','6615',15624,'Intérêts des comptes courants et des dépôts créditeurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15629,'NSCF','EXPENSE','XXXXXX','6616',15624,'Intérêts bancaires et sur opérations de financement (escompte,…)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15630,'NSCF','EXPENSE','XXXXXX','6617',15624,'Intérêts des obligations cautionnées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15631,'NSCF','EXPENSE','XXXXXX','6618',15624,'Intérêts des autres dettes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15632,'NSCF','EXPENSE','XXXXXX','66181',15631,'Intérêts des dettes commerciales','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15633,'NSCF','EXPENSE','XXXXXX','66188',15631,'Intérêts des dettes diverses','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15634,'NSCF','EXPENSE','XXXXXX','664',15623,'Pertes sur créances liées à des participations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15635,'NSCF','EXPENSE','XXXXXX','665',15623,'Ecarts d''évaluation sur actifs financiers Moins-values','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15636,'NSCF','EXPENSE','XXXXXX','6651',15635,'Ecarts d''évaluation - moins-values sur des parts dans les entreprises liées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15637,'NSCF','EXPENSE','XXXXXX','6653',15635,'Ecarts d''évaluation - moins-values sur autres titres conférant un droit de propriété','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15638,'NSCF','EXPENSE','XXXXXX','6656',15635,'Ecarts d''évaluation - moins-values sur obligations, bons du trésor et bons de caisse à court terme','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15639,'NSCF','EXPENSE','XXXXXX','6658',15635,'Ecarts d''évaluation - moins-values sur autres valeurs mobilières et autres créances assimilées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15640,'NSCF','EXPENSE','XXXXXX','666',15623,'Pertes de change','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15641,'NSCF','EXPENSE','XXXXXX','667',15623,'Pertes nettes sur cessions d''actifs financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15642,'NSCF','EXPENSE','XXXXXX','6671',15641,'Pertes nettes sur cession des parts dans les entreprises liées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15643,'NSCF','EXPENSE','XXXXXX','6672',15641,'Pertes nettes sur cession d''actions propres','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15644,'NSCF','EXPENSE','XXXXXX','6673',15641,'Pertes nettes sur cession d''autres titres conférant un droit de propriété','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15645,'NSCF','EXPENSE','XXXXXX','6676',15641,'Pertes nettes sur cession d''obligations, bons du trésor et bons de caisse à court terme','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15646,'NSCF','EXPENSE','XXXXXX','6678',15641,'Pertes nettes sur cession des autres valeurs mobilières et autres créances assimilées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15647,'NSCF','EXPENSE','XXXXXX','668',15623,'Autres charges financières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15648,'NSCF','EXPENSE','XXXXXX','67',15487,'Eléments extraordinaires - charges','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15649,'NSCF','EXPENSE','XXXXXX','672',15648,'Valeur résiduelle des immobilisations cédées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15650,'NSCF','EXPENSE','XXXXXX','676',15648,'Charges sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15651,'NSCF','EXPENSE','XXXXXX','6760',15650,'Consommations sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15652,'NSCF','EXPENSE','XXXXXX','6761',15650,'Services sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15653,'NSCF','EXPENSE','XXXXXX','6762',15650,'Autres services sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15654,'NSCF','EXPENSE','XXXXXX','6763',15650,'Charges de personnel sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15655,'NSCF','EXPENSE','XXXXXX','6764',15650,'Impôts et taxes sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15656,'NSCF','EXPENSE','XXXXXX','6765',15650,'Autres charges opérationnelles sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15657,'NSCF','EXPENSE','XXXXXX','6766',15650,'Charges financières sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15658,'NSCF','EXPENSE','XXXXXX','6768',15650,'Dotations aux amortissements, provisions et pertes de valeurs sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15659,'NSCF','EXPENSE','XXXXXX','6769',15650,'Impôts sur les bénéfices sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15660,'NSCF','EXPENSE','XXXXXX','678',15648,'Autres éléments extraordinaires - charges','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15661,'NSCF','EXPENSE','XXXXXX','6783',15660,'Malis provenant du rachat par l''entreprise d''actions et obligations émises par elle-même','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15662,'NSCF','EXPENSE','XXXXXX','6788',15660,'Autres charges extraordinaires diverses','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15663,'NSCF','EXPENSE','XXXXXX','68',15487,'Dotations aux amortissements, provisions et pertes de valeur','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15664,'NSCF','EXPENSE','XXXXXX','681',15663,'Dotations aux amortissements, provisions et pertes de valeur, actifs non courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15665,'NSCF','EXPENSE','XXXXXX','6811',15664,'Dotations aux amortissements, provisions et pertes de valeur sur immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15666,'NSCF','EXPENSE','XXXXXX','68111',15665,'Dotations aux amortissements et provisions et pertes de valeur sur immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15667,'NSCF','EXPENSE','XXXXXX','68112',15665,'Pertes de valeur sur immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15668,'NSCF','EXPENSE','XXXXXX','6812',15664,'Dotations aux amortissements, provisions et pertes de valeur sur immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15669,'NSCF','EXPENSE','XXXXXX','68121',15668,'Dotations aux amortissements et provisions et immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15670,'NSCF','EXPENSE','XXXXXX','68122',15668,'Pertes de valeur sur immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15671,'NSCF','EXPENSE','XXXXXX','68123',15668,'Pertes de valeur sur les investissements en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15672,'NSCF','EXPENSE','XXXXXX','68126',15668,'Pertes de valeur sur immobilisations financières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15673,'NSCF','EXPENSE','XXXXXX','682',15663,'Dotations aux amortissements, provisions et pertes de valeur des biens mis en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15674,'NSCF','EXPENSE','XXXXXX','6821',15673,'Dotations aux amortissements, des biens mis en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15675,'NSCF','EXPENSE','XXXXXX','6822',15673,'Dotations aux provisions des biens mis-en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15676,'NSCF','EXPENSE','XXXXXX','6828',15673,'Pertes de valeur des biens mis en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15677,'NSCF','EXPENSE','XXXXXX','685',15663,'Dotations aux amortissements, provisions et pertes de valeur, actifs courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15678,'NSCF','EXPENSE','XXXXXX','6853',15677,'Dotations aux pertes de valeur sur stocks','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15679,'NSCF','EXPENSE','XXXXXX','6854',15677,'Dotations aux pertes de valeur sur créances','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15680,'NSCF','EXPENSE','XXXXXX','6855',15677,'Dotations aux provisions et pertes de valeur sur comptes financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15681,'NSCF','EXPENSE','XXXXXX','686',15663,'Dotations aux amortissements, provisions et pertes de valeur, éléments financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15682,'NSCF','EXPENSE','XXXXXX','6861',15681,'Dotations aux amortissements des primes de remboursement des obligations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15683,'NSCF','EXPENSE','XXXXXX','6865',15681,'Dotations aux provisions pour risques et charges financières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15684,'NSCF','EXPENSE','XXXXXX','6866',15681,'Dotations aux provisions pour dépréciations des éléments financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15685,'NSCF','EXPENSE','XXXXXX','68662',15684,'Dotations aux provisions pour dépréciations des immobilisations financières','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15686,'NSCF','EXPENSE','XXXXXX','68665',15684,'Dotations aux provisions pour les valeurs mobilières de placement','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15687,'NSCF','EXPENSE','XXXXXX','6868',15681,'Autres dotations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15688,'NSCF','EXPENSE','XXXXXX','69',15487,'Impôts sur les résultats et assimilés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15689,'NSCF','EXPENSE','XXXXXX','692',15688,'Imposition différée actif','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15690,'NSCF','EXPENSE','XXXXXX','693',15688,'Imposition différée passif','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15691,'NSCF','EXPENSE','XXXXXX','695',15688,'Impôts sur les bénéfices basés sur les résultats des activités ordinaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15692,'NSCF','EXPENSE','XXXXXX','698',15688,'Autres impôts sur les résultats','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15693,'NSCF','INCOME','XXXXXX','7',0,'COMPTES DE PRODUITS','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15694,'NSCF','INCOME','XXXXXX','70',15693,'Ventes de marchandises et de produits fabriqués, ventes de prestations de services et produits annexes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15695,'NSCF','INCOME','XXXXXX','700',15694,'Ventes de marchandises','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15696,'NSCF','INCOME','XXXXXX','701',15694,'Ventes de produits finis','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15697,'NSCF','INCOME','XXXXXX','702',15694,'Ventes de produits intermédiaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15698,'NSCF','INCOME','XXXXXX','703',15694,'Ventes de produits résiduels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15699,'NSCF','INCOME','XXXXXX','704',15694,'Ventes de travaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15700,'NSCF','INCOME','XXXXXX','705',15694,'Ventes d''études ','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15701,'NSCF','INCOME','XXXXXX','706',15694,'Autres prestations de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15702,'NSCF','INCOME','XXXXXX','708',15694,'Produits des activités annexes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15703,'NSCF','INCOME','XXXXXX','7081',15702,'Produits des services exploités dans l''intérêt du personnel','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15704,'NSCF','INCOME','XXXXXX','7082',15702,'Commissions et courtages','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15705,'NSCF','INCOME','XXXXXX','7083',15702,'Locations diverses','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15706,'NSCF','INCOME','XXXXXX','7084',15702,'Mise à disposition de personnel facturée','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15707,'NSCF','INCOME','XXXXXX','7085',15702,'Ports et frais accessoires facturés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15708,'NSCF','INCOME','XXXXXX','7086',15702,'Bonis sur reprises d''emballages consignés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15709,'NSCF','INCOME','XXXXXX','7087',15702,'Bonifications obtenues des clients et primes sur ventes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15710,'NSCF','INCOME','XXXXXX','7088',15702,'Autres produits d''activités annexes (cessions d''approvisionnements)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15711,'NSCF','INCOME','XXXXXX','709',15694,'Rabais, remises et ristournes accordés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15712,'NSCF','INCOME','XXXXXX','7090',15711,'R.RR, accordés sur ventes de marchandises','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15713,'NSCF','INCOME','XXXXXX','7091',15711,'R.RR, accordés sur ventes de produits finis','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15714,'NSCF','INCOME','XXXXXX','7092',15711,'R.RR, accordés sur ventes de produits intermédiaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15715,'NSCF','INCOME','XXXXXX','7094',15711,'R.RR, accordés sur ventes de travaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15716,'NSCF','INCOME','XXXXXX','7095',15711,'R.RR, accordés sur ventes d''études ','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15717,'NSCF','INCOME','XXXXXX','7096',15711,'R.RR, accordés sur autres prestations de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15718,'NSCF','INCOME','XXXXXX','7098',15711,'R.RR, accordés sur produits des activités annexes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15719,'NSCF','INCOME','XXXXXX','72',15693,'Production stockée ou déstockée','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15720,'NSCF','INCOME','XXXXXX','723',15719,'Variation de stocks d''encours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15721,'NSCF','INCOME','XXXXXX','7233',15720,'Variation des en-cours de production de biens','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15722,'NSCF','INCOME','XXXXXX','72331',15721,'Produits en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15723,'NSCF','INCOME','XXXXXX','72335',15721,'Travaux en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15724,'NSCF','INCOME','XXXXXX','7234',15720,'Variation des en-cours de production de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15725,'NSCF','INCOME','XXXXXX','72341',15724,'Etudes en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15726,'NSCF','INCOME','XXXXXX','72345',15724,'Autres prestations de services en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15727,'NSCF','INCOME','XXXXXX','724',15719,'Variation de stocks de produits','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15728,'NSCF','INCOME','XXXXXX','7241',15727,'Variation de stocks des produits intermédiaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15729,'NSCF','INCOME','XXXXXX','7245',15727,'Variation de stocks des produits finis','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15730,'NSCF','INCOME','XXXXXX','7248',15727,'Variation des stocks des produits résiduels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15731,'NSCF','INCOME','XXXXXX','73',15693,'Production immobilisée','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15732,'NSCF','INCOME','XXXXXX','731',15731,'Production immobilisée d''actifs incorporels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15733,'NSCF','INCOME','XXXXXX','732',15731,'Production immobilisée d''actifs corporels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15734,'NSCF','INCOME','XXXXXX','74',15693,'Subventions d''exploitation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15735,'NSCF','INCOME','XXXXXX','741',15734,'Subventions d''équilibre','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15736,'NSCF','INCOME','XXXXXX','748',15734,'Autres subventions d''exploitation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15737,'NSCF','INCOME','XXXXXX','75',15693,'Autres produits opérationnels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15738,'NSCF','INCOME','XXXXXX','751',15737,'Redevances pour concessions, brevets, licences, logiciels et valeurs similaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15739,'NSCF','INCOME','XXXXXX','7511',15738,'Redevances pour concessions, brevets, licences, logiciels, marques, procédés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15740,'NSCF','INCOME','XXXXXX','7516',15738,'Droits d''auteur et de reproduction','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15741,'NSCF','INCOME','XXXXXX','7518',15738,'Autres droits et valeurs similaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15742,'NSCF','INCOME','XXXXXX','752',15737,'Plus-value sur sortie d''actifs immobilisés non financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15743,'NSCF','INCOME','XXXXXX','753',15737,'Jetons de présence et rémunérations d''administrateurs ou de gérants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15744,'NSCF','INCOME','XXXXXX','754',15737,'Quotes-parts de subventions d''investissements virés au résultat de l''exercice','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15745,'NSCF','INCOME','XXXXXX','755',15737,'Quotes-parts de résultat sur opérations faites en commun','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15746,'NSCF','INCOME','XXXXXX','7551',15745,'Quote-part de perte transférée (comptabilité du gérant)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15747,'NSCF','INCOME','XXXXXX','7555',15745,'Quote-part de bénéfice attribuée (comptabilité des associés non-gérants)','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15748,'NSCF','INCOME','XXXXXX','756',15737,'Rentrées sur créances amorties','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15749,'NSCF','INCOME','XXXXXX','757',15737,'Produits exceptionnels sur opérations de gestion','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15750,'NSCF','INCOME','XXXXXX','758',15737,'Autres produits de gestion courante','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15751,'NSCF','INCOME','XXXXXX','76',15693,'Produits financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15752,'NSCF','INCOME','XXXXXX','761',15751,'Produits des participations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15753,'NSCF','INCOME','XXXXXX','7611',15752,'Revenus des titres de participation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15754,'NSCF','INCOME','XXXXXX','7616',15752,'Revenus sur autres formes de participation','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15755,'NSCF','INCOME','XXXXXX','7617',15752,'Revenus des créances rattachées à des participations','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15756,'NSCF','INCOME','XXXXXX','762',15751,'Revenus des actifs financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15757,'NSCF','INCOME','XXXXXX','7621',15756,'Revenus des titres immobilisés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15758,'NSCF','INCOME','XXXXXX','7626',15756,'Revenus des prêts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15759,'NSCF','INCOME','XXXXXX','7627',15756,'Revenus des créances immobilisées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15760,'NSCF','INCOME','XXXXXX','763',15751,'Revenus de créances','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15761,'NSCF','INCOME','XXXXXX','7631',15760,'Revenus des créances commerciales','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15762,'NSCF','INCOME','XXXXXX','7638',15760,'Revenus des créances diverses','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15763,'NSCF','INCOME','XXXXXX','765',15751,'Ecart d''évaluation sur actifs financiers - plus values','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15764,'NSCF','INCOME','XXXXXX','766',15751,'Gains de change','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15765,'NSCF','INCOME','XXXXXX','767',15751,'Produits nets sur cessions d''actifs financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15766,'NSCF','INCOME','XXXXXX','7671',15765,'Profits nets sur cession des part dans les entreprises liées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15767,'NSCF','INCOME','XXXXXX','7672',15765,'Profits nets sur cession d''actions propres','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15768,'NSCF','INCOME','XXXXXX','7673',15765,'Profits nets sur cession des autres titres conférant un droit de propriété','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15769,'NSCF','INCOME','XXXXXX','7676',15765,'Profits nets sur cession d''obligations, bons du trésor et bons de caisse à court terme','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15770,'NSCF','INCOME','XXXXXX','7678',15765,'Profits nets sur cession des autres valeurs mobilières et créances assimilées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15771,'NSCF','INCOME','XXXXXX','768',15751,'Autres produits financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15772,'NSCF','INCOME','XXXXXX','77',15693,'Eléments extraordinaires - produits','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15773,'NSCF','INCOME','XXXXXX','770',15772,'Produits sur exercices antérieurs','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15774,'NSCF','INCOME','XXXXXX','7700',15773,'Produits sur exercices antérieurs ventes de marchandises','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15775,'NSCF','INCOME','XXXXXX','7701',15773,'Produits sur exercices antérieurs ventes de produits finis','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15776,'NSCF','INCOME','XXXXXX','7702',15773,'Produits sur exercices antérieurs ventes de produits intermédiaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15777,'NSCF','INCOME','XXXXXX','7703',15773,'Produits sur exercices antérieurs ventes de produits résiduels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15778,'NSCF','INCOME','XXXXXX','7704',15773,'Produits sur exercices antérieurs ventes de travaux','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15779,'NSCF','INCOME','XXXXXX','7705',15773,'Produits sur exercices antérieurs ventes d''études ','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15780,'NSCF','INCOME','XXXXXX','7706',15773,'Produits sur exercices antérieurs autres prestations de services','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15781,'NSCF','INCOME','XXXXXX','7708',15773,'Produits sur exercices antérieur - ventes de produits des activités annexes','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15782,'NSCF','INCOME','XXXXXX','775',15772,'Produits sur exercices antérieurs - autres produits opérationnels','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15783,'NSCF','INCOME','XXXXXX','7751',15782,'Redevances pour concessions, brevets, licence ; logiciels et valeurs similaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15784,'NSCF','INCOME','XXXXXX','7752',15782,'Plus-values sur sorties d''actifs immobilisés non financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15785,'NSCF','INCOME','XXXXXX','7753',15782,'Jetons de présence et rémunérations d''administrateurs ou de gérants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15786,'NSCF','INCOME','XXXXXX','7754',15782,'Quotes-parts de subventions d''investissements virées au résultat de l''exercice','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15787,'NSCF','INCOME','XXXXXX','7755',15782,'Quotes-parts de résultat sur opérations faites en commun','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15788,'NSCF','INCOME','XXXXXX','7756',15782,'Rentrées sur créances amorties','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15789,'NSCF','INCOME','XXXXXX','7757',15782,'Produits exceptionnels sur opération de gestion','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15790,'NSCF','INCOME','XXXXXX','7759',15782,'Produits sur exercices antérieurs - remboursement des immobilisations expropriées détruites','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15791,'NSCF','INCOME','XXXXXX','778',15772,'Autres éléments extraordinaires - produits','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15792,'NSCF','INCOME','XXXXXX','7783',15791,'Bonis provenant du rachat par l''entreprise d''actions et d''obligations émises par elle-même','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15793,'NSCF','INCOME','XXXXXX','7788',15791,'Autres Produits extraordinaires divers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15794,'NSCF','INCOME','XXXXXX','78',15693,'Reprises sur pertes de valeur et provisions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15795,'NSCF','INCOME','XXXXXX','781',15794,'Reprises d''exploitation sur pertes de valeurs et provisions - actifs non courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15796,'NSCF','INCOME','XXXXXX','7810',15795,'Reprises sur provisions et pertes de valeur des immobilisations incorporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15797,'NSCF','INCOME','XXXXXX','7811',15795,'Reprises sur provisions et pertes de valeur des immobilisations corporelles','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15798,'NSCF','INCOME','XXXXXX','7812',15795,'Reprises sur provisions des immobilisations en concession','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15799,'NSCF','INCOME','XXXXXX','7813',15795,'Reprises sur provisions d''immobilisations en cours','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15800,'NSCF','INCOME','XXXXXX','7816',15795,'Reprise sur pertes de valeur des participations et créances rattachées','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15801,'NSCF','INCOME','XXXXXX','7817',15795,'Reprise sur perte de valeur des autres titres immobilisés','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15802,'NSCF','INCOME','XXXXXX','7818',15795,'Reprise sur pertes de valeur des autres instruments financiers','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15803,'NSCF','INCOME','XXXXXX','785',15794,'Reprises d''exploitation sur pertes de valeur et provisions - actifs courants','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15804,'NSCF','INCOME','XXXXXX','7853',15803,'Reprises sur provisions et pertes de valeur sur les comptes de stocks','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15805,'NSCF','INCOME','XXXXXX','7854',15803,'Reprises sur provisions et pertes de valeur sur les comptes de créances','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15806,'NSCF','INCOME','XXXXXX','7855',15803,'Reprises sur provisions et pertes de valeur sur les comptes de trésorerie','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15807,'NSCF','INCOME','XXXXXX','786',15794,'Reprises financières sur pertes de valeurs et provisions','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15808,'NSCF','INCOME','XXXXXX','7860',15807,'Reprises provisions sur plus-values à réinvestir','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15809,'NSCF','INCOME','XXXXXX','7863',15807,'Reprises provisions sur pensions et obligations similaires','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15810,'NSCF','INCOME','XXXXXX','7865',15807,'Reprises provisions pour impôts','1');
INSERT IGNORE INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (15811,'NSCF','INCOME','XXXXXX','7868',15807,'Reprises autres provisions pour charges - passifs non courants','1');

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
-- Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2018 Regis Houssin <regis.houssin@capnetworks.com>
--
-- 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
@ -14,359 +13,357 @@
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
--
--
-- Ne pas placer de commentaire en fin de ligne, ce fichier est parsé lors
-- de l'install et tous les sigles '--' sont supprimés.
--
--
-- Descriptif des plans comptables UK ENG-BASE
-- ID 70000 - 79999
--
-- ADD 700000 to rowid # Do no remove this comment --
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '1', NULL, 'Equity, provisions for liabilities and charges and liabilities at more than one year', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '2', NULL, 'Administration fees.Fixed assets and receivables over one year', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '3', NULL, 'Stock and orders running', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '4', NULL, 'Amounts receivable and payable within one year', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '5', NULL, 'Placing of cash and cash equivalents', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '6', NULL, 'Charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '7', NULL, 'Products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (71501, 'ENG-BASE', 'CAPIT', 'XXXXXX', '1', '0', 'Equity, provisions for liabilities and charges and liabilities at more than one year', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (71502, 'ENG-BASE', 'IMMO', 'XXXXXX', '2', '0', 'Administration fees.Fixed assets and receivables over one year', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (71503, 'ENG-BASE', 'STOCK', 'XXXXXX', '3', '0', 'Stock and orders running', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (71504, 'ENG-BASE', 'TIERS', 'XXXXXX', '4', '0', 'Amounts receivable and payable within one year', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (71505, 'ENG-BASE', 'FINAN', 'XXXXXX', '5', '0', 'Placing of cash and cash equivalents', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (71506, 'ENG-BASE', 'CHARGE', 'XXXXXX', '6', '0', 'Charges', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (71507, 'ENG-BASE', 'PROD', 'XXXXXX', '7', '0', 'Products', 1);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '10', '1', 'Capital and reserves', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'CAPITAL', '101', '10', 'Capital', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '104', '10', 'Share capital premiums', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '105', '10', 'Revaluation differences', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '106', '10', 'Stocks', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '107', '10', 'Equivalence difference', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '108', '10', 'Exploiting account', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '109', '10', 'Shareholders: subscribed capital - not called', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '11', '1', 'Retained balance (credit balance or debit)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '110', '11', 'Retained earnings (credit balance)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '119', '11', 'Retained earnings (debit balance)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '12', '1', 'YEAR PROFIT (profit or loss)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '120', '12', 'Profit for the year (profit)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '129', '12', 'Profit for the year (loss)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '13', '1', 'Investment grants', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '131', '13', 'Equipment Grants', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '138', '13', 'Other investment grants', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '139', '13', 'Investment subsidies entered in the income statement', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '14', '1', 'Regulated provisions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '142', '14', 'Regulated Provisions for Capital Assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '143', '14', 'Regulated inventory provisions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '144', '14', 'Regulated provisions for other assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '145', '14', 'Accelerated depreciation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '146', '14', 'Special Revaluation Provision', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '147', '14', 'Reinvested capital gains', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '148', '14', 'Other regulated provisions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '15', '1', 'Provisions for risks and charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '151', '15', 'Risk provisions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '153', '15', 'Provisions for pensions and similar obligations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '154', '15', 'Provisions for restructuring', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '155', '15', 'Provisions for taxes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '156', '15', 'Provisions for renewal of fixed assets (concessionary companies)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '157', '15', 'Provisions for expenses to be allocated over several financial years', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '158', '15', 'Other provisions for charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '16', '1', 'Borrowings and similar liabilities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '161', '16', 'Convertible bonds', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '163', '16', 'Other bonds', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '164', '16', 'Borrowings from credit institutions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '165', '16', 'Deposits and surety bonds received', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '166', '16', 'Employee participation in results', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '167', '16', 'Borrowings and debts with special conditions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '168', '16', 'Other borrowings and similar liabilities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '169', '16', 'Bond redemption premiums', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '17', '1', 'Debts related to participations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '171', '17', 'Debts related to investments (group)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '174', '17', 'Debt related to participations (excluding group)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '178', '17', 'Debts related to joint ventures', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '18', '1', 'Liaison accounts of establishments and joint ventures', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '181', '18', 'Liaison Accounts of Establishments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '186', '18', 'Goods and services exchanged between establishments (charges)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '187', '18', 'Goods and services exchanged between establishments (products)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CAPIT', 'XXXXXX', '188', '18', 'Joint-venture Liabilities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '20', '2', 'Intangible assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '201', '20', 'Administration fees', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '203', '20', 'Research and development costs', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '205', '20', 'Concessions and similar rights, patents, licenses, trademarks, processes, software, rights and similar values', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '206', '20', 'Right to lease', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '207', '20', 'Commercial funds', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '208', '20', 'Other intangible assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '21', '2', 'Property, plant and equipment', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '211', '21', 'Grounds', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '212', '21', 'Fittings and landscaping', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '213', '21', 'Constructions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '214', '21', 'Constructions on the ground of others', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '215', '21', 'Industrial installations, equipment and tools', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '218', '21', 'Other tangible fixed assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '22', '2', 'Assets under concession', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '23', '2', 'Assets in progress', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '231', '23', 'investments in progress', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '232', '23', 'Intangible assets in progress', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '237', '23', 'Advances and advances paid on intangible assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '238', '23', 'Advances and payments on orders for property, plant and equipment', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '25', '2', 'Shares in affiliated undertakings and claims on affiliated undertakings', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '26', '2', 'Investments and receivables from investments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '261', '26', 'Equity securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '266', '26', 'Other forms of participation', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '267', '26', 'Receivables related to equity investments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '268', '26', 'Receivables from joint ventures', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '269', '26', 'Payments still to be made on non-paid equity securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '27', '2', 'Other financial assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '271', '271', 'Fixed assets other than fixed assets of the portfolio business (ownership)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '272', '271', 'Locked-in securities (debt)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '273', '271', 'Fixed assets from portfolio activity', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '274', '271', 'Loans', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '275', '271', 'Deposits paid', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '276', '271', 'Other receivables', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '277', '271', 'Treasury shares or own shares', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '279', '271', 'Payments still to be made on non-paid-up capital securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '28', '2', 'Amortization of fixed assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '280', '28', 'Amortization of intangible assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '281', '28', 'Amortization of property, plant and equipment', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '282', '28', 'Amortization of concession assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '29', '2', 'Impairment of fixed assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '290', '29', 'Impairment of intangible assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '291', '29', 'Impairment of property, plant and equipment', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '292', '29', 'Impairment of fixed assets under concession', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '293', '29', 'Impairment of fixed assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '296', '29', 'Provisions for impairment of investments and receivables from investments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'IMMO', 'XXXXXX', '297', '29', 'Provisions for impairment of other long-term investments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '31', '3', 'Raw materials (and supplies)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '311', '31', 'Subjects (or group) A', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '312', '31', 'Subjects (or group) B', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '317', '31', 'Supplies A, B, C,', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '32', '3', 'Other supplies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '321', '32', 'Consumable Materials', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '322', '32', 'Supplies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '326', '32', 'Packaging', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '33', '3', 'Ongoing production of goods', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '331', '33', 'Products in Progress', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '335', '33', 'Work in progress', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '34', '3', 'On-going production of services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '341', '34', 'Ongoing studies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '345', '34', 'Ongoing services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '35', '3', 'Stocks of products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '351', '35', 'Intermediate products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '355', '35', 'Finished products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '358', '35', 'Residual products (or recovered materials)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '37', '3', 'Stocks of goods', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '371', '37', 'Goods (or group) A', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '372', '37', 'Goods (or group) B', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '39', NULL, 'Provisions for depreciation of inventories and work in progress', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '391', '39', 'Provisions for depreciation of raw materials', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '392', '39', 'Provisions for depreciation of other supplies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '393', '39', 'Provisions for depreciation of work in progress', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '394', '39', 'Provisions for depreciation of work in process', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '395', '39', 'Provisions for depreciation of inventories of products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'STOCK', 'XXXXXX', '397', '39', 'Provisions for depreciation of inventories of goods', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '40', '4', 'Accounts payable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '400', '40', 'Accounts payable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'SUPPLIER', '401', '40', 'Suppliers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '403', '40', 'Suppliers - Payables', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '404', '40', 'Suppliers of fixed assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '405', '40', 'Capital Suppliers - Payables', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '408', '40', 'Supplier invoices not yet received', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '409', '40', 'Debtors suppliers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '41', '4', 'Accounts receivable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '410', '41', 'Customers and Related Accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'CUSTOMER', '411', '41', 'Customers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '413', '41', 'Accounts Receivable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '416', '41', 'Doubtful or contentious customers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '418', '41', 'Customers - Products not yet billed', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '419', '41', 'Accounts payable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '42', '4', 'Personnel and related accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '421', '42', 'Staff - Remuneration due', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '422', '42', 'Works councils, establishment, ...', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '424', '42', 'Employee participation in results', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '425', '42', 'Staff - Advances and Advances', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '426', '42', 'Staff - Deposits', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '427', '42', 'Staff - Oppositions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '428', '42', 'Personnel - Accrued expenses and accrued income', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '43', '4', 'Social security and other social organizations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '431', '43', 'Social Security', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '437', '43', 'Other social organizations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '438', '43', 'Social organizations - Accrued expenses and accrued income', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '44', '4', 'State and other public authorities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '441', '44', 'Status - Grants Receivable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '442', '44', 'Statement - Taxes and taxes recoverable on third parties', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '443', '44', 'Special operations with the State, public authorities, international organizations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '444', '44', 'State - Income taxes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '445', '44', 'State - Taxes on turnover', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '446', '44', 'Bonded Bonds', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '447', '44', 'Other taxes, duties and similar payments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '448', '44', 'Statement of Accounts Payable and Accrued Income', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '449', '44', 'Emission quotas to be returned to the State', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '45', '4', 'Group and Associates', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '451', '45', 'Group', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '455', '45', 'Associates - Current Accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '456', '45', 'Associates - Capital transactions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '457', '45', 'Associates - Dividends payable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '458', '45', 'Associates- Joint and EIG Operations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '46', '4', 'Miscellaneous receivables and creditors', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '462', '46', 'Receivables on disposals of fixed assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '464', '46', 'Debts on acquisitions of marketable securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '465', '46', 'Receivables on disposals of marketable securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '467', '46', 'Other accounts receivable or payable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '468', '46', 'Miscellaneous - Accrued expenses and accrued income', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '47', '4', 'Transition or suspense accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '471', '47', 'Waiting Accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '476', '47', 'Conversion Difference - Assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '477', '47', 'Translation differences - Liabilities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '478', '47', 'Other transitional accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '48', '4', 'regularisation account', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '481', '48', 'Expenses to be spread over several financial years', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '486', '48', 'Prepaid expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '487', '48', 'Deferred income', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '488', '48', 'Accounts for the periodic distribution of expenses and revenues', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '489', '48', 'Emission allowances allocated by the State', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '49', '4', 'Provisions for depreciation of third party accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '491', '49', 'Provisions for depreciation of customer accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '495', '49', 'Provisions for impairment of group and associate accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'TIERS', 'XXXXXX', '496', '49', 'Provisions for depreciation of accounts receivable', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '50', '5', 'Marketable securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '501', '50', 'Shares in related companies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '502', '50', 'Treasury shares', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '503', '50', 'Stock', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '504', '50', 'Other titles conferring a right of ownership', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '505', '50', 'Bonds and bonds issued by the company and repurchased by it', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '506', '50', 'Obligations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '507', '50', 'Treasury bills and short-term bills', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '508', '50', 'Other marketable securities and other assimilated claims', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '509', '50', 'Payments still to be made on undistributed investment securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '51', '5', 'Banks, financial institutions and the like', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '511', '51', 'Cash values', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'BANK', '512', '51', 'Banks', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '514', '51', 'Postal checks', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '515', '51', 'Caisses of the Treasury and public institutions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '516', '51', 'Exchange companies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '517', '51', 'Other financial institutions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '518', '51', 'Accrued interest', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '519', '51', 'Bank overdrafts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '52', '5', 'Treasury instruments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'CASH', '53', '5', 'Checkout', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '531', '53', 'Head Office', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '532', '53', 'Cash box (or factory) A', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '533', '53', 'Cash box (or factory) B', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '54', '5', 'Advance and Flow-Through', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '58', '5', 'Internal transfers', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '59', '5', 'Provisions for impairment of financial accounts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'FINAN', 'XXXXXX', '590', '59', 'Provisions for depreciation of marketable securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'PRODUCT', '60', '6', 'Shopping', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '601', '60', 'Stored Procurement - Raw Materials (and Supplies)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '602', '60', 'Stored Procurement - Other Supplies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '603', '60', 'Inventory Changes (Supplies and Commodities)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '604', '60', 'Stored Procurement - Raw Materials (and Supplies)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '605', '60', 'Purchase of equipment, works and equipment', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '606', '60', 'Non-stock purchases of materials and supplies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '607', '60', 'Purchases of goods', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '608', '60', 'Reserved account, where applicable, to the recapitulation of incidental expenses included in purchases', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '609', '60', 'Discounts, rebates and rebates obtained on purchases', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'SERVICE', '61', '6', 'Outside services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '611', '61', 'General subcontracting', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '612', '61', 'Lease payments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '613', '61', 'Rentals', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '614', '61', 'Rental and condominium expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '615', '61', 'Maintenance and repairs', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '616', '61', 'Insurance premiums', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '617', '61', 'Studies and research', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '618', '61', 'Various', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '619', '61', 'Discounts, rebates and rebates obtained on external services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '62', '6', 'Other services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '621', '62', 'Staff outside the company', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '622', '62', 'Remuneration of intermediaries and fees', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '623', '62', 'Advertising, publications, public relations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '624', '62', 'Transport of goods and public transport of personnel', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '625', '62', 'Travel, missions and receptions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '626', '62', 'Postal and telecommunications costs', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '627', '62', 'Banking and related services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '628', '62', 'Various', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '629', '62', 'Discounts, rebates and rebates obtained on other external services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '63', '6', 'Taxes other and payments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '631', '63', 'Taxes and similar payments on remuneration (tax administrations)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '633', '63', 'Taxes and similar payments on remuneration (other bodies)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '635', '63', 'Other taxes, duties and similar payments (tax administrations)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '637', '63', 'Other taxes, duties and similar payments (other bodies)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '64', '6', 'Staff costs', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '641', '64', 'Remuneration of staff', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '644', '64', 'Remuneration of the operator\'s work', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'SOCIAL', '645', '64', 'Social Security and Welfare Expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '646', '64', 'Personal social contributions of the operator', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '647', '64', 'Other payroll taxes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '648', '64', 'Other staff costs', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '65', '6', 'Other current operating expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '651', '65', 'Royalties for concessions, patents, licenses, trademarks, processes, software, rights and similar values', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '653', '65', 'Attendance fees', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '654', '65', 'Loss on bad debts', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '655', '65', 'Share of profit or loss on transactions made jointly', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '658', '65', 'Miscellaneous operating expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '66', '6', 'Financial expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '661', '66', 'Interest charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '664', '66', 'Loss on receivables related to investments', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '665', '66', 'Discounts granted', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '666', '66', 'Exchange losses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '667', '66', 'Net expense on disposals of marketable securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '668', '66', 'Other financial expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '67', '6', 'Extraordinary charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '671', '67', 'Exceptional charges on management operations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '672', '67', 'Account available to entities to record, in the course of the financial year, expenses over previous financial years', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '675', '67', 'Book value of assets sold', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '678', '67', 'Other extraordinary expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '68', '6', 'Depreciation, amortization and provisions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '681', '68', 'Depreciation, amortization and provisions - Operating expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '686', '68', 'Depreciation, amortization and provisions - Financial expense', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '687', '68', 'Depreciation, amortization and provisions - Extraordinary expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '69', '6', 'Employee participation - income tax and assimilated', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '691', '69', 'Employee participation in results', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '695', '69', 'Income taxes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '696', '69', 'Corporate income tax related to distributions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '697', '69', 'Annual corporation tax', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '698', '69', 'Tax integration', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'CHARGE', 'XXXXXX', '699', '69', 'Products - Reports back deficits', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '70', '7', 'Sales of manufactured goods, services, goods', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'PRODUCT', '701', '70', 'Sales of finished products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '702', '70', 'Sales of intermediate products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '703', '70', 'Sales of residual products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '704', '70', 'Works', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '705', '70', 'Studies', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'SERVICE', '706', '70', 'Services', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'PRODUCT', '707', '70', 'Sale of goods', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'PRODUCT', '708', '70', 'Income from ancillary activities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '709', '70', 'Discounts, rebates and rebates granted by the company', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '71', '7', 'Stored production (or destocking)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '713', '71', 'Change in stocks (in-process production, products)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '72', '7', 'Immobilised production', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '721', '72', 'Intangible assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '722', '72', 'Property, plant and equipment', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '74', '7', 'Operating grants', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '75', '7', 'Other management products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '751', '75', 'Royalties for concessions, patents, licenses, trademarks, processes, software, rights and similar values', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '752', '75', 'Income from buildings not used for professional purposes', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '753', '75', 'Directors\' fees and remuneration of directors, managers, ...', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '754', '75', 'Perceived refunds of cooperatives (from surplus)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '755', '75', 'Share of profits on transactions made jointly', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '758', '75', 'Miscellaneous current management products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '76', '7', 'Financial products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '761', '76', 'Income from participations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '762', '76', 'Income from other financial assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '763', '76', 'Revenue from other receivables', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '764', '76', 'Income from marketable securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '765', '76', 'Discounts obtained', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '766', '76', 'Exchange gains', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '767', '76', 'Net proceeds on disposals of marketable securities', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '768', '76', 'Other financial income', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '77', '7', 'Exceptional products', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '771', '77', 'Extraordinary income from management operations', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '772', '77', 'Account available to entities to record, during the financial year, the revenues over previous financial years', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '775', '77', 'Proceeds from disposals of assets', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '777', '77', 'Share of investment grants transferred to profit or loss for the year', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '778', '77', 'Other extraordinary income', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '78', '7', 'Reversals of depreciation and provisions', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '781', '78', 'Reversals of depreciation and provisions (to be included in revenue)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '786', '78', 'Reversals of provisions for risks (to be recorded in financial income)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '787', '78', 'Reversals of provisions (to be recorded in exceptional income)', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '79', '7', 'Transfers of charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '791', '79', 'Transfers of operating expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '796', '79', 'Transfers of financial expenses', 1, __ENTITY__);
INSERT INTO llx_accounting_account (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active, entity) VALUES ('ENG-BASE', 'PROD', 'XXXXXX', '797', '79', 'Transfers of Exceptional Charges', 1, __ENTITY__);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70103, 'ENG-BASE', 'CAPIT', 'XXXXXX', '10', '71501', 'Capital and reserves', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70104, 'ENG-BASE', 'CAPIT', 'CAPITAL', '101', '70103', 'Capital', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70105, 'ENG-BASE', 'CAPIT', 'XXXXXX', '104', '70103', 'Share capital premiums', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70106, 'ENG-BASE', 'CAPIT', 'XXXXXX', '105', '70103', 'Revaluation differences', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70107, 'ENG-BASE', 'CAPIT', 'XXXXXX', '106', '70103', 'Stocks', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70108, 'ENG-BASE', 'CAPIT', 'XXXXXX', '107', '70103', 'Equivalence difference', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70109, 'ENG-BASE', 'CAPIT', 'XXXXXX', '108', '70103', 'Exploiting account', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70110, 'ENG-BASE', 'CAPIT', 'XXXXXX', '109', '70103', 'Shareholders: subscribed capital - not called', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70111, 'ENG-BASE', 'CAPIT', 'XXXXXX', '11', '71501', 'Retained balance (credit balance or debit)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70112, 'ENG-BASE', 'CAPIT', 'XXXXXX', '110', '70111', 'Retained earnings (credit balance)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70113, 'ENG-BASE', 'CAPIT', 'XXXXXX', '119', '70111', 'Retained earnings (debit balance)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70114, 'ENG-BASE', 'CAPIT', 'XXXXXX', '12', '71501', 'YEAR PROFIT (profit or loss)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70115, 'ENG-BASE', 'CAPIT', 'XXXXXX', '120', '70114', 'Profit for the year (profit)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70116, 'ENG-BASE', 'CAPIT', 'XXXXXX', '129', '70114', 'Profit for the year (loss)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70117, 'ENG-BASE', 'CAPIT', 'XXXXXX', '13', '71501', 'Investment grants', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70118, 'ENG-BASE', 'CAPIT', 'XXXXXX', '131', '70117', 'Equipment Grants', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70119, 'ENG-BASE', 'CAPIT', 'XXXXXX', '138', '70117', 'Other investment grants', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70120, 'ENG-BASE', 'CAPIT', 'XXXXXX', '139', '70117', 'Investment subsidies entered in the income statement', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70121, 'ENG-BASE', 'CAPIT', 'XXXXXX', '14', '71501', 'Regulated provisions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70122, 'ENG-BASE', 'CAPIT', 'XXXXXX', '142', '70121', 'Regulated Provisions for Capital Assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70123, 'ENG-BASE', 'CAPIT', 'XXXXXX', '143', '70121', 'Regulated inventory provisions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70124, 'ENG-BASE', 'CAPIT', 'XXXXXX', '144', '70121', 'Regulated provisions for other assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70125, 'ENG-BASE', 'CAPIT', 'XXXXXX', '145', '70121', 'Accelerated depreciation', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70126, 'ENG-BASE', 'CAPIT', 'XXXXXX', '146', '70121', 'Special Revaluation Provision', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70127, 'ENG-BASE', 'CAPIT', 'XXXXXX', '147', '70121', 'Reinvested capital gains', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70128, 'ENG-BASE', 'CAPIT', 'XXXXXX', '148', '70121', 'Other regulated provisions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70129, 'ENG-BASE', 'CAPIT', 'XXXXXX', '15', '71501', 'Provisions for risks and charges', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70130, 'ENG-BASE', 'CAPIT', 'XXXXXX', '151', '70129', 'Risk provisions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70131, 'ENG-BASE', 'CAPIT', 'XXXXXX', '153', '70129', 'Provisions for pensions and similar obligations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70132, 'ENG-BASE', 'CAPIT', 'XXXXXX', '154', '70129', 'Provisions for restructuring', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70133, 'ENG-BASE', 'CAPIT', 'XXXXXX', '155', '70129', 'Provisions for taxes', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70134, 'ENG-BASE', 'CAPIT', 'XXXXXX', '156', '70129', 'Provisions for renewal of fixed assets (concessionary companies)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70135, 'ENG-BASE', 'CAPIT', 'XXXXXX', '157', '70129', 'Provisions for expenses to be allocated over several financial years', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70136, 'ENG-BASE', 'CAPIT', 'XXXXXX', '158', '70129', 'Other provisions for charges', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70137, 'ENG-BASE', 'CAPIT', 'XXXXXX', '16', '71501', 'Borrowings and similar liabilities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70138, 'ENG-BASE', 'CAPIT', 'XXXXXX', '161', '70137', 'Convertible bonds', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70139, 'ENG-BASE', 'CAPIT', 'XXXXXX', '163', '70137', 'Other bonds', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70140, 'ENG-BASE', 'CAPIT', 'XXXXXX', '164', '70137', 'Borrowings from credit institutions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70141, 'ENG-BASE', 'CAPIT', 'XXXXXX', '165', '70137', 'Deposits and surety bonds received', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70142, 'ENG-BASE', 'CAPIT', 'XXXXXX', '166', '70137', 'Employee participation in results', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70143, 'ENG-BASE', 'CAPIT', 'XXXXXX', '167', '70137', 'Borrowings and debts with special conditions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70144, 'ENG-BASE', 'CAPIT', 'XXXXXX', '168', '70137', 'Other borrowings and similar liabilities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70145, 'ENG-BASE', 'CAPIT', 'XXXXXX', '169', '70137', 'Bond redemption premiums', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70146, 'ENG-BASE', 'CAPIT', 'XXXXXX', '17', '71501', 'Debts related to participations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70147, 'ENG-BASE', 'CAPIT', 'XXXXXX', '171', '70146', 'Debts related to investments (group)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70148, 'ENG-BASE', 'CAPIT', 'XXXXXX', '174', '70146', 'Debt related to participations (excluding group)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70149, 'ENG-BASE', 'CAPIT', 'XXXXXX', '178', '70146', 'Debts related to joint ventures', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70150, 'ENG-BASE', 'CAPIT', 'XXXXXX', '18', '71501', 'Liaison accounts of establishments and joint ventures', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70151, 'ENG-BASE', 'CAPIT', 'XXXXXX', '181', '70150', 'Liaison Accounts of Establishments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70152, 'ENG-BASE', 'CAPIT', 'XXXXXX', '186', '70150', 'Goods and services exchanged between establishments (charges)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70153, 'ENG-BASE', 'CAPIT', 'XXXXXX', '187', '70150', 'Goods and services exchanged between establishments (products)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70154, 'ENG-BASE', 'CAPIT', 'XXXXXX', '188', '70150', 'Joint-venture Liabilities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70155, 'ENG-BASE', 'IMMO', 'XXXXXX', '20', '71502', 'Intangible assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70156, 'ENG-BASE', 'IMMO', 'XXXXXX', '201', '70155', 'Administration fees', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70157, 'ENG-BASE', 'IMMO', 'XXXXXX', '203', '70155', 'Research and development costs', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70158, 'ENG-BASE', 'IMMO', 'XXXXXX', '205', '70155', 'Concessions and similar rights, patents, licenses, trademarks, processes, software, rights and similar values', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70159, 'ENG-BASE', 'IMMO', 'XXXXXX', '206', '70155', 'Right to lease', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70160, 'ENG-BASE', 'IMMO', 'XXXXXX', '207', '70155', 'Commercial funds', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70161, 'ENG-BASE', 'IMMO', 'XXXXXX', '208', '70155', 'Other intangible assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70162, 'ENG-BASE', 'IMMO', 'XXXXXX', '21', '71502', 'Property, plant and equipment', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70163, 'ENG-BASE', 'IMMO', 'XXXXXX', '211', '70162', 'Grounds', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70164, 'ENG-BASE', 'IMMO', 'XXXXXX', '212', '70162', 'Fittings and landscaping', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70165, 'ENG-BASE', 'IMMO', 'XXXXXX', '213', '70162', 'Constructions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70166, 'ENG-BASE', 'IMMO', 'XXXXXX', '214', '70162', 'Constructions on the ground of others', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70167, 'ENG-BASE', 'IMMO', 'XXXXXX', '215', '70162', 'Industrial installations, equipment and tools', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70168, 'ENG-BASE', 'IMMO', 'XXXXXX', '218', '70162', 'Other tangible fixed assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70169, 'ENG-BASE', 'IMMO', 'XXXXXX', '22', '71502', 'Assets under concession', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70170, 'ENG-BASE', 'IMMO', 'XXXXXX', '23', '71502', 'Assets in progress', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70171, 'ENG-BASE', 'IMMO', 'XXXXXX', '231', '70170', 'investments in progress', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70172, 'ENG-BASE', 'IMMO', 'XXXXXX', '232', '70170', 'Intangible assets in progress', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70173, 'ENG-BASE', 'IMMO', 'XXXXXX', '237', '70170', 'Advances and advances paid on intangible assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70174, 'ENG-BASE', 'IMMO', 'XXXXXX', '238', '70170', 'Advances and payments on orders for property, plant and equipment', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70175, 'ENG-BASE', 'IMMO', 'XXXXXX', '25', '71502', 'Shares in affiliated undertakings and claims on affiliated undertakings', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70176, 'ENG-BASE', 'IMMO', 'XXXXXX', '26', '71502', 'Investments and receivables from investments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70177, 'ENG-BASE', 'IMMO', 'XXXXXX', '261', '70176', 'Equity securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70178, 'ENG-BASE', 'IMMO', 'XXXXXX', '266', '70176', 'Other forms of participation', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70179, 'ENG-BASE', 'IMMO', 'XXXXXX', '267', '70176', 'Receivables related to equity investments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70180, 'ENG-BASE', 'IMMO', 'XXXXXX', '268', '70176', 'Receivables from joint ventures', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70181, 'ENG-BASE', 'IMMO', 'XXXXXX', '269', '70176', 'Payments still to be made on non-paid equity securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70182, 'ENG-BASE', 'IMMO', 'XXXXXX', '27', '71502', 'Other financial assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70183, 'ENG-BASE', 'IMMO', 'XXXXXX', '271', '70183', 'Fixed assets other than fixed assets of the portfolio business (ownership)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70184, 'ENG-BASE', 'IMMO', 'XXXXXX', '272', '70183', 'Locked-in securities (debt)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70185, 'ENG-BASE', 'IMMO', 'XXXXXX', '273', '70183', 'Fixed assets from portfolio activity', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70186, 'ENG-BASE', 'IMMO', 'XXXXXX', '274', '70183', 'Loans', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70187, 'ENG-BASE', 'IMMO', 'XXXXXX', '275', '70183', 'Deposits paid', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70188, 'ENG-BASE', 'IMMO', 'XXXXXX', '276', '70183', 'Other receivables', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70189, 'ENG-BASE', 'IMMO', 'XXXXXX', '277', '70183', 'Treasury shares or own shares', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70190, 'ENG-BASE', 'IMMO', 'XXXXXX', '279', '70183', 'Payments still to be made on non-paid-up capital securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70191, 'ENG-BASE', 'IMMO', 'XXXXXX', '28', '71502', 'Amortization of fixed assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70192, 'ENG-BASE', 'IMMO', 'XXXXXX', '280', '70191', 'Amortization of intangible assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70193, 'ENG-BASE', 'IMMO', 'XXXXXX', '281', '70191', 'Amortization of property, plant and equipment', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70194, 'ENG-BASE', 'IMMO', 'XXXXXX', '282', '70191', 'Amortization of concession assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70195, 'ENG-BASE', 'IMMO', 'XXXXXX', '29', '71502', 'Impairment of fixed assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70196, 'ENG-BASE', 'IMMO', 'XXXXXX', '290', '70195', 'Impairment of intangible assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70197, 'ENG-BASE', 'IMMO', 'XXXXXX', '291', '70195', 'Impairment of property, plant and equipment', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70198, 'ENG-BASE', 'IMMO', 'XXXXXX', '292', '70195', 'Impairment of fixed assets under concession', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70199, 'ENG-BASE', 'IMMO', 'XXXXXX', '293', '70195', 'Impairment of fixed assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70200, 'ENG-BASE', 'IMMO', 'XXXXXX', '296', '70195', 'Provisions for impairment of investments and receivables from investments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70201, 'ENG-BASE', 'IMMO', 'XXXXXX', '297', '70195', 'Provisions for impairment of other long-term investments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70202, 'ENG-BASE', 'STOCK', 'XXXXXX', '31', '71503', 'Raw materials (and supplies)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70203, 'ENG-BASE', 'STOCK', 'XXXXXX', '311', '70202', 'Subjects (or group) A', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70204, 'ENG-BASE', 'STOCK', 'XXXXXX', '312', '70202', 'Subjects (or group) B', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70205, 'ENG-BASE', 'STOCK', 'XXXXXX', '317', '70202', 'Supplies A, B, C,', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70206, 'ENG-BASE', 'STOCK', 'XXXXXX', '32', '71503', 'Other supplies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70207, 'ENG-BASE', 'STOCK', 'XXXXXX', '321', '70206', 'Consumable Materials', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70208, 'ENG-BASE', 'STOCK', 'XXXXXX', '322', '70206', 'Supplies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70209, 'ENG-BASE', 'STOCK', 'XXXXXX', '326', '70206', 'Packaging', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70210, 'ENG-BASE', 'STOCK', 'XXXXXX', '33', '71503', 'Ongoing production of goods', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70211, 'ENG-BASE', 'STOCK', 'XXXXXX', '331', '70210', 'Products in Progress', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70212, 'ENG-BASE', 'STOCK', 'XXXXXX', '335', '70210', 'Work in progress', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70213, 'ENG-BASE', 'STOCK', 'XXXXXX', '34', '71503', 'On-going production of services', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70214, 'ENG-BASE', 'STOCK', 'XXXXXX', '341', '70213', 'Ongoing studies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70215, 'ENG-BASE', 'STOCK', 'XXXXXX', '345', '70213', 'Ongoing services', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70216, 'ENG-BASE', 'STOCK', 'XXXXXX', '35', '71503', 'Stocks of products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70217, 'ENG-BASE', 'STOCK', 'XXXXXX', '351', '70216', 'Intermediate products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70218, 'ENG-BASE', 'STOCK', 'XXXXXX', '355', '70216', 'Finished products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70219, 'ENG-BASE', 'STOCK', 'XXXXXX', '358', '70216', 'Residual products (or recovered materials)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70220, 'ENG-BASE', 'STOCK', 'XXXXXX', '37', '71503', 'Stocks of goods', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70221, 'ENG-BASE', 'STOCK', 'XXXXXX', '371', '70220', 'Goods (or group) A', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70222, 'ENG-BASE', 'STOCK', 'XXXXXX', '372', '70220', 'Goods (or group) B', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70223, 'ENG-BASE', 'STOCK', 'XXXXXX', '39', '1503', 'Provisions for depreciation of inventories and work in progress', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70224, 'ENG-BASE', 'STOCK', 'XXXXXX', '391', '70223', 'Provisions for depreciation of raw materials', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70225, 'ENG-BASE', 'STOCK', 'XXXXXX', '392', '70223', 'Provisions for depreciation of other supplies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70226, 'ENG-BASE', 'STOCK', 'XXXXXX', '393', '70223', 'Provisions for depreciation of work in progress', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70227, 'ENG-BASE', 'STOCK', 'XXXXXX', '394', '70223', 'Provisions for depreciation of work in process', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70228, 'ENG-BASE', 'STOCK', 'XXXXXX', '395', '70223', 'Provisions for depreciation of inventories of products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70229, 'ENG-BASE', 'STOCK', 'XXXXXX', '397', '70223', 'Provisions for depreciation of inventories of goods', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70230, 'ENG-BASE', 'TIERS', 'XXXXXX', '40', '71504', 'Accounts payable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70231, 'ENG-BASE', 'TIERS', 'XXXXXX', '400', '70230', 'Accounts payable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70232, 'ENG-BASE', 'TIERS', 'SUPPLIER', '401', '70230', 'Suppliers', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70233, 'ENG-BASE', 'TIERS', 'XXXXXX', '403', '70230', 'Suppliers - Payables', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70234, 'ENG-BASE', 'TIERS', 'XXXXXX', '404', '70230', 'Suppliers of fixed assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70235, 'ENG-BASE', 'TIERS', 'XXXXXX', '405', '70230', 'Capital Suppliers - Payables', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70236, 'ENG-BASE', 'TIERS', 'XXXXXX', '408', '70230', 'Supplier invoices not yet received', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70237, 'ENG-BASE', 'TIERS', 'XXXXXX', '409', '70230', 'Debtors suppliers', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70238, 'ENG-BASE', 'TIERS', 'XXXXXX', '41', '71504', 'Accounts receivable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70239, 'ENG-BASE', 'TIERS', 'XXXXXX', '410', '70238', 'Customers and Related Accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70240, 'ENG-BASE', 'TIERS', 'CUSTOMER', '411', '70238', 'Customers', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70241, 'ENG-BASE', 'TIERS', 'XXXXXX', '413', '70238', 'Accounts Receivable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70242, 'ENG-BASE', 'TIERS', 'XXXXXX', '416', '70238', 'Doubtful or contentious customers', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70243, 'ENG-BASE', 'TIERS', 'XXXXXX', '418', '70238', 'Customers - Products not yet billed', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70244, 'ENG-BASE', 'TIERS', 'XXXXXX', '419', '70238', 'Accounts payable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70245, 'ENG-BASE', 'TIERS', 'XXXXXX', '42', '71504', 'Personnel and related accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70246, 'ENG-BASE', 'TIERS', 'XXXXXX', '421', '70245', 'Staff - Remuneration due', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70247, 'ENG-BASE', 'TIERS', 'XXXXXX', '422', '70245', 'Works councils, establishment, ...', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70248, 'ENG-BASE', 'TIERS', 'XXXXXX', '424', '70245', 'Employee participation in results', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70249, 'ENG-BASE', 'TIERS', 'XXXXXX', '425', '70245', 'Staff - Advances and Advances', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70250, 'ENG-BASE', 'TIERS', 'XXXXXX', '426', '70245', 'Staff - Deposits', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70251, 'ENG-BASE', 'TIERS', 'XXXXXX', '427', '70245', 'Staff - Oppositions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70252, 'ENG-BASE', 'TIERS', 'XXXXXX', '428', '70245', 'Personnel - Accrued expenses and accrued income', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70253, 'ENG-BASE', 'TIERS', 'XXXXXX', '43', '71504', 'Social security and other social organizations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70254, 'ENG-BASE', 'TIERS', 'XXXXXX', '431', '70253', 'Social Security', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70255, 'ENG-BASE', 'TIERS', 'XXXXXX', '437', '70253', 'Other social organizations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70256, 'ENG-BASE', 'TIERS', 'XXXXXX', '438', '70253', 'Social organizations - Accrued expenses and accrued income', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70257, 'ENG-BASE', 'TIERS', 'XXXXXX', '44', '71504', 'State and other public authorities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70258, 'ENG-BASE', 'TIERS', 'XXXXXX', '441', '70257', 'Status - Grants Receivable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70259, 'ENG-BASE', 'TIERS', 'XXXXXX', '442', '70257', 'Statement - Taxes and taxes recoverable on third parties', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70260, 'ENG-BASE', 'TIERS', 'XXXXXX', '443', '70257', 'Special operations with the State, public authorities, international organizations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70261, 'ENG-BASE', 'TIERS', 'XXXXXX', '444', '70257', 'State - Income taxes', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70262, 'ENG-BASE', 'TIERS', 'XXXXXX', '445', '70257', 'State - Taxes on turnover', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70263, 'ENG-BASE', 'TIERS', 'XXXXXX', '446', '70257', 'Bonded Bonds', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70264, 'ENG-BASE', 'TIERS', 'XXXXXX', '447', '70257', 'Other taxes, duties and similar payments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70265, 'ENG-BASE', 'TIERS', 'XXXXXX', '448', '70257', 'Statement of Accounts Payable and Accrued Income', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70266, 'ENG-BASE', 'TIERS', 'XXXXXX', '449', '70257', 'Emission quotas to be returned to the State', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70267, 'ENG-BASE', 'TIERS', 'XXXXXX', '45', '71504', 'Group and Associates', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70268, 'ENG-BASE', 'TIERS', 'XXXXXX', '451', '70267', 'Group', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70269, 'ENG-BASE', 'TIERS', 'XXXXXX', '455', '70267', 'Associates - Current Accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70270, 'ENG-BASE', 'TIERS', 'XXXXXX', '456', '70267', 'Associates - Capital transactions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70271, 'ENG-BASE', 'TIERS', 'XXXXXX', '457', '70267', 'Associates - Dividends payable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70272, 'ENG-BASE', 'TIERS', 'XXXXXX', '458', '70267', 'Associates- Joint and EIG Operations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70273, 'ENG-BASE', 'TIERS', 'XXXXXX', '46', '71504', 'Miscellaneous receivables and creditors', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70274, 'ENG-BASE', 'TIERS', 'XXXXXX', '462', '70273', 'Receivables on disposals of fixed assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70275, 'ENG-BASE', 'TIERS', 'XXXXXX', '464', '70273', 'Debts on acquisitions of marketable securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70276, 'ENG-BASE', 'TIERS', 'XXXXXX', '465', '70273', 'Receivables on disposals of marketable securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70277, 'ENG-BASE', 'TIERS', 'XXXXXX', '467', '70273', 'Other accounts receivable or payable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70278, 'ENG-BASE', 'TIERS', 'XXXXXX', '468', '70273', 'Miscellaneous - Accrued expenses and accrued income', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70279, 'ENG-BASE', 'TIERS', 'XXXXXX', '47', '71504', 'Transition or suspense accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70280, 'ENG-BASE', 'TIERS', 'XXXXXX', '471', '70279', 'Waiting Accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70281, 'ENG-BASE', 'TIERS', 'XXXXXX', '476', '70279', 'Conversion Difference - Assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70282, 'ENG-BASE', 'TIERS', 'XXXXXX', '477', '70279', 'Translation differences - Liabilities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70283, 'ENG-BASE', 'TIERS', 'XXXXXX', '478', '70279', 'Other transitional accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70284, 'ENG-BASE', 'TIERS', 'XXXXXX', '48', '71504', 'regularisation account', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70285, 'ENG-BASE', 'TIERS', 'XXXXXX', '481', '70284', 'Expenses to be spread over several financial years', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70286, 'ENG-BASE', 'TIERS', 'XXXXXX', '486', '70284', 'Prepaid expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70287, 'ENG-BASE', 'TIERS', 'XXXXXX', '487', '70284', 'Deferred income', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70288, 'ENG-BASE', 'TIERS', 'XXXXXX', '488', '70284', 'Accounts for the periodic distribution of expenses and revenues', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70289, 'ENG-BASE', 'TIERS', 'XXXXXX', '489', '70284', 'Emission allowances allocated by the State', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70290, 'ENG-BASE', 'TIERS', 'XXXXXX', '49', '71504', 'Provisions for depreciation of third party accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70291, 'ENG-BASE', 'TIERS', 'XXXXXX', '491', '70290', 'Provisions for depreciation of customer accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70292, 'ENG-BASE', 'TIERS', 'XXXXXX', '495', '70290', 'Provisions for impairment of group and associate accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70293, 'ENG-BASE', 'TIERS', 'XXXXXX', '496', '70290', 'Provisions for depreciation of accounts receivable', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70294, 'ENG-BASE', 'FINAN', 'XXXXXX', '50', '71505', 'Marketable securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70295, 'ENG-BASE', 'FINAN', 'XXXXXX', '501', '70294', 'Shares in related companies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70296, 'ENG-BASE', 'FINAN', 'XXXXXX', '502', '70294', 'Treasury shares', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70297, 'ENG-BASE', 'FINAN', 'XXXXXX', '503', '70294', 'Stock', 0, NULL, 1, 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70298, 'ENG-BASE', 'FINAN', 'XXXXXX', '504', '70294', 'Other titles conferring a right of ownership', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70299, 'ENG-BASE', 'FINAN', 'XXXXXX', '505', '70294', 'Bonds and bonds issued by the company and repurchased by it', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70300, 'ENG-BASE', 'FINAN', 'XXXXXX', '506', '70294', 'Obligations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70301, 'ENG-BASE', 'FINAN', 'XXXXXX', '507', '70294', 'Treasury bills and short-term bills', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70302, 'ENG-BASE', 'FINAN', 'XXXXXX', '508', '70294', 'Other marketable securities and other assimilated claims', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70303, 'ENG-BASE', 'FINAN', 'XXXXXX', '509', '70294', 'Payments still to be made on undistributed investment securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70304, 'ENG-BASE', 'FINAN', 'XXXXXX', '51', '71505', 'Banks, financial institutions and the like', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70305, 'ENG-BASE', 'FINAN', 'XXXXXX', '511', '70304', 'Cash values', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70306, 'ENG-BASE', 'FINAN', 'BANK', '512', '70304', 'Banks', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70307, 'ENG-BASE', 'FINAN', 'XXXXXX', '514', '70304', 'Postal checks', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70308, 'ENG-BASE', 'FINAN', 'XXXXXX', '515', '70304', 'Caisses of the Treasury and public institutions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70309, 'ENG-BASE', 'FINAN', 'XXXXXX', '516', '70304', 'Exchange companies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70310, 'ENG-BASE', 'FINAN', 'XXXXXX', '517', '70304', 'Other financial institutions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70311, 'ENG-BASE', 'FINAN', 'XXXXXX', '518', '70304', 'Accrued interest', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70312, 'ENG-BASE', 'FINAN', 'XXXXXX', '519', '70304', 'Bank overdrafts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70313, 'ENG-BASE', 'FINAN', 'XXXXXX', '52', '71505', 'Treasury instruments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70314, 'ENG-BASE', 'FINAN', 'CASH', '53', '71505', 'Checkout', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70315, 'ENG-BASE', 'FINAN', 'XXXXXX', '531', '70314', 'Head Office', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70316, 'ENG-BASE', 'FINAN', 'XXXXXX', '532', '70314', 'Cash box (or factory) A', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70317, 'ENG-BASE', 'FINAN', 'XXXXXX', '533', '70314', 'Cash box (or factory) B', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70318, 'ENG-BASE', 'FINAN', 'XXXXXX', '54', '71505', 'Advance and Flow-Through', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70319, 'ENG-BASE', 'FINAN', 'XXXXXX', '58', '71505', 'Internal transfers', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70320, 'ENG-BASE', 'FINAN', 'XXXXXX', '59', '71505', 'Provisions for impairment of financial accounts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70321, 'ENG-BASE', 'FINAN', 'XXXXXX', '590', '70320', 'Provisions for depreciation of marketable securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70322, 'ENG-BASE', 'CHARGE', 'PRODUCT', '60', '71506', 'Shopping', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70323, 'ENG-BASE', 'CHARGE', 'XXXXXX', '601', '70322', 'Stored Procurement - Raw Materials (and Supplies)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70324, 'ENG-BASE', 'CHARGE', 'XXXXXX', '602', '70322', 'Stored Procurement - Other Supplies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70325, 'ENG-BASE', 'CHARGE', 'XXXXXX', '603', '70322', 'Inventory Changes (Supplies and Commodities)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70326, 'ENG-BASE', 'CHARGE', 'XXXXXX', '604', '70322', 'Stored Procurement - Raw Materials (and Supplies)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70327, 'ENG-BASE', 'CHARGE', 'XXXXXX', '605', '70322', 'Purchase of equipment, works and equipment', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70328, 'ENG-BASE', 'CHARGE', 'XXXXXX', '606', '70322', 'Non-stock purchases of materials and supplies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70329, 'ENG-BASE', 'CHARGE', 'XXXXXX', '607', '70322', 'Purchases of goods', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70330, 'ENG-BASE', 'CHARGE', 'XXXXXX', '608', '70322', 'Reserved account, where applicable, to the recapitulation of incidental expenses included in purchases', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70331, 'ENG-BASE', 'CHARGE', 'XXXXXX', '609', '70322', 'Discounts, rebates and rebates obtained on purchases', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70332, 'ENG-BASE', 'CHARGE', 'SERVICE', '61', '71506', 'Outside services', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70333, 'ENG-BASE', 'CHARGE', 'XXXXXX', '611', '70332', 'General subcontracting', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70334, 'ENG-BASE', 'CHARGE', 'XXXXXX', '612', '70332', 'Lease payments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70335, 'ENG-BASE', 'CHARGE', 'XXXXXX', '613', '70332', 'Rentals', 0, NULL, 1, 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70336, 'ENG-BASE', 'CHARGE', 'XXXXXX', '614', '70332', 'Rental and condominium expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70337, 'ENG-BASE', 'CHARGE', 'XXXXXX', '615', '70332', 'Maintenance and repairs', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70338, 'ENG-BASE', 'CHARGE', 'XXXXXX', '616', '70332', 'Insurance premiums', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70339, 'ENG-BASE', 'CHARGE', 'XXXXXX', '617', '70332', 'Studies and research', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70340, 'ENG-BASE', 'CHARGE', 'XXXXXX', '618', '70332', 'Various', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70341, 'ENG-BASE', 'CHARGE', 'XXXXXX', '619', '70332', 'Discounts, rebates and rebates obtained on external services', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70342, 'ENG-BASE', 'CHARGE', 'XXXXXX', '62', '71506', 'Other services', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70343, 'ENG-BASE', 'CHARGE', 'XXXXXX', '621', '70342', 'Staff outside the company', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70344, 'ENG-BASE', 'CHARGE', 'XXXXXX', '622', '70342', 'Remuneration of intermediaries and fees', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70345, 'ENG-BASE', 'CHARGE', 'XXXXXX', '623', '70342', 'Advertising, publications, public relations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70346, 'ENG-BASE', 'CHARGE', 'XXXXXX', '624', '70342', 'Transport of goods and public transport of personnel', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70347, 'ENG-BASE', 'CHARGE', 'XXXXXX', '625', '70342', 'Travel, missions and receptions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70348, 'ENG-BASE', 'CHARGE', 'XXXXXX', '626', '70342', 'Postal and telecommunications costs', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70349, 'ENG-BASE', 'CHARGE', 'XXXXXX', '627', '70342', 'Banking and related services', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70350, 'ENG-BASE', 'CHARGE', 'XXXXXX', '628', '70342', 'Various', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70351, 'ENG-BASE', 'CHARGE', 'XXXXXX', '629', '70342', 'Discounts, rebates and rebates obtained on other external services', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70352, 'ENG-BASE', 'CHARGE', 'XXXXXX', '63', '71506', 'Taxes other and payments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70353, 'ENG-BASE', 'CHARGE', 'XXXXXX', '631', '70352', 'Taxes and similar payments on remuneration (tax administrations)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70354, 'ENG-BASE', 'CHARGE', 'XXXXXX', '633', '70352', 'Taxes and similar payments on remuneration (other bodies)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70355, 'ENG-BASE', 'CHARGE', 'XXXXXX', '635', '70352', 'Other taxes, duties and similar payments (tax administrations)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70356, 'ENG-BASE', 'CHARGE', 'XXXXXX', '637', '70352', 'Other taxes, duties and similar payments (other bodies)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70357, 'ENG-BASE', 'CHARGE', 'XXXXXX', '64', '71506', 'Staff costs', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70358, 'ENG-BASE', 'CHARGE', 'XXXXXX', '641', '70357', 'Remuneration of staff', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70359, 'ENG-BASE', 'CHARGE', 'XXXXXX', '644', '70357', 'Remuneration of the operator''s work', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70360, 'ENG-BASE', 'CHARGE', 'SOCIAL', '645', '70357', 'Social Security and Welfare Expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70361, 'ENG-BASE', 'CHARGE', 'XXXXXX', '646', '70357', 'Personal social contributions of the operator', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70362, 'ENG-BASE', 'CHARGE', 'XXXXXX', '647', '70357', 'Other payroll taxes', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70363, 'ENG-BASE', 'CHARGE', 'XXXXXX', '648', '70357', 'Other staff costs', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70364, 'ENG-BASE', 'CHARGE', 'XXXXXX', '65', '71506', 'Other current operating expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70365, 'ENG-BASE', 'CHARGE', 'XXXXXX', '651', '70364', 'Royalties for concessions, patents, licenses, trademarks, processes, software, rights and similar values', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70366, 'ENG-BASE', 'CHARGE', 'XXXXXX', '653', '70364', 'Attendance fees', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70367, 'ENG-BASE', 'CHARGE', 'XXXXXX', '654', '70364', 'Loss on bad debts', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70368, 'ENG-BASE', 'CHARGE', 'XXXXXX', '655', '70364', 'Share of profit or loss on transactions made jointly', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70369, 'ENG-BASE', 'CHARGE', 'XXXXXX', '658', '70364', 'Miscellaneous operating expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70370, 'ENG-BASE', 'CHARGE', 'XXXXXX', '66', '71506', 'Financial expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70371, 'ENG-BASE', 'CHARGE', 'XXXXXX', '661', '70370', 'Interest charges', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70372, 'ENG-BASE', 'CHARGE', 'XXXXXX', '664', '70370', 'Loss on receivables related to investments', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70373, 'ENG-BASE', 'CHARGE', 'XXXXXX', '665', '70370', 'Discounts granted', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70374, 'ENG-BASE', 'CHARGE', 'XXXXXX', '666', '70370', 'Exchange losses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70375, 'ENG-BASE', 'CHARGE', 'XXXXXX', '667', '70370', 'Net expense on disposals of marketable securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70376, 'ENG-BASE', 'CHARGE', 'XXXXXX', '668', '70370', 'Other financial expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70377, 'ENG-BASE', 'CHARGE', 'XXXXXX', '67', '71506', 'Extraordinary charges', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70378, 'ENG-BASE', 'CHARGE', 'XXXXXX', '671', '70377', 'Exceptional charges on management operations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70379, 'ENG-BASE', 'CHARGE', 'XXXXXX', '672', '70377', 'Account available to entities to record, in the course of the financial year, expenses over previous financial years', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70380, 'ENG-BASE', 'CHARGE', 'XXXXXX', '675', '70377', 'Book value of assets sold', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70381, 'ENG-BASE', 'CHARGE', 'XXXXXX', '678', '70377', 'Other extraordinary expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70382, 'ENG-BASE', 'CHARGE', 'XXXXXX', '68', '71506', 'Depreciation, amortization and provisions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70383, 'ENG-BASE', 'CHARGE', 'XXXXXX', '681', '70382', 'Depreciation, amortization and provisions - Operating expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70384, 'ENG-BASE', 'CHARGE', 'XXXXXX', '686', '70382', 'Depreciation, amortization and provisions - Financial expense', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70385, 'ENG-BASE', 'CHARGE', 'XXXXXX', '687', '70382', 'Depreciation, amortization and provisions - Extraordinary expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70386, 'ENG-BASE', 'CHARGE', 'XXXXXX', '69', '71506', 'Employee participation - income tax and assimilated', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70387, 'ENG-BASE', 'CHARGE', 'XXXXXX', '691', '70386', 'Employee participation in results', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70388, 'ENG-BASE', 'CHARGE', 'XXXXXX', '695', '70386', 'Income taxes', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70389, 'ENG-BASE', 'CHARGE', 'XXXXXX', '696', '70386', 'Corporate income tax related to distributions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70390, 'ENG-BASE', 'CHARGE', 'XXXXXX', '697', '70386', 'Annual corporation tax', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70391, 'ENG-BASE', 'CHARGE', 'XXXXXX', '698', '70386', 'Tax integration', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70392, 'ENG-BASE', 'CHARGE', 'XXXXXX', '699', '70386', 'Products - Reports back deficits', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70393, 'ENG-BASE', 'PROD', 'XXXXXX', '70', '71507', 'Sales of manufactured goods, services, goods', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70394, 'ENG-BASE', 'PROD', 'PRODUCT', '701', '70393', 'Sales of finished products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70395, 'ENG-BASE', 'PROD', 'XXXXXX', '702', '70393', 'Sales of intermediate products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70396, 'ENG-BASE', 'PROD', 'XXXXXX', '703', '70393', 'Sales of residual products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70397, 'ENG-BASE', 'PROD', 'XXXXXX', '704', '70393', 'Works', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70398, 'ENG-BASE', 'PROD', 'XXXXXX', '705', '70393', 'Studies', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70399, 'ENG-BASE', 'PROD', 'SERVICE', '706', '70393', 'Services', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70400, 'ENG-BASE', 'PROD', 'PRODUCT', '707', '70393', 'Sale of goods', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70401, 'ENG-BASE', 'PROD', 'PRODUCT', '708', '70393', 'Income from ancillary activities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70402, 'ENG-BASE', 'PROD', 'XXXXXX', '709', '70393', 'Discounts, rebates and rebates granted by the company', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70403, 'ENG-BASE', 'PROD', 'XXXXXX', '71', '71507', 'Stored production (or destocking)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70404, 'ENG-BASE', 'PROD', 'XXXXXX', '713', '70403', 'Change in stocks (in-process production, products)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70405, 'ENG-BASE', 'PROD', 'XXXXXX', '72', '71507', 'Immobilised production', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70406, 'ENG-BASE', 'PROD', 'XXXXXX', '721', '70405', 'Intangible assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70407, 'ENG-BASE', 'PROD', 'XXXXXX', '722', '70405', 'Property, plant and equipment', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70408, 'ENG-BASE', 'PROD', 'XXXXXX', '74', '71507', 'Operating grants', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70409, 'ENG-BASE', 'PROD', 'XXXXXX', '75', '71507', 'Other management products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70410, 'ENG-BASE', 'PROD', 'XXXXXX', '751', '70409', 'Royalties for concessions, patents, licenses, trademarks, processes, software, rights and similar values', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70411, 'ENG-BASE', 'PROD', 'XXXXXX', '752', '70409', 'Income from buildings not used for professional purposes', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70412, 'ENG-BASE', 'PROD', 'XXXXXX', '753', '70409', 'Directors'' fees and remuneration of directors, managers, ...', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70413, 'ENG-BASE', 'PROD', 'XXXXXX', '754', '70409', 'Perceived refunds of cooperatives (from surplus)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70414, 'ENG-BASE', 'PROD', 'XXXXXX', '755', '70409', 'Share of profits on transactions made jointly', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70415, 'ENG-BASE', 'PROD', 'XXXXXX', '758', '70409', 'Miscellaneous current management products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70416, 'ENG-BASE', 'PROD', 'XXXXXX', '76', '71507', 'Financial products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70417, 'ENG-BASE', 'PROD', 'XXXXXX', '761', '70416', 'Income from participations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70418, 'ENG-BASE', 'PROD', 'XXXXXX', '762', '70416', 'Income from other financial assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70419, 'ENG-BASE', 'PROD', 'XXXXXX', '763', '70416', 'Revenue from other receivables', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70420, 'ENG-BASE', 'PROD', 'XXXXXX', '764', '70416', 'Income from marketable securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70421, 'ENG-BASE', 'PROD', 'XXXXXX', '765', '70416', 'Discounts obtained', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70422, 'ENG-BASE', 'PROD', 'XXXXXX', '766', '70416', 'Exchange gains', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70423, 'ENG-BASE', 'PROD', 'XXXXXX', '767', '70416', 'Net proceeds on disposals of marketable securities', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70424, 'ENG-BASE', 'PROD', 'XXXXXX', '768', '70416', 'Other financial income', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70425, 'ENG-BASE', 'PROD', 'XXXXXX', '77', '71507', 'Exceptional products', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70426, 'ENG-BASE', 'PROD', 'XXXXXX', '771', '70425', 'Extraordinary income from management operations', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70427, 'ENG-BASE', 'PROD', 'XXXXXX', '772', '70425', 'Account available to entities to record, during the financial year, the revenues over previous financial years', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70428, 'ENG-BASE', 'PROD', 'XXXXXX', '775', '70425', 'Proceeds from disposals of assets', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70429, 'ENG-BASE', 'PROD', 'XXXXXX', '777', '70425', 'Share of investment grants transferred to profit or loss for the year', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70430, 'ENG-BASE', 'PROD', 'XXXXXX', '778', '70425', 'Other extraordinary income', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70431, 'ENG-BASE', 'PROD', 'XXXXXX', '78', '71507', 'Reversals of depreciation and provisions', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70432, 'ENG-BASE', 'PROD', 'XXXXXX', '781', '70431', 'Reversals of depreciation and provisions (to be included in revenue)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70433, 'ENG-BASE', 'PROD', 'XXXXXX', '786', '70431', 'Reversals of provisions for risks (to be recorded in financial income)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70434, 'ENG-BASE', 'PROD', 'XXXXXX', '787', '70431', 'Reversals of provisions (to be recorded in exceptional income)', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70435, 'ENG-BASE', 'PROD', 'XXXXXX', '79', '71507', 'Transfers of charges', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70436, 'ENG-BASE', 'PROD', 'XXXXXX', '791', '70435', 'Transfers of operating expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70437, 'ENG-BASE', 'PROD', 'XXXXXX', '796', '70435', 'Transfers of financial expenses', 1);
INSERT INTO llx_accounting_account (rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (70438, 'ENG-BASE', 'PROD', 'XXXXXX', '797', '70435', 'Transfers of Exceptional Charges', 1);

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -28,14 +28,12 @@
-- Note: fields with type BLOB/TEXT can't have default value.
-- Missing in 8.0 ?
-- Missing in 8.0
ALTER TABLE llx_accounting_account DROP FOREIGN KEY fk_accounting_account_fk_pcg_version;
ALTER TABLE llx_accounting_account MODIFY COLUMN fk_pcg_version varchar(32) NOT NULL;
ALTER TABLE llx_accounting_system MODIFY COLUMN pcg_version varchar(32) NOT NULL;
ALTER TABLE llx_accounting_account ADD CONSTRAINT fk_accounting_account_fk_pcg_version FOREIGN KEY (fk_pcg_version) REFERENCES llx_accounting_system (pcg_version);
ALTER TABLE llx_accounting_account MODIFY COLUMN account_number varchar(32) NOT NULL;
create table llx_facture_rec_extrafields
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
@ -46,9 +44,6 @@ create table llx_facture_rec_extrafields
-- For 9.0
ALTER TABLE llx_accounting_account MODIFY COLUMN account_parent varchar(32) DEFAULT NULL;
ALTER TABLE llx_extrafields ADD COLUMN help text NULL;
ALTER TABLE llx_extrafields ADD COLUMN totalizable boolean DEFAULT FALSE after list;
ALTER TABLE llx_product_fournisseur_price ADD COLUMN desc_fourn text after ref_fourn;
@ -72,3 +67,6 @@ insert into llx_c_action_trigger (code,label,description,elementtype,rang) value
insert into llx_c_action_trigger (code,label,description,elementtype,rang) values ('EXPENSE_DELETE','Expense report deleted','Executed when an expense report is deleted','expensereport',204);
ALTER TABLE llx_payment_salary ADD COLUMN fk_projet integer DEFAULT NULL after amount;
ALTER TABLE llx_categorie ADD COLUMN ref_ext varchar(255);

View File

@ -29,7 +29,7 @@ create table llx_accounting_account
pcg_type varchar(20) NOT NULL, -- First part of Key for predefined groups
pcg_subtype varchar(20) NOT NULL, -- Second part of Key for predefined groups
account_number varchar(32) NOT NULL,
account_parent varchar(32) DEFAULT NULL, -- Hierarchic parent.
account_parent integer DEFAULT 0, -- Hierarchic parent.
label varchar(255) NOT NULL,
fk_accounting_category integer DEFAULT 0, -- ID of personalized group for report
fk_user_author integer DEFAULT NULL,

View File

@ -24,7 +24,8 @@ create table llx_categorie
rowid integer AUTO_INCREMENT PRIMARY KEY,
entity integer DEFAULT 1 NOT NULL, -- multi company id
fk_parent integer DEFAULT 0 NOT NULL,
label varchar(180) NOT NULL, -- category name
label varchar(180) NOT NULL, -- category ref/name
ref_ext varchar(255), -- reference into an external system (not used by dolibarr)
type tinyint DEFAULT 1 NOT NULL, -- category type (product, supplier, customer, member)
description text, -- description of the category
color varchar(8), -- color

View File

@ -736,7 +736,7 @@ if (! defined('NOLOGIN'))
{
$db->rollback();
session_destroy();
dol_print_error($db,'Error in some hooks afterLogin (or old trigger USER_LOGIN)');
dol_print_error($db,'Error in some hooks afterLogin');
exit;
}
else

View File

@ -113,11 +113,6 @@ class InterfaceMyModuleTriggers extends DolibarrTriggers
//case 'USER_SETINGROUP':
//case 'USER_REMOVEFROMGROUP':
//case 'USER_LOGIN':
//case 'USER_LOGIN_FAILED':
//case 'USER_LOGOUT':
//case 'USER_UPDATE_SESSION': // Warning: To increase performances, this action is triggered only if constant MAIN_ACTIVATE_UPDATESESSIONTRIGGER is set to 1.
// Actions
//case 'ACTION_MODIFY':
//case 'ACTION_CREATE':

View File

@ -103,15 +103,14 @@ if (! empty($id))
dol_syslog("cron_run_jobs.php Bad value for parameter job id", LOG_WARNING);
exit;
}
$filter=array();
$filter['t.rowid']=$id;
}
$result = $object->fetch_all('DESC','t.rowid', 0, 0, 1, $filter, 0);
$result = $object->fetch_all('ASC,ASC,ASC','t.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0);
if ($result<0)
{
echo "Error: ".$cronjob->error;
dol_syslog("cron_run_jobs.php fetch Error".$cronjob->error, LOG_WARNING);
echo "Error: ".$object->error;
dol_syslog("cron_run_jobs.php fetch Error".$object->error, LOG_WARNING);
exit;
}

View File

@ -1489,8 +1489,6 @@ class Ticket extends CommonObject
dol_syslog(get_class($this) . "::assignUser " . $this->error, LOG_ERR);
return - 1;
}
return 0;
}
/**

View File

@ -42,10 +42,11 @@ if (!empty($_SESSION["dol_authmode"]) && ($_SESSION["dol_authmode"] == 'forceuse
global $conf, $langs, $user;
// Appel des triggers
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php';
$interface=new Interfaces($db);
$result=$interface->run_triggers('USER_LOGOUT',$user,$user,$langs,$conf);
if ($result < 0) { $error++; }
// TODO @deprecated Remove this. Hook must be used, not this trigger.
//include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php';
//$interface=new Interfaces($db);
//$result=$interface->run_triggers('USER_LOGOUT',$user,$user,$langs,$conf);
//if ($result < 0) { $error++; }
// Fin appel triggers
// Hooks on logout

View File

@ -143,6 +143,12 @@ $object = new Cronjob($db);
$filter=array();
if (! empty($id)) {
if (! is_numeric($id))
{
echo "Error: Bad value for parameter job id";
dol_syslog("cron_run_jobs.php Bad value for parameter job id", LOG_WARNING);
exit;
}
$filter['t.rowid']=$id;
}
@ -162,7 +168,7 @@ foreach($object->lines as $val)
$qualifiedjobs[] = $val;
}
// TODO This sequence of code must be shared with code into public/cron/cron_run_jobs.php php page.
// TODO Duplicate. This sequence of code must be shared with code into public/cron/cron_run_jobs.php php page.
$nbofjobs=count($qualifiedjobs);
$nbofjobslaunchedok=0;