onoma 0.2.2 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +3 -0
- data/.gitlab-ci.yml +14 -0
- data/Gemfile +2 -0
- data/Rakefile +3 -6
- data/bin/rake +29 -0
- data/config/locales/arb.yml +77 -293
- data/config/locales/cmn.yml +69 -193
- data/config/locales/deu.yml +61 -1113
- data/config/locales/eng.yml +3146 -2987
- data/config/locales/fra.yml +629 -478
- data/config/locales/ita.yml +63 -1168
- data/config/locales/jpn.yml +80 -232
- data/config/locales/por.yml +63 -975
- data/config/locales/spa.yml +70 -616
- data/db/migrate/20170904223101_add_cultivable_zone_registry.xml +4 -0
- data/db/migrate/20171106085357_update_account_numbers.xml +431 -0
- data/db/migrate/20171212081801_add_fiscal_positions.xml +12 -0
- data/db/migrate/20180408190101_add_new_plant_variants.xml +7 -0
- data/db/migrate/20180409130101_add_common_crop.xml +4 -0
- data/db/migrate/20180418085027_add-hour-counter-indicator.xml +9 -0
- data/db/migrate/20180709134310_add_centralizing_field_to_accounts.xml +22 -0
- data/db/migrate/20180711093131_review_all_accounts_number_and_fallbacks.xml +431 -0
- data/db/migrate/20180806080646_edit_centralizing_field_accounts.xml +17 -0
- data/db/migrate/20180814184001_add_missing_categories.xml +12 -0
- data/db/migrate/20180907160001_edit_accounts_to_unlock_first_run.xml +21 -0
- data/db/migrate/20181004220301_add_journal_ledger.xml +4 -0
- data/db/migrate/20181205162401_add_intra_vat.xml +6 -0
- data/db/migrate/20181213153405_fix_accounting_systems.xml +7 -0
- data/db/migrate/20181217155149_fiscal_position_refers_to_accounting_system.xml +10 -0
- data/db/migrate/20181217173101_fiscal_position_reference_typo.xml +4 -0
- data/db/migrate/20190315154040_add_suspense_account.xml +4 -0
- data/db/migrate/20190326110849_add_asset_fixable_to_product_nature_categories.xml +25 -0
- data/db/migrate/20190326135443_change_product_nature_category_cultivable_zone_into_land.xml +21 -0
- data/db/migrate/20190329133808_change_land_fixed_assets_account_usage.xml +7 -0
- data/db/migrate/20190405120711_delete_land_sales_account_and_assign_land_parcels_sell_revenues_to_land.xml +5 -0
- data/db/migrate/20190412071057_add_new_fixed_assets_andn_depreciable_accounts.xml +22 -0
- data/db/migrate/20190509092804_add_account_exceptional_depreciations_imputations_expenses_for_fixed_assets.xml +4 -0
- data/db/migrate/20190514084753_add_approved_input_volume.xml +9 -0
- data/db/migrate/20190520072403_add_new_accounts.xml +58 -0
- data/db/migrate/20190521170601_add_missing_taxes.xml +7 -0
- data/db/migrate/20190611101014_change_deductible_vat_account.xml +5 -0
- data/db/migrate/20190620092151_fix_conflicts_in_new_accounts.xml +6 -0
- data/db/migrate/20190625152636_change_mixture_seed_product_nature_variant.xml +4 -0
- data/db/migrate/20190718130243_remove_services_expenses.xml +5 -0
- data/db/migrate/20190801142431_remove_accounts_from_pcg82.xml +5 -0
- data/db/migrate/20190807125202_add_nature_to_product_natures.xml +326 -0
- data/db/migrate/20190823091727_fix-cubic-meter-per-hectare-symbol.xml +5 -0
- data/db/migrate/20190909150402_add_staff_supply_stock_account.xml +4 -0
- data/db/migrate/20190913102036_add_caliber_indicator.xml +4 -0
- data/db/migrate/20190917161215_add_missing_mass_area_density_units.xml +21 -0
- data/db/migrate/20190917161216_update_quintal_symbol.xml +4 -0
- data/db/migrate/20190917161217_adds_more_info_to_units.xml +133 -0
- data/db/migrate/20190918074757_add_new_accounts.xml +8 -0
- data/db/migrate/20191001122750_add_accounts_fixed_assets_related.xml +10 -0
- data/db/migrate/20191016152118_add_missing_document_templates.xml +6 -0
- data/db/migrate/20191028175001_add_short_balance_sheet.xml +4 -0
- data/db/migrate/20191029131921_add_vine_equipments.xml +117 -0
- data/db/migrate/20191112132413_remove_roller_from_product_natures.xml +5 -0
- data/db/migrate/20191113134626_add_nature_to_new_product_natures.xml +11 -0
- data/db/migrate/20191125133327_add_missing_units_and_indicators.xml +5 -0
- data/db/migrate/20200107095554_add_signed_field_to_document_nature.xml +9 -0
- data/db/migrate/20200305160358_add_varieties_for_phytosanitary.xml +11 -0
- data/db/migrate/20200421123503_add_type_to_categories_and_variants.xml +1136 -0
- data/db/migrate/20200514092205_add_liter_per_hectoliter_unit.xml +4 -0
- data/db/migrate/20200722091859_triticale_derivative_of.xml +5 -0
- data/db/reference.xml +1934 -1676
- data/lib/onoma.rb +82 -24
- data/lib/onoma/item.rb +19 -3
- data/lib/onoma/migration/actions/base.rb +1 -5
- data/lib/onoma/migration/actions/item_change.rb +1 -5
- data/lib/onoma/migration/actions/item_creation.rb +2 -6
- data/lib/onoma/migration/actions/item_merging.rb +1 -5
- data/lib/onoma/migration/actions/item_removal.rb +1 -1
- data/lib/onoma/migration/actions/nomenclature_change.rb +1 -1
- data/lib/onoma/migration/actions/nomenclature_creation.rb +1 -1
- data/lib/onoma/migration/actions/nomenclature_removal.rb +1 -5
- data/lib/onoma/migration/actions/property_creation.rb +4 -4
- data/lib/onoma/migration/base.rb +38 -0
- data/lib/onoma/migrator.rb +13 -0
- data/lib/onoma/migrator/reference.rb +71 -0
- data/lib/onoma/migrator/translation.rb +76 -0
- data/lib/onoma/models/ability.rb +4 -0
- data/lib/onoma/models/account.rb +4 -0
- data/lib/onoma/models/accounting_system.rb +12 -0
- data/lib/onoma/models/activity_family.rb +4 -0
- data/lib/onoma/models/administrative_area.rb +4 -0
- data/lib/onoma/models/administrative_area_nature.rb +4 -0
- data/lib/onoma/models/analysis_nature.rb +4 -0
- data/lib/onoma/models/animal_life_state.rb +4 -0
- data/lib/onoma/models/cation_exchange_capacity_analysis_method.rb +4 -0
- data/lib/onoma/models/certification.rb +4 -0
- data/lib/onoma/models/certification_label.rb +4 -0
- data/lib/onoma/models/chemical_classification.rb +4 -0
- data/lib/onoma/models/chemical_element.rb +4 -0
- data/lib/onoma/models/country.rb +4 -0
- data/lib/onoma/models/crop_set.rb +4 -0
- data/lib/onoma/models/currency.rb +4 -0
- data/lib/onoma/models/delivery_mode.rb +4 -0
- data/lib/onoma/models/dimension.rb +4 -0
- data/lib/onoma/models/document_category.rb +4 -0
- data/lib/onoma/models/document_nature.rb +4 -0
- data/lib/onoma/models/entity_link_nature.rb +4 -0
- data/lib/onoma/models/event_nature.rb +4 -0
- data/lib/onoma/models/fence_perimeter.rb +4 -0
- data/lib/onoma/models/figure.rb +4 -0
- data/lib/onoma/models/fiscal_position.rb +4 -0
- data/lib/onoma/models/guide_nature.rb +4 -0
- data/lib/onoma/models/identifier_nature.rb +4 -0
- data/lib/onoma/models/indicator.rb +7 -0
- data/lib/onoma/models/issue_nature.rb +4 -0
- data/lib/onoma/models/land.rb +4 -0
- data/lib/onoma/models/language.rb +4 -0
- data/lib/onoma/models/mammalia_birth_condition.rb +4 -0
- data/lib/onoma/models/mammalia_reproduction_state.rb +4 -0
- data/lib/onoma/models/molecule.rb +4 -0
- data/lib/onoma/models/net_service.rb +4 -0
- data/lib/onoma/models/opportunity_origin.rb +4 -0
- data/lib/onoma/models/phosphorus_analysis_method.rb +4 -0
- data/lib/onoma/models/plant_life_state.rb +4 -0
- data/lib/onoma/models/plant_reproduction_state.rb +4 -0
- data/lib/onoma/models/plants_growth_level.rb +4 -0
- data/lib/onoma/models/procedure_action.rb +4 -0
- data/lib/onoma/models/procedure_category.rb +4 -0
- data/lib/onoma/models/procedure_nature.rb +4 -0
- data/lib/onoma/models/procedure_role.rb +4 -0
- data/lib/onoma/models/product_nature.rb +4 -0
- data/lib/onoma/models/product_nature_category.rb +4 -0
- data/lib/onoma/models/product_nature_variant.rb +4 -0
- data/lib/onoma/models/production_nature.rb +4 -0
- data/lib/onoma/models/production_system.rb +4 -0
- data/lib/onoma/models/production_usage.rb +4 -0
- data/lib/onoma/models/residue_elimination_method.rb +4 -0
- data/lib/onoma/models/role.rb +4 -0
- data/lib/onoma/models/running_cost.rb +4 -0
- data/lib/onoma/models/sex.rb +4 -0
- data/lib/onoma/models/soil_cultural_state.rb +4 -0
- data/lib/onoma/models/soil_nature.rb +4 -0
- data/lib/onoma/models/spatial_reference_system.rb +4 -0
- data/lib/onoma/models/tax.rb +4 -0
- data/lib/onoma/models/tax_nature.rb +4 -0
- data/lib/onoma/models/unit.rb +4 -0
- data/lib/onoma/models/variety.rb +31 -0
- data/lib/onoma/models/working_set.rb +4 -0
- data/lib/onoma/nomenclature.rb +19 -23
- data/lib/onoma/{database.rb → nomenclature_set.rb} +25 -57
- data/lib/onoma/{property.rb → property_nature.rb} +5 -8
- data/lib/onoma/record/base.rb +15 -0
- data/lib/onoma/reflection.rb +3 -3
- data/lib/onoma/version.rb +3 -1
- data/onoma.gemspec +19 -20
- metadata +156 -39
- data/lib/onoma/migration.rb +0 -122
- data/lib/onoma/migration/actions.rb +0 -9
@@ -0,0 +1,431 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<migration name="Update account numbers">
|
3
|
+
<item-change item="accounts#accrued_bank_interests" fr_pcg82="51800000"/>
|
4
|
+
<item-change item="accounts#accrued_interests" fr_pcg82="16880000"/>
|
5
|
+
<item-change item="accounts#accrued_interests_on_bank" fr_pcg82="16884000"/>
|
6
|
+
<item-change item="accounts#additionnal_taxes_on_distribution_entity_expenses" fr_pcg82="69600000"/>
|
7
|
+
<item-change item="accounts#adult_animal_asset_depreciations" fr_pcga="28410000"/>
|
8
|
+
<item-change item="accounts#adult_animal_assets" fr_pcga="24100000"/>
|
9
|
+
<item-change item="accounts#adult_animal_expenses" fr_pcga="60410000"/>
|
10
|
+
<item-change item="accounts#adult_animal_revenues" fr_pcga="70410000"/>
|
11
|
+
<item-change item="accounts#adult_reproductor_animals_inventory_variations" fr_pcga="71210000"/>
|
12
|
+
<item-change item="accounts#advance_noticed_charges_accounts" fr_pcg82="48600000"/>
|
13
|
+
<item-change item="accounts#advance_noticed_products_accounts" fr_pcg82="48700000"/>
|
14
|
+
<item-change item="accounts#advertisement_expenses" fr_pcg82="62310000"/>
|
15
|
+
<item-change item="accounts#advertising_expenses" fr_pcg82="62300000"/>
|
16
|
+
<item-change item="accounts#agricultural_disasters_compensations" fr_pcga="74300000"/>
|
17
|
+
<item-change item="accounts#animal_derivative_stock" fr_pcga="37500000"/>
|
18
|
+
<item-change item="accounts#animal_derivatives_revenues" fr_pcga="70200000"/>
|
19
|
+
<item-change item="accounts#animal_locative_expenses" fr_pcga="61440000"/>
|
20
|
+
<item-change item="accounts#animal_medicine_matter_expenses" fr_pcga="60150000"/>
|
21
|
+
<item-change item="accounts#animal_medicine_stock" fr_pcga="30150000"/>
|
22
|
+
<item-change item="accounts#animal_medicine_stocks_variation" fr_pcga="60315000"/>
|
23
|
+
<item-change item="accounts#animal_reproduction_matter_expenses" fr_pcga="60160000"/>
|
24
|
+
<item-change item="accounts#animal_reproduction_stock" fr_pcga="30160000"/>
|
25
|
+
<item-change item="accounts#animal_reproduction_stocks_variation" fr_pcga="60316000"/>
|
26
|
+
<item-change item="accounts#animal_revenues" fr_pcga="70400000"/>
|
27
|
+
<item-change item="accounts#animals_depreciations_inputations_expenses" fr_pcga="68114000"/>
|
28
|
+
<item-change item="accounts#animals_making_expenses_expenses" fr_pcga="60540000"/>
|
29
|
+
<item-change item="accounts#animals_subsidies" fr_pcga="74540000"/>
|
30
|
+
<item-change item="accounts#asset_impairment_losses" fr_pcg82="29000000"/>
|
31
|
+
<item-change item="accounts#assets_products_stock" fr_pcg82="36000000"/>
|
32
|
+
<item-change item="accounts#associate_social_contribution_expenses" fr_pcga="64600000"/>
|
33
|
+
<item-change item="accounts#associates_current_accounts" fr_pcga="45500000"/>
|
34
|
+
<item-change item="accounts#associates_frozen_accounts" fr_pcga="45530000"/>
|
35
|
+
<item-change item="accounts#associates_salary" fr_pcga="64130000"/>
|
36
|
+
<item-change item="accounts#attorneys" fr_pcg82="46700000"/>
|
37
|
+
<item-change item="accounts#banks" fr_pcg82="51200000"/>
|
38
|
+
<item-change item="accounts#banks_and_similar" fr_pcg82="51000000" pt_snc="12000000"/>
|
39
|
+
<item-change item="accounts#banks_services_expenses" fr_pcga="62700000"/>
|
40
|
+
<item-change item="accounts#biocorporeal_asset_depreciations" fr_pcga="28400000"/>
|
41
|
+
<item-change item="accounts#bonus_staff_expenses" fr_pcg82="64130000"/>
|
42
|
+
<item-change item="accounts#brands_and_patents_assets" fr_pcga="20500000"/>
|
43
|
+
<item-change item="accounts#building_assets" fr_pcga="21310000"/>
|
44
|
+
<item-change item="accounts#building_depreciations_inputations_expenses" fr_pcga="68113000"/>
|
45
|
+
<item-change item="accounts#campaigns_interests" fr_pcg82="66140000"/>
|
46
|
+
<item-change item="accounts#capital" fr_pcg82="10100000"/>
|
47
|
+
<item-change item="accounts#capitalized_revenues" fr_pcg82="72000000"/>
|
48
|
+
<item-change item="accounts#capitals" fr_pcg82="10000000" pt_snc="50000000"/>
|
49
|
+
<item-change item="accounts#cashes" fr_pcg82="53000000" pt_snc="11000000"/>
|
50
|
+
<item-change item="accounts#catalog_and_print_expenses" fr_pcg82="62360000"/>
|
51
|
+
<item-change item="accounts#clients" fr_pcg82="41100000" pt_snc="21000000"/>
|
52
|
+
<item-change item="accounts#co_ownership_and_locative_expenses" fr_pcga="61400000"/>
|
53
|
+
<item-change item="accounts#collected_vat" fr_pcg82="44571000" pt_snc="24330000"/>
|
54
|
+
<item-change item="accounts#collected_vat_to_resolve" fr_pcg82="44575000"/>
|
55
|
+
<item-change item="accounts#compensation_operations" fr_pcg82="47200000"/>
|
56
|
+
<item-change item="accounts#concession_asset_depreciations" fr_pcg82="28200000"/>
|
57
|
+
<item-change item="accounts#concession_assets" fr_pcga="22000000"/>
|
58
|
+
<item-change item="accounts#congress_and_symposium_expenses" fr_pcga="61850000"/>
|
59
|
+
<item-change item="accounts#construction_on_other_land_parcel_assets" fr_pcga="21400000"/>
|
60
|
+
<item-change item="accounts#construction_on_own_land_parcel_assets" fr_pcga="21300000"/>
|
61
|
+
<item-change item="accounts#cooperative_participation_assets" fr_pcga="26210000"/>
|
62
|
+
<item-change item="accounts#corporeal_asset_depreciations" fr_pcga="28100000"/>
|
63
|
+
<item-change item="accounts#corporeal_asset_revenues" fr_pcg82="72200000"/>
|
64
|
+
<item-change item="accounts#corporeal_assets" fr_pcga="21000000" pt_snc="43000000"/>
|
65
|
+
<item-change item="accounts#corporeals_and_incorporeals_depreciations_inputations_expenses" fr_pcg82="68110000"/>
|
66
|
+
<item-change item="accounts#credit_retained_earnings" fr_pcg82="11000000"/>
|
67
|
+
<item-change item="accounts#creditor_clients" fr_pcg82="41900000" pt_snc="21900000"/>
|
68
|
+
<item-change item="accounts#debit_retained_earnings" fr_pcg82="11900000"/>
|
69
|
+
<item-change item="accounts#debtor_suppliers" fr_pcg82="40900000"/>
|
70
|
+
<item-change item="accounts#deductible_asset_vat" fr_pcg82="44562000" pt_snc="24322000"/>
|
71
|
+
<item-change item="accounts#deductible_vat" fr_pcg82="44566000" pt_snc="24320000"/>
|
72
|
+
<item-change item="accounts#deductible_vat_to_resolve" fr_pcg82="44565000"/>
|
73
|
+
<item-change item="accounts#deferred_expense_accounts" fr_pcg82="48100000"/>
|
74
|
+
<item-change item="accounts#deprecated_client_entity_accounts" fr_pcg82="49100000"/>
|
75
|
+
<item-change item="accounts#deprecated_entity_accounts" fr_pcg82="49000000"/>
|
76
|
+
<item-change item="accounts#depreciation_revenues" fr_pcg82="78000000"/>
|
77
|
+
<item-change item="accounts#depreciations_inputations_expenses" fr_pcg82="68000000" pt_snc="64000000"/>
|
78
|
+
<item-change item="accounts#discount_and_reductions_expenses" fr_pcg82="60900000"/>
|
79
|
+
<item-change item="accounts#discount_and_reductions_revenues" fr_pcg82="70900000"/>
|
80
|
+
<item-change item="accounts#discount_from_cooperatives" fr_pcga="75400000"/>
|
81
|
+
<item-change item="accounts#discount_granted_expenses" fr_pcg82="66500000"/>
|
82
|
+
<item-change item="accounts#donation_exceptional_expenses" fr_pcga="67130000"/>
|
83
|
+
<item-change item="accounts#electricity_expenses" fr_pcga="60630000"/>
|
84
|
+
<item-change item="accounts#employee_participation_and_income_taxes_and_assimilated_payments_expenses" fr_pcg82="69000000"/>
|
85
|
+
<item-change item="accounts#employee_participation_expenses" fr_pcg82="69100000"/>
|
86
|
+
<item-change item="accounts#employee_representative_committees" fr_pcg82="42200000"/>
|
87
|
+
<item-change item="accounts#end_products_stock" fr_pcga="37000000"/>
|
88
|
+
<item-change item="accounts#enterprise_collected_vat" fr_pcga="44570000" pt_snc="24330000"/>
|
89
|
+
<item-change item="accounts#enterprise_deductible_vat" fr_pcga="44560000" pt_snc="24320000"/>
|
90
|
+
<item-change item="accounts#entity_collectable_taxes" fr_pcg82="44200000"/>
|
91
|
+
<item-change item="accounts#equipment_asset_depreciations" fr_pcga="28150000"/>
|
92
|
+
<item-change item="accounts#equipment_assets" fr_pcga="21540000"/>
|
93
|
+
<item-change item="accounts#equipment_cooperative_participation_assets" fr_pcga="26220000"/>
|
94
|
+
<item-change item="accounts#equipment_depreciations_inputations_expenses" fr_pcga="68115000"/>
|
95
|
+
<item-change item="accounts#equipment_expenses" fr_pcg82="60500000"/>
|
96
|
+
<item-change item="accounts#equipment_locative_expenses" fr_pcga="61420000"/>
|
97
|
+
<item-change item="accounts#equipment_maintenance_expenses" fr_pcga="61550000"/>
|
98
|
+
<item-change item="accounts#equipment_rent_expenses" fr_pcga="61320000"/>
|
99
|
+
<item-change item="accounts#equipment_subventions" fr_pcg82="13100000"/>
|
100
|
+
<item-change item="accounts#equity_securities" fr_pcg82="26100000"/>
|
101
|
+
<item-change item="accounts#equity_security_asset_impairment_losses" fr_pcg82="29600000"/>
|
102
|
+
<item-change item="accounts#establishment_charge_assets" fr_pcga="20100000"/>
|
103
|
+
<item-change item="accounts#exceptional_expenses" fr_pcga="67000000"/>
|
104
|
+
<item-change item="accounts#exceptional_revenues" fr_pcga="77000000"/>
|
105
|
+
<item-change item="accounts#exceptionnal_charge_transfer_revenues" fr_pcg82="79700000"/>
|
106
|
+
<item-change item="accounts#exceptionnal_depreciations_inputations_expenses" fr_pcg82="68700000"/>
|
107
|
+
<item-change item="accounts#exceptionnal_incorporeal_asset_depreciation_revenues" fr_pcg82="78700000"/>
|
108
|
+
<item-change item="accounts#expenses" fr_pcg82="60000000" pt_snc="60000000"/>
|
109
|
+
<item-change item="accounts#exploitation_depreciations_inputations_expenses" fr_pcg82="68100000"/>
|
110
|
+
<item-change item="accounts#exploitation_expenses_transfers" fr_pcga="79100000"/>
|
111
|
+
<item-change item="accounts#exploitation_risk_insurance_expenses" fr_pcga="61660000"/>
|
112
|
+
<item-change item="accounts#exploitation_subsidies" fr_pcga="74520000"/>
|
113
|
+
<item-change item="accounts#exploitation_subsidies_and_compensations" fr_pcga="74000000"/>
|
114
|
+
<item-change item="accounts#external_expenses" fr_pcga="62000000"/>
|
115
|
+
<item-change item="accounts#external_service_expenses" fr_pcg82="61000000"/>
|
116
|
+
<item-change item="accounts#external_staff_expenses" fr_pcga="62100000"/>
|
117
|
+
<item-change item="accounts#fees_expenses" fr_pcga="62200000"/>
|
118
|
+
<item-change item="accounts#fertilizer_expenses" fr_pcga="60110000"/>
|
119
|
+
<item-change item="accounts#fertilizer_stock" fr_pcga="30110000"/>
|
120
|
+
<item-change item="accounts#fertilizer_stocks_variation" fr_pcga="60311000"/>
|
121
|
+
<item-change item="accounts#fill_up_price_revenues" fr_pcga="70870000"/>
|
122
|
+
<item-change item="accounts#finances" fr_pcg82="50000000" pt_snc="10000000"/>
|
123
|
+
<item-change item="accounts#financial_asset_depreciation_revenues" fr_pcg82="78600000"/>
|
124
|
+
<item-change item="accounts#financial_charge_transfer_revenues" fr_pcg82="79600000"/>
|
125
|
+
<item-change item="accounts#financial_depreciations_inputations_expenses" fr_pcg82="68600000"/>
|
126
|
+
<item-change item="accounts#financial_expenses" fr_pcg82="66000000"/>
|
127
|
+
<item-change item="accounts#financial_year_result" fr_pcg82="12000000"/>
|
128
|
+
<item-change item="accounts#financial_year_result_balance" fr_pcg82="12800000"/>
|
129
|
+
<item-change item="accounts#financial_year_result_loss" fr_pcg82="12900000"/>
|
130
|
+
<item-change item="accounts#financial_year_result_profit" fr_pcg82="12000000"/>
|
131
|
+
<item-change item="accounts#financials_revenues" fr_pcga="76000000"/>
|
132
|
+
<item-change item="accounts#fiscal_expense_on_vacations" fr_pcg82="44800000"/>
|
133
|
+
<item-change item="accounts#fiscal_fine_exceptional_expenses" fr_pcga="67120000"/>
|
134
|
+
<item-change item="accounts#fiscal_integration_expenses" fr_pcg82="69800000"/>
|
135
|
+
<item-change item="accounts#fixed_asset_depreciations" fr_pcga="28000000"/>
|
136
|
+
<item-change item="accounts#fixed_assets" fr_pcg82="20000000" pt_snc="40000000"/>
|
137
|
+
<item-change item="accounts#fixed_assets_suppliers" fr_pcg82="40400000"/>
|
138
|
+
<item-change item="accounts#fixed_assets_values" fr_pcg82="67500000"/>
|
139
|
+
<item-change item="accounts#flat_rate_taxes_expenses" fr_pcg82="69700000"/>
|
140
|
+
<item-change item="accounts#foreign_exchange_expenses" fr_pcg82="66600000"/>
|
141
|
+
<item-change item="accounts#foreign_exchange_financials_revenues" fr_pcg82="76600000"/>
|
142
|
+
<item-change item="accounts#forwarding_agent_fees_expenses" fr_pcga="62230000"/>
|
143
|
+
<item-change item="accounts#fuel_matter_expenses" fr_pcga="60210000"/>
|
144
|
+
<item-change item="accounts#fuel_stock" fr_pcga="30210000"/>
|
145
|
+
<item-change item="accounts#fuels_expenses" fr_pcga="60640000"/>
|
146
|
+
<item-change item="accounts#gas_expenses" fr_pcga="60620000"/>
|
147
|
+
<item-change item="accounts#gas_stock" fr_pcga="30180000"/>
|
148
|
+
<item-change item="accounts#general_installation_asset_depreciations" fr_pcga="28181000"/>
|
149
|
+
<item-change item="accounts#general_installation_assets" fr_pcga="21350000"/>
|
150
|
+
<item-change item="accounts#global_land_parcel_assets" fr_pcg82="21100000"/>
|
151
|
+
<item-change item="accounts#government_payroll_tax_expenses" fr_pcg82="63100000"/>
|
152
|
+
<item-change item="accounts#government_tax_expenses" fr_pcg82="63500000"/>
|
153
|
+
<item-change item="accounts#guaranteed_obligations" fr_pcg82="44600000"/>
|
154
|
+
<item-change item="accounts#holding_accounts" fr_pcg82="45100000"/>
|
155
|
+
<item-change item="accounts#holding_company_and_associate_accounts" fr_pcg82="45000000" pt_snc="26000000"/>
|
156
|
+
<item-change item="accounts#home_consumption_production" fr_pcga="72600000"/>
|
157
|
+
<item-change item="accounts#in_cycle_products_stock" fr_pcg82="33000000"/>
|
158
|
+
<item-change item="accounts#in_cycle_services_stock" fr_pcg82="34000000"/>
|
159
|
+
<item-change item="accounts#income_taxes" fr_pcg82="44400000" pt_snc="24100000"/>
|
160
|
+
<item-change item="accounts#income_taxes_expenses" fr_pcg82="69500000"/>
|
161
|
+
<item-change item="accounts#incorporeal_asset_depreciation_revenues" fr_pcg82="78100000"/>
|
162
|
+
<item-change item="accounts#incorporeal_asset_depreciations" fr_pcga="28000000"/>
|
163
|
+
<item-change item="accounts#incorporeal_asset_revenues" fr_pcg82="72100000"/>
|
164
|
+
<item-change item="accounts#incorporeal_assets" fr_pcga="20000000" pt_snc="44000000"/>
|
165
|
+
<item-change item="accounts#incorporeals_depreciations_inputations_expenses" fr_pcga="68111000"/>
|
166
|
+
<item-change item="accounts#industrial_cooperative_participation_assets" fr_pcga="26240000"/>
|
167
|
+
<item-change item="accounts#infirmity_and_death_insurance_expenses" fr_pcga="61680000"/>
|
168
|
+
<item-change item="accounts#initial_individual_capital" fr_pcg82="10110000"/>
|
169
|
+
<item-change item="accounts#initial_individual_capital_variations" fr_pcg82="10120000"/>
|
170
|
+
<item-change item="accounts#initial_society_capital" fr_pcg82="10150000"/>
|
171
|
+
<item-change item="accounts#installation_sustainable_plant_assets" fr_pcga="24670000"/>
|
172
|
+
<item-change item="accounts#insurance_expenses" fr_pcg82="61600000"/>
|
173
|
+
<item-change item="accounts#interests_expenses" fr_pcga="66100000"/>
|
174
|
+
<item-change item="accounts#internal_transfers" fr_pcg82="58000000"/>
|
175
|
+
<item-change item="accounts#inventory_variations" fr_pcga="71000000"/>
|
176
|
+
<item-change item="accounts#invoice_to_create_clients" fr_pcg82="41800000" pt_snc="21500000"/>
|
177
|
+
<item-change item="accounts#irrecoverable_losses_on_debt_obligation_expenses" fr_pcg82="65400000"/>
|
178
|
+
<item-change item="accounts#irrigation_expenses" fr_pcga="60650000"/>
|
179
|
+
<item-change item="accounts#land_loans" fr_pcg82="16410000"/>
|
180
|
+
<item-change item="accounts#land_loans_interests" fr_pcg82="66110000"/>
|
181
|
+
<item-change item="accounts#land_parcel_asset_depreciations" fr_pcga="28110000"/>
|
182
|
+
<item-change item="accounts#land_parcel_assets" fr_pcga="21110000"/>
|
183
|
+
<item-change item="accounts#land_parcel_construction_asset_depreciations" fr_pcga="28120000"/>
|
184
|
+
<item-change item="accounts#land_parcel_construction_assets" fr_pcga="21200000"/>
|
185
|
+
<item-change item="accounts#land_parcel_construction_depreciations_inputations_expenses" fr_pcga="68112000"/>
|
186
|
+
<item-change item="accounts#land_parcel_locative_expenses" fr_pcga="61410000"/>
|
187
|
+
<item-change item="accounts#land_parcel_rent_expenses" fr_pcga="61310000"/>
|
188
|
+
<item-change item="accounts#land_parcel_sell_revenues" fr_pcga="77520000"/>
|
189
|
+
<item-change item="accounts#leasing_expenses" fr_pcg82="61200000"/>
|
190
|
+
<item-change item="accounts#legal_reserves" fr_pcg82="10610000"/>
|
191
|
+
<item-change item="accounts#licences_expenses" fr_pcga="65100000"/>
|
192
|
+
<item-change item="accounts#litigious_clients" fr_pcg82="41600000"/>
|
193
|
+
<item-change item="accounts#little_office_equipment_expenses" fr_pcga="60660000"/>
|
194
|
+
<item-change item="accounts#livestock_feed_matter_expenses" fr_pcga="60140000"/>
|
195
|
+
<item-change item="accounts#livestock_feed_stock" fr_pcga="30140000"/>
|
196
|
+
<item-change item="accounts#livestock_feed_stocks_variation" fr_pcga="60314000"/>
|
197
|
+
<item-change item="accounts#living_corporeal_assets" fr_pcga="24000000"/>
|
198
|
+
<item-change item="accounts#loans" fr_pcg82="16400000" pt_snc="25000000"/>
|
199
|
+
<item-change item="accounts#loans_interests" fr_pcg82="66100000" pt_snc="66150000"/>
|
200
|
+
<item-change item="accounts#long_cycle_animals_inventory_variations" fr_pcga="71310000"/>
|
201
|
+
<item-change item="accounts#long_cycle_cultivation_advances" fr_pcga="33100000"/>
|
202
|
+
<item-change item="accounts#long_cycle_product_inventory_variations" fr_pcga="71350000"/>
|
203
|
+
<item-change item="accounts#long_cycle_products_liquors_stock" fr_pcga="35200000"/>
|
204
|
+
<item-change item="accounts#long_cycle_products_stock" fr_pcga="35000000"/>
|
205
|
+
<item-change item="accounts#long_cycle_products_wines_stock" fr_pcga="35100000"/>
|
206
|
+
<item-change item="accounts#long_cycle_vegetals_inventory_variations" fr_pcga="71330000"/>
|
207
|
+
<item-change item="accounts#long_cycle_vegetals_stock" fr_pcga="33000000"/>
|
208
|
+
<item-change item="accounts#long_term_loans" fr_pcg82="16420000"/>
|
209
|
+
<item-change item="accounts#long_term_loans_interests" fr_pcg82="66120000"/>
|
210
|
+
<item-change item="accounts#long_time_animal_stock" fr_pcga="31000000"/>
|
211
|
+
<item-change item="accounts#maintenance_expenses" fr_pcg82="61500000"/>
|
212
|
+
<item-change item="accounts#maintenances_consumables_expenses" fr_pcga="60220000"/>
|
213
|
+
<item-change item="accounts#maintenances_consumables_stock" fr_pcga="30220000"/>
|
214
|
+
<item-change item="accounts#making_services_expenses" fr_pcga="60500000"/>
|
215
|
+
<item-change item="accounts#making_services_revenues" fr_pcga="70840000"/>
|
216
|
+
<item-change item="accounts#management_operation_exceptional_expenses" fr_pcga="67100000"/>
|
217
|
+
<item-change item="accounts#management_operation_exceptional_revenues" fr_pcg82="77100000"/>
|
218
|
+
<item-change item="accounts#market_fine_exceptional_expenses" fr_pcga="67110000"/>
|
219
|
+
<item-change item="accounts#materials_expenses" fr_pcga="60260000"/>
|
220
|
+
<item-change item="accounts#merchandising_accessory_expenses" fr_pcg82="60800000"/>
|
221
|
+
<item-change item="accounts#merchandising_accessory_revenues" fr_pcg82="70850000"/>
|
222
|
+
<item-change item="accounts#merchandising_expenses" fr_pcg82="60700000"/>
|
223
|
+
<item-change item="accounts#merchandising_products_stock" fr_pcg82="37000000"/>
|
224
|
+
<item-change item="accounts#merchandising_revenues" fr_pcg82="70700000"/>
|
225
|
+
<item-change item="accounts#merchandising_stocks_variation" fr_pcga="60370000"/>
|
226
|
+
<item-change item="accounts#office_equipment_asset_depreciations" fr_pcga="28183000"/>
|
227
|
+
<item-change item="accounts#office_equipment_assets" fr_pcga="21830000"/>
|
228
|
+
<item-change item="accounts#office_furniture_asset_depreciations" fr_pcga="28184000"/>
|
229
|
+
<item-change item="accounts#office_furniture_assets" fr_pcga="21840000"/>
|
230
|
+
<item-change item="accounts#office_supply_matter_expenses" fr_pcga="60240000"/>
|
231
|
+
<item-change item="accounts#other_animal_expenses" fr_pcga="60450000"/>
|
232
|
+
<item-change item="accounts#other_animal_revenues" fr_pcga="70450000"/>
|
233
|
+
<item-change item="accounts#other_asset_depreciations" fr_pcga="28188000"/>
|
234
|
+
<item-change item="accounts#other_assets" fr_pcga="21880000"/>
|
235
|
+
<item-change item="accounts#other_building_asset_depreciations" fr_pcga="28140000"/>
|
236
|
+
<item-change item="accounts#other_building_expenses" fr_pcga="61540000"/>
|
237
|
+
<item-change item="accounts#other_compensations" fr_pcga="74400000"/>
|
238
|
+
<item-change item="accounts#other_consumable_matter_expenses" fr_pcga="60270000"/>
|
239
|
+
<item-change item="accounts#other_consumables_stock" fr_pcga="30270000"/>
|
240
|
+
<item-change item="accounts#other_corporeal_asset_depreciations" fr_pcga="28180000"/>
|
241
|
+
<item-change item="accounts#other_corporeal_assets" fr_pcga="21800000"/>
|
242
|
+
<item-change item="accounts#other_day_to_day_management_expenses" fr_pcg82="65000000"/>
|
243
|
+
<item-change item="accounts#other_day_to_day_management_revenues" fr_pcg82="75000000"/>
|
244
|
+
<item-change item="accounts#other_debt_obligation_financials_revenues" fr_pcg82="76300000"/>
|
245
|
+
<item-change item="accounts#other_entities_payroll_tax_expenses" fr_pcg82="63300000"/>
|
246
|
+
<item-change item="accounts#other_entities_tax_expenses" fr_pcg82="63700000"/>
|
247
|
+
<item-change item="accounts#other_expenses" fr_pcga="61800000"/>
|
248
|
+
<item-change item="accounts#other_exploitation_subsidies" fr_pcga="74580000"/>
|
249
|
+
<item-change item="accounts#other_fees_expenses" fr_pcga="62260000"/>
|
250
|
+
<item-change item="accounts#other_financial_expenses" fr_pcg82="66800000"/>
|
251
|
+
<item-change item="accounts#other_financials_asset_revenues" fr_pcg82="76200000"/>
|
252
|
+
<item-change item="accounts#other_financials_revenues" fr_pcg82="76800000"/>
|
253
|
+
<item-change item="accounts#other_general_installation_assets" fr_pcga="21810000"/>
|
254
|
+
<item-change item="accounts#other_incorporeal_asset_depreciations" fr_pcga="28080000"/>
|
255
|
+
<item-change item="accounts#other_incorporeal_assets" fr_pcga="20800000"/>
|
256
|
+
<item-change item="accounts#other_interests_expenses" fr_pcga="66180000"/>
|
257
|
+
<item-change item="accounts#other_investment_subventions" fr_pcg82="13800000"/>
|
258
|
+
<item-change item="accounts#other_investment_subventions_in_earnings_statement" fr_pcg82="13900000"/>
|
259
|
+
<item-change item="accounts#other_materials_stock" fr_pcga="30260000"/>
|
260
|
+
<item-change item="accounts#other_professional_agricultural_participation_assets" fr_pcga="26280000"/>
|
261
|
+
<item-change item="accounts#other_reserves" fr_pcg82="10680000"/>
|
262
|
+
<item-change item="accounts#other_social_expenses" fr_pcg82="64700000"/>
|
263
|
+
<item-change item="accounts#other_social_organisation" fr_pcg82="43700000"/>
|
264
|
+
<item-change item="accounts#other_staff_expenses" fr_pcga="64800000"/>
|
265
|
+
<item-change item="accounts#other_supplies" fr_pcg82="32000000"/>
|
266
|
+
<item-change item="accounts#other_supply_expenses" fr_pcg82="60200000"/>
|
267
|
+
<item-change item="accounts#other_supply_stocks_variation" fr_pcga="60320000"/>
|
268
|
+
<item-change item="accounts#other_taxes" fr_pcga="63500000"/>
|
269
|
+
<item-change item="accounts#other_usual_running_expenses" fr_pcga="65800000"/>
|
270
|
+
<item-change item="accounts#other_usual_running_profits" fr_pcga="75800000"/>
|
271
|
+
<item-change item="accounts#other_various_interests_expenses" fr_pcga="66188000"/>
|
272
|
+
<item-change item="accounts#others_corporeals_depreciations_inputations_expenses" fr_pcga="68118000"/>
|
273
|
+
<item-change item="accounts#others_taxes_and_assimilated_payments" fr_pcg82="44700000"/>
|
274
|
+
<item-change item="accounts#outstanding_adult_animal_assets" fr_pcga="23410000"/>
|
275
|
+
<item-change item="accounts#outstanding_assets" fr_pcga="23000000" pt_snc="45000000"/>
|
276
|
+
<item-change item="accounts#outstanding_construction_on_other_land_parcel_assets" fr_pcga="23140000"/>
|
277
|
+
<item-change item="accounts#outstanding_construction_on_own_land_parcel_assets" fr_pcga="23130000"/>
|
278
|
+
<item-change item="accounts#outstanding_corporeal_assets" fr_pcga="23100000"/>
|
279
|
+
<item-change item="accounts#outstanding_equipment_assets" fr_pcga="23150000"/>
|
280
|
+
<item-change item="accounts#outstanding_land_parcel_assets" fr_pcga="23110000"/>
|
281
|
+
<item-change item="accounts#outstanding_land_parcel_construction_assets" fr_pcga="23120000"/>
|
282
|
+
<item-change item="accounts#outstanding_living_corporeal_assets" fr_pcga="23400000"/>
|
283
|
+
<item-change item="accounts#outstanding_other_general_installation_assets" fr_pcga="23180000"/>
|
284
|
+
<item-change item="accounts#outstanding_service_animal_assets" fr_pcga="23430000"/>
|
285
|
+
<item-change item="accounts#outstanding_sustainables_plants_assets" fr_pcga="23460000"/>
|
286
|
+
<item-change item="accounts#outstanding_young_animal_assets" fr_pcga="23420000"/>
|
287
|
+
<item-change item="accounts#own_building_asset_depreciations" fr_pcga="28130000"/>
|
288
|
+
<item-change item="accounts#own_building_expenses" fr_pcga="61530000"/>
|
289
|
+
<item-change item="accounts#owner_account" fr_pcg82="10800000"/>
|
290
|
+
<item-change item="accounts#owner_remuneration" fr_pcg82="64400000"/>
|
291
|
+
<item-change item="accounts#ownership_assets" fr_pcga="27100000"/>
|
292
|
+
<item-change item="accounts#ownership_loan" fr_pcga="27400000"/>
|
293
|
+
<item-change item="accounts#packaging" fr_pcga="60170000"/>
|
294
|
+
<item-change item="accounts#partial_net_product_on_long_term_operation_revenues" fr_pcga="73000000"/>
|
295
|
+
<item-change item="accounts#participation_financials_revenues" fr_pcg82="76100000"/>
|
296
|
+
<item-change item="accounts#participation_losses_on_debt_obligation_expenses" fr_pcg82="66400000"/>
|
297
|
+
<item-change item="accounts#participations" fr_pcg82="26000000" pt_snc="41000000"/>
|
298
|
+
<item-change item="accounts#particular_operation_with_state" fr_pcg82="44300000"/>
|
299
|
+
<item-change item="accounts#payment_guarantees" fr_pcg82="27500000"/>
|
300
|
+
<item-change item="accounts#pending_deposit_payments" fr_pcg82="51100000" pt_snc="18000000"/>
|
301
|
+
<item-change item="accounts#plant_derivative_stock" fr_pcga="37400000"/>
|
302
|
+
<item-change item="accounts#plant_derivatives_revenues" fr_pcga="70100000"/>
|
303
|
+
<item-change item="accounts#plant_medicine_matter_expenses" fr_pcga="60130000"/>
|
304
|
+
<item-change item="accounts#plant_medicine_stock" fr_pcga="30130000"/>
|
305
|
+
<item-change item="accounts#plant_medicine_stocks_variation" fr_pcga="60313000"/>
|
306
|
+
<item-change item="accounts#plants_subsidies" fr_pcga="74510000"/>
|
307
|
+
<item-change item="accounts#previous_fiscal_year_exceptional_revenues" fr_pcg82="77200000"/>
|
308
|
+
<item-change item="accounts#previous_fiscal_year_expenses" fr_pcg82="67200000"/>
|
309
|
+
<item-change item="accounts#previous_product_deferral_expenses" fr_pcg82="69900000"/>
|
310
|
+
<item-change item="accounts#principal_associates_current_accounts" fr_pcga="45510000"/>
|
311
|
+
<item-change item="accounts#processing_products_revenues" fr_pcga="70300000"/>
|
312
|
+
<item-change item="accounts#processing_products_stock" fr_pcga="37600000"/>
|
313
|
+
<item-change item="accounts#product_accessory_revenues" fr_pcg82="70800000"/>
|
314
|
+
<item-change item="accounts#product_inventory_variations" fr_pcg82="71300000"/>
|
315
|
+
<item-change item="accounts#products_inventory_variations" fr_pcga="71370000"/>
|
316
|
+
<item-change item="accounts#products_specials_taxes" fr_pcga="63400000"/>
|
317
|
+
<item-change item="accounts#products_stock" fr_pcg82="35000000"/>
|
318
|
+
<item-change item="accounts#professional_agricultural_organization_assets" fr_pcga="26200000"/>
|
319
|
+
<item-change item="accounts#professional_subscriptions_expenses" fr_pcga="62800000"/>
|
320
|
+
<item-change item="accounts#raw_material_and_supplies" fr_pcg82="31000000"/>
|
321
|
+
<item-change item="accounts#raw_material_expenses" fr_pcga="60280000"/>
|
322
|
+
<item-change item="accounts#raw_matter_expenses" fr_pcg82="60100000"/>
|
323
|
+
<item-change item="accounts#raw_product_stock" fr_pcga="30280000"/>
|
324
|
+
<item-change item="accounts#redeemable_land_parcel_construction_assets" fr_pcga="21210000"/>
|
325
|
+
<item-change item="accounts#reductions" fr_pcga="76500000"/>
|
326
|
+
<item-change item="accounts#reevaluation_gaps" fr_pcg82="10500000"/>
|
327
|
+
<item-change item="accounts#regularisation_accounts" fr_pcg82="48000000"/>
|
328
|
+
<item-change item="accounts#rent_expenses" fr_pcg82="61300000"/>
|
329
|
+
<item-change item="accounts#report_vat_credit" fr_pcg82="44567000"/>
|
330
|
+
<item-change item="accounts#research_and_development_charge_assets" fr_pcga="20300000"/>
|
331
|
+
<item-change item="accounts#reserves" fr_pcg82="10600000"/>
|
332
|
+
<item-change item="accounts#residual_products_revenues" fr_pcga="70500000"/>
|
333
|
+
<item-change item="accounts#residual_products_stock" fr_pcga="37700000"/>
|
334
|
+
<item-change item="accounts#retained_earnings" fr_pcg82="11000000"/>
|
335
|
+
<item-change item="accounts#revenue_subsidies" fr_pcga="74530000"/>
|
336
|
+
<item-change item="accounts#revenues" fr_pcg82="70000000" pt_snc="70000000"/>
|
337
|
+
<item-change item="accounts#salary_social_contribution_expenses" fr_pcga="64500000"/>
|
338
|
+
<item-change item="accounts#sales_assets_revenues" fr_pcga="77500000"/>
|
339
|
+
<item-change item="accounts#seed_expenses" fr_pcga="60120000"/>
|
340
|
+
<item-change item="accounts#seed_stock" fr_pcga="30120000"/>
|
341
|
+
<item-change item="accounts#seed_stocks_variation" fr_pcga="60312000"/>
|
342
|
+
<item-change item="accounts#service_animal_asset_depreciations" fr_pcga="28430000"/>
|
343
|
+
<item-change item="accounts#service_animal_assets" fr_pcga="24300000"/>
|
344
|
+
<item-change item="accounts#service_discount_and_reductions_expenses" fr_pcg82="61900000"/>
|
345
|
+
<item-change item="accounts#services_expenses" fr_pcg82="60400000"/>
|
346
|
+
<item-change item="accounts#services_revenues" fr_pcg82="70600000"/>
|
347
|
+
<item-change item="accounts#share_asset_subsidies" fr_pcga="77700000"/>
|
348
|
+
<item-change item="accounts#share_capital_bonus" fr_pcg82="10400000"/>
|
349
|
+
<item-change item="accounts#shared_result_operations_expenses" fr_pcg82="65500000"/>
|
350
|
+
<item-change item="accounts#short_cycle_animals_inventory_variations" fr_pcga="71320000"/>
|
351
|
+
<item-change item="accounts#short_cycle_cultivation_advances" fr_pcga="34100000"/>
|
352
|
+
<item-change item="accounts#short_cycle_cultivation_advances_culturals_ways" fr_pcga="34150000"/>
|
353
|
+
<item-change item="accounts#short_cycle_cultivation_advances_fertilizers" fr_pcga="34110000"/>
|
354
|
+
<item-change item="accounts#short_cycle_cultivation_advances_plants_medicines" fr_pcga="34130000"/>
|
355
|
+
<item-change item="accounts#short_cycle_cultivation_advances_seeds" fr_pcga="34120000"/>
|
356
|
+
<item-change item="accounts#short_cycle_product_inventory_variations" fr_pcga="71360000"/>
|
357
|
+
<item-change item="accounts#short_cycle_products_stock" fr_pcga="36000000"/>
|
358
|
+
<item-change item="accounts#short_cycle_vegetals_inventory_variations" fr_pcga="71340000"/>
|
359
|
+
<item-change item="accounts#short_cycle_vegetals_stock" fr_pcga="34000000"/>
|
360
|
+
<item-change item="accounts#short_term_investment_financials_revenues" fr_pcg82="76400000"/>
|
361
|
+
<item-change item="accounts#short_term_investment_transfer_expenses" fr_pcg82="66700000"/>
|
362
|
+
<item-change item="accounts#short_term_investment_transfer_financials_revenues" fr_pcg82="76700000"/>
|
363
|
+
<item-change item="accounts#short_term_loans" fr_pcg82="16430000"/>
|
364
|
+
<item-change item="accounts#short_term_loans_interests" fr_pcg82="66130000"/>
|
365
|
+
<item-change item="accounts#short_time_animal_stock" fr_pcga="32000000"/>
|
366
|
+
<item-change item="accounts#social_agricultural_mutuality" fr_pcga="43100000"/>
|
367
|
+
<item-change item="accounts#social_expense_on_vacations" fr_pcg82="43800000"/>
|
368
|
+
<item-change item="accounts#social_security" fr_pcg82="43100000"/>
|
369
|
+
<item-change item="accounts#staff_advances" fr_pcg82="42500000"/>
|
370
|
+
<item-change item="accounts#staff_and_linked_accounts" fr_pcg82="42000000"/>
|
371
|
+
<item-change item="accounts#staff_bonus_participation" fr_pcg82="42400000"/>
|
372
|
+
<item-change item="accounts#staff_due_remunerations" fr_pcg82="42100000" pt_snc="23100000"/>
|
373
|
+
<item-change item="accounts#staff_expense_to_sold" fr_pcg82="42800000"/>
|
374
|
+
<item-change item="accounts#staff_expenses" fr_pcga="64000000" pt_snc="63000000"/>
|
375
|
+
<item-change item="accounts#staff_oppositions" fr_pcg82="42700000"/>
|
376
|
+
<item-change item="accounts#staff_remuneration" fr_pcg82="64100000"/>
|
377
|
+
<item-change item="accounts#staff_salary" fr_pcga="64110000"/>
|
378
|
+
<item-change item="accounts#staff_submissions" fr_pcg82="42600000"/>
|
379
|
+
<item-change item="accounts#state_and_other_public_entities" fr_pcg82="44000000" pt_snc="24000000"/>
|
380
|
+
<item-change item="accounts#state_emission_quota_to_restitute" fr_pcg82="44900000"/>
|
381
|
+
<item-change item="accounts#stocks" fr_pcg82="30000000" pt_snc="30000000"/>
|
382
|
+
<item-change item="accounts#stocks_variation" fr_pcga="60300000" pt_snc="60300000"/>
|
383
|
+
<item-change item="accounts#studies_and_research_expenses" fr_pcga="61700000"/>
|
384
|
+
<item-change item="accounts#subcontracting_expenses" fr_pcg82="61100000"/>
|
385
|
+
<item-change item="accounts#subsidies" fr_pcga="74500000"/>
|
386
|
+
<item-change item="accounts#subsidy_to_receive" fr_pcg82="44100000"/>
|
387
|
+
<item-change item="accounts#sundry_debtors_and_creditors" fr_pcga="46700000" pt_snc="27800000"/>
|
388
|
+
<item-change item="accounts#suppliers" fr_pcg82="40100000" pt_snc="22100000"/>
|
389
|
+
<item-change item="accounts#suppliers_balance_after_compensation" fr_pcg82="40200000"/>
|
390
|
+
<item-change item="accounts#suppliers_invoices_not_received" fr_pcg82="40800000" pt_snc="22500000"/>
|
391
|
+
<item-change item="accounts#supply_stock" fr_pcga="30100000"/>
|
392
|
+
<item-change item="accounts#supply_stocks_variation" fr_pcga="60310000"/>
|
393
|
+
<item-change item="accounts#sustainable_packaging_asset_depreciations" fr_pcga="28186000"/>
|
394
|
+
<item-change item="accounts#sustainable_packaging_assets" fr_pcga="21860000"/>
|
395
|
+
<item-change item="accounts#sustainables_plants_asset_depreciations" fr_pcga="28460000"/>
|
396
|
+
<item-change item="accounts#sustainables_plants_assets" fr_pcga="24600000"/>
|
397
|
+
<item-change item="accounts#sustainables_plants_on_other_land_parcel_assets" fr_pcga="24650000"/>
|
398
|
+
<item-change item="accounts#sustainables_plants_on_own_land_parcel_assets" fr_pcga="24610000"/>
|
399
|
+
<item-change item="accounts#tax_depreciation_revenues" fr_pcg82="78700000"/>
|
400
|
+
<item-change item="accounts#taxes_expenses" fr_pcg82="63000000"/>
|
401
|
+
<item-change item="accounts#technical_installation_equipment_and_tools_assets" fr_pcga="21500000"/>
|
402
|
+
<item-change item="accounts#technical_installation_on_other_land_parcel_assets" fr_pcga="21520000"/>
|
403
|
+
<item-change item="accounts#technical_installation_on_own_land_parcel_assets" fr_pcga="21510000"/>
|
404
|
+
<item-change item="accounts#telecommunications_expenses" fr_pcga="62600000"/>
|
405
|
+
<item-change item="accounts#temporary_operations" fr_pcg82="47000000"/>
|
406
|
+
<item-change item="accounts#third_party" fr_pcg82="40000000" pt_snc="20000000"/>
|
407
|
+
<item-change item="accounts#tools_assets" fr_pcga="21550000"/>
|
408
|
+
<item-change item="accounts#trade_show_expenses" fr_pcg82="62330000"/>
|
409
|
+
<item-change item="accounts#transfer_revenues" fr_pcg82="79000000"/>
|
410
|
+
<item-change item="accounts#transport_vehicle_asset_depreciations" fr_pcga="28182000"/>
|
411
|
+
<item-change item="accounts#transport_vehicle_assets" fr_pcga="21820000"/>
|
412
|
+
<item-change item="accounts#transports_expenses" fr_pcga="62400000"/>
|
413
|
+
<item-change item="accounts#travels_expenses" fr_pcga="62500000"/>
|
414
|
+
<item-change item="accounts#trust_creation_operation_expenses" fr_pcg82="67400000"/>
|
415
|
+
<item-change item="accounts#unstorable_expenses" fr_pcg82="60600000"/>
|
416
|
+
<item-change item="accounts#usual_associates_current_accounts" fr_pcga="45520000"/>
|
417
|
+
<item-change item="accounts#usual_bank_overdraft" fr_pcg82="51900000"/>
|
418
|
+
<item-change item="accounts#various_exceptional_revenues" fr_pcg82="77800000"/>
|
419
|
+
<item-change item="accounts#vat" fr_pcga="44500000" pt_snc="24300000"/>
|
420
|
+
<item-change item="accounts#vat_to_pay" fr_pcg82="44551000"/>
|
421
|
+
<item-change item="accounts#vegetals_making_services_expenses" fr_pcga="60510000"/>
|
422
|
+
<item-change item="accounts#veterinary_fees_expenses" fr_pcga="62250000"/>
|
423
|
+
<item-change item="accounts#waiting_vat" fr_pcg82="44580000"/>
|
424
|
+
<item-change item="accounts#water_expenses" fr_pcga="60610000"/>
|
425
|
+
<item-change item="accounts#workshop_supplies_stock" fr_pcga="30230000"/>
|
426
|
+
<item-change item="accounts#young_animal_asset_depreciations" fr_pcga="28420000"/>
|
427
|
+
<item-change item="accounts#young_animal_assets" fr_pcga="24200000"/>
|
428
|
+
<item-change item="accounts#young_animal_expenses" fr_pcga="60420000"/>
|
429
|
+
<item-change item="accounts#young_animal_revenues" fr_pcga="70420000"/>
|
430
|
+
<item-change item="accounts#young_reproductor_animals_inventory_variations" fr_pcga="71220000"/>
|
431
|
+
</migration>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<migration name="Add fiscal positions">
|
3
|
+
<nomenclature-creation nomenclature="fiscal_positions"/>
|
4
|
+
<property-creation property="fiscal_positions.country" type="item" choices="countries"/>
|
5
|
+
<property-creation property="fiscal_positions.code" type="string"/>
|
6
|
+
<item-creation item="fiscal_positions#fr_ba_ir" country="fr" code="BA-IR"/>
|
7
|
+
<item-creation item="fiscal_positions#fr_ba_is" country="fr" code="BA-IS"/>
|
8
|
+
<item-creation item="fiscal_positions#fr_bic_ir" country="fr" code="BIC-IR"/>
|
9
|
+
<item-creation item="fiscal_positions#fr_bic_is" country="fr" code="BIC-IS"/>
|
10
|
+
<item-creation item="fiscal_positions#fr_bnc_ir" country="fr" code="BNC-IR"/>
|
11
|
+
<item-creation item="fiscal_positions#fr_bnc_is" country="fr" code="BNC-IS"/>
|
12
|
+
</migration>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<migration name="Add new plant variants">
|
3
|
+
<item-creation item="product_nature_variants#common_carrot_crop" nature="vegetable_crop" variety="daucus_carota" frozen_indicators_values="net_surface_area: 1.00hectare" unit_name="hectare"/>
|
4
|
+
<item-creation item="product_nature_variants#common_linum_crop" nature="crop" variety="linum_usitatissimum_annua" frozen_indicators_values="net_surface_area: 1.00hectare" unit_name="hectare"/>
|
5
|
+
<item-creation item="product_nature_variants#common_onion_crop" nature="crop" variety="allium_cepa" frozen_indicators_values="net_surface_area: 1.00hectare" unit_name="hectare"/>
|
6
|
+
<item-creation item="product_nature_variants#common_beta_crop" nature="crop" variety="beta_vulgaris" frozen_indicators_values="net_surface_area: 1.00hectare" unit_name="hectare"/>
|
7
|
+
</migration>
|