onoma 0.3.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- 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/eng.yml +134 -46
- data/config/locales/fra.yml +233 -195
- data/db/migrate/20170904223101_add_cultivable_zone_registry.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/migrate/20200925153320_fix_outgoing_payment_list_document_nature.xml +7 -0
- data/db/reference.xml +1434 -1265
- 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 +16 -17
- metadata +119 -30
- data/db/db.xml +0 -0
- data/lib/onoma/migration.rb +0 -122
- data/lib/onoma/migration/actions.rb +0 -9
@@ -0,0 +1,5 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<migration name="Remove accounts from pcg82">
|
3
|
+
<item-change item="accounts#adult_animal_expenses" fr_pcga="6041" fr_pcg82="NONE"/>
|
4
|
+
<item-change item="accounts#other_animal_expenses" fr_pcga="6045" fr_pcg82="NONE"/>
|
5
|
+
</migration>
|
@@ -0,0 +1,326 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<migration name="Add nature to product natures">
|
3
|
+
<property-creation property="product_natures.nature" type="choice" choices="animal, article, crop, equipment, fee_and_service, worker, zone"/>
|
4
|
+
|
5
|
+
<item-change item="product_natures#bee_band" nature="animal"/>
|
6
|
+
<item-change item="product_natures#bumblebee_band" nature="animal"/>
|
7
|
+
<item-change item="product_natures#calf" nature="animal"/>
|
8
|
+
<item-change item="product_natures#cattle_herd" nature="animal"/>
|
9
|
+
<item-change item="product_natures#duck_band" nature="animal"/>
|
10
|
+
<item-change item="product_natures#duck_herd" nature="animal"/>
|
11
|
+
<item-change item="product_natures#female_adult_cat" nature="animal"/>
|
12
|
+
<item-change item="product_natures#female_adult_cattle_herd" nature="animal"/>
|
13
|
+
<item-change item="product_natures#female_adult_cow" nature="animal"/>
|
14
|
+
<item-change item="product_natures#female_adult_dog" nature="animal"/>
|
15
|
+
<item-change item="product_natures#female_adult_goat" nature="animal"/>
|
16
|
+
<item-change item="product_natures#female_adult_goat_herd" nature="animal"/>
|
17
|
+
<item-change item="product_natures#female_adult_horse" nature="animal"/>
|
18
|
+
<item-change item="product_natures#female_adult_pig" nature="animal"/>
|
19
|
+
<item-change item="product_natures#female_adult_sheep" nature="animal"/>
|
20
|
+
<item-change item="product_natures#female_adult_sheep_herd" nature="animal"/>
|
21
|
+
<item-change item="product_natures#female_rabbit" nature="animal"/>
|
22
|
+
<item-change item="product_natures#female_young_cat" nature="animal"/>
|
23
|
+
<item-change item="product_natures#female_young_cow" nature="animal"/>
|
24
|
+
<item-change item="product_natures#female_young_dog" nature="animal"/>
|
25
|
+
<item-change item="product_natures#female_young_goat" nature="animal"/>
|
26
|
+
<item-change item="product_natures#female_young_sheep" nature="animal"/>
|
27
|
+
<item-change item="product_natures#goat_herd" nature="animal"/>
|
28
|
+
<item-change item="product_natures#hen_band" nature="animal"/>
|
29
|
+
<item-change item="product_natures#hen_herd" nature="animal"/>
|
30
|
+
<item-change item="product_natures#horse_herd" nature="animal"/>
|
31
|
+
<item-change item="product_natures#lamb" nature="animal"/>
|
32
|
+
<item-change item="product_natures#male_adult_cat" nature="animal"/>
|
33
|
+
<item-change item="product_natures#male_adult_cow" nature="animal"/>
|
34
|
+
<item-change item="product_natures#male_adult_dog" nature="animal"/>
|
35
|
+
<item-change item="product_natures#male_adult_goat" nature="animal"/>
|
36
|
+
<item-change item="product_natures#male_adult_goat_herd" nature="animal"/>
|
37
|
+
<item-change item="product_natures#male_adult_horse" nature="animal"/>
|
38
|
+
<item-change item="product_natures#male_adult_pig" nature="animal"/>
|
39
|
+
<item-change item="product_natures#male_adult_sheep" nature="animal"/>
|
40
|
+
<item-change item="product_natures#male_rabbit" nature="animal"/>
|
41
|
+
<item-change item="product_natures#male_young_cat" nature="animal"/>
|
42
|
+
<item-change item="product_natures#male_young_cow" nature="animal"/>
|
43
|
+
<item-change item="product_natures#male_young_dog" nature="animal"/>
|
44
|
+
<item-change item="product_natures#male_young_goat" nature="animal"/>
|
45
|
+
<item-change item="product_natures#male_young_sheep" nature="animal"/>
|
46
|
+
<item-change item="product_natures#oyster_band" nature="animal"/>
|
47
|
+
<item-change item="product_natures#pig_band" nature="animal"/>
|
48
|
+
<item-change item="product_natures#pig_herd" nature="animal"/>
|
49
|
+
<item-change item="product_natures#piglet_band" nature="animal"/>
|
50
|
+
<item-change item="product_natures#rabbit_herd" nature="animal"/>
|
51
|
+
<item-change item="product_natures#salmon_band" nature="animal"/>
|
52
|
+
<item-change item="product_natures#sheep_herd" nature="animal"/>
|
53
|
+
<item-change item="product_natures#young_rabbit" nature="animal"/>
|
54
|
+
|
55
|
+
<item-change item="product_natures#additive" nature="article"/>
|
56
|
+
<item-change item="product_natures#animal_food" nature="article"/>
|
57
|
+
<item-change item="product_natures#animal_litter" nature="article"/>
|
58
|
+
<item-change item="product_natures#animal_medicine" nature="article"/>
|
59
|
+
<item-change item="product_natures#bean" nature="article"/>
|
60
|
+
<item-change item="product_natures#beef_meat" nature="article"/>
|
61
|
+
<item-change item="product_natures#beet" nature="article"/>
|
62
|
+
<item-change item="product_natures#bottle" nature="article"/>
|
63
|
+
<item-change item="product_natures#cabbage" nature="article"/>
|
64
|
+
<item-change item="product_natures#carrot" nature="article"/>
|
65
|
+
<item-change item="product_natures#chard" nature="article"/>
|
66
|
+
<item-change item="product_natures#cheese" nature="article"/>
|
67
|
+
<item-change item="product_natures#chemical_fertilizer" nature="article"/>
|
68
|
+
<item-change item="product_natures#clarification_solution" nature="article"/>
|
69
|
+
<item-change item="product_natures#common_consumable" nature="article"/>
|
70
|
+
<item-change item="product_natures#common_package" nature="article"/>
|
71
|
+
<item-change item="product_natures#construction_material_in_own_outstanding_installation" nature="article"/>
|
72
|
+
<item-change item="product_natures#cork" nature="article"/>
|
73
|
+
<item-change item="product_natures#crop_protective_item" nature="article"/>
|
74
|
+
<item-change item="product_natures#crop_residue" nature="article"/>
|
75
|
+
<item-change item="product_natures#disinfectant_product" nature="article"/>
|
76
|
+
<item-change item="product_natures#draining_item" nature="article"/>
|
77
|
+
<item-change item="product_natures#egg" nature="article"/>
|
78
|
+
<item-change item="product_natures#fence" nature="article"/>
|
79
|
+
<item-change item="product_natures#fermented_grape_juice" nature="article"/>
|
80
|
+
<item-change item="product_natures#fermented_milk" nature="article"/>
|
81
|
+
<item-change item="product_natures#fodder_bale" nature="article"/>
|
82
|
+
<item-change item="product_natures#foliar_spray" nature="article"/>
|
83
|
+
<item-change item="product_natures#fruit" nature="article"/>
|
84
|
+
<item-change item="product_natures#fruit_residu" nature="article"/>
|
85
|
+
<item-change item="product_natures#fuel" nature="article"/>
|
86
|
+
<item-change item="product_natures#fungicide" nature="article"/>
|
87
|
+
<item-change item="product_natures#gas" nature="article"/>
|
88
|
+
<item-change item="product_natures#grain" nature="article"/>
|
89
|
+
<item-change item="product_natures#grape" nature="article"/>
|
90
|
+
<item-change item="product_natures#grape_juice" nature="article"/>
|
91
|
+
<item-change item="product_natures#grass" nature="article"/>
|
92
|
+
<item-change item="product_natures#growth_regulator" nature="article"/>
|
93
|
+
<item-change item="product_natures#hazel_seedling" nature="article"/>
|
94
|
+
<item-change item="product_natures#hazelnut" nature="article"/>
|
95
|
+
<item-change item="product_natures#herbicide" nature="article"/>
|
96
|
+
<item-change item="product_natures#honey" nature="article"/>
|
97
|
+
<item-change item="product_natures#hydraulic_oil" nature="article"/>
|
98
|
+
<item-change item="product_natures#insecticide" nature="article"/>
|
99
|
+
<item-change item="product_natures#irrigation_water" nature="article"/>
|
100
|
+
<item-change item="product_natures#jerusalem_artichoke" nature="article"/>
|
101
|
+
<item-change item="product_natures#lamb_meat" nature="article"/>
|
102
|
+
<item-change item="product_natures#land_parcel_construction" nature="article"/>
|
103
|
+
<item-change item="product_natures#leek" nature="article"/>
|
104
|
+
<item-change item="product_natures#lettuce" nature="article"/>
|
105
|
+
<item-change item="product_natures#meat" nature="article"/>
|
106
|
+
<item-change item="product_natures#mechanic_item" nature="article"/>
|
107
|
+
<item-change item="product_natures#melon" nature="article"/>
|
108
|
+
<item-change item="product_natures#milk" nature="article"/>
|
109
|
+
<item-change item="product_natures#mineral_cleaner" nature="article"/>
|
110
|
+
<item-change item="product_natures#mixed_chemical_fertilizer" nature="article"/>
|
111
|
+
<item-change item="product_natures#mixed_liquid_fertilizer" nature="article"/>
|
112
|
+
<item-change item="product_natures#mixed_organic_fertilizer" nature="article"/>
|
113
|
+
<item-change item="product_natures#molluscicide" nature="article"/>
|
114
|
+
<item-change item="product_natures#motor_oil" nature="article"/>
|
115
|
+
<item-change item="product_natures#natural_water" nature="article"/>
|
116
|
+
<item-change item="product_natures#nematicide" nature="article"/>
|
117
|
+
<item-change item="product_natures#oenological_yeast" nature="article"/>
|
118
|
+
<item-change item="product_natures#onion" nature="article"/>
|
119
|
+
<item-change item="product_natures#organic_fertilizer" nature="article"/>
|
120
|
+
<item-change item="product_natures#packaged_process_food" nature="article"/>
|
121
|
+
<item-change item="product_natures#parsnip" nature="article"/>
|
122
|
+
<item-change item="product_natures#pea" nature="article"/>
|
123
|
+
<item-change item="product_natures#peanut" nature="article"/>
|
124
|
+
<item-change item="product_natures#plastic_cover" nature="article"/>
|
125
|
+
<item-change item="product_natures#plum" nature="article"/>
|
126
|
+
<item-change item="product_natures#plum_seedling" nature="article"/>
|
127
|
+
<item-change item="product_natures#pollination_tool" nature="article"/>
|
128
|
+
<item-change item="product_natures#pork_meat" nature="article"/>
|
129
|
+
<item-change item="product_natures#potato" nature="article"/>
|
130
|
+
<item-change item="product_natures#poultry_meat" nature="article"/>
|
131
|
+
<item-change item="product_natures#process_food" nature="article"/>
|
132
|
+
<item-change item="product_natures#processed_beef_meat" nature="article"/>
|
133
|
+
<item-change item="product_natures#processed_grain" nature="article"/>
|
134
|
+
<item-change item="product_natures#processed_lamb_meat" nature="article"/>
|
135
|
+
<item-change item="product_natures#processed_meat" nature="article"/>
|
136
|
+
<item-change item="product_natures#processed_pork_meat" nature="article"/>
|
137
|
+
<item-change item="product_natures#processed_poultry_meat" nature="article"/>
|
138
|
+
<item-change item="product_natures#protective_canvas" nature="article"/>
|
139
|
+
<item-change item="product_natures#radish" nature="article"/>
|
140
|
+
<item-change item="product_natures#raw_material" nature="article"/>
|
141
|
+
<item-change item="product_natures#running_water" nature="article"/>
|
142
|
+
<item-change item="product_natures#seed" nature="article"/>
|
143
|
+
<item-change item="product_natures#seedling" nature="article"/>
|
144
|
+
<item-change item="product_natures#silage" nature="article"/>
|
145
|
+
<item-change item="product_natures#so2_solution" nature="article"/>
|
146
|
+
<item-change item="product_natures#species" nature="article"/>
|
147
|
+
<item-change item="product_natures#spinach" nature="article"/>
|
148
|
+
<item-change item="product_natures#squash" nature="article"/>
|
149
|
+
<item-change item="product_natures#stake" nature="article"/>
|
150
|
+
<item-change item="product_natures#straw" nature="article"/>
|
151
|
+
<item-change item="product_natures#sugar" nature="article"/>
|
152
|
+
<item-change item="product_natures#turnip" nature="article"/>
|
153
|
+
<item-change item="product_natures#usual_vine_seedling" nature="article"/>
|
154
|
+
<item-change item="product_natures#vegetable" nature="article"/>
|
155
|
+
<item-change item="product_natures#vial" nature="article"/>
|
156
|
+
<item-change item="product_natures#walnut" nature="article"/>
|
157
|
+
<item-change item="product_natures#wine" nature="article"/>
|
158
|
+
<item-change item="product_natures#wine_acidifying" nature="article"/>
|
159
|
+
<item-change item="product_natures#wine_alkalinizing" nature="article"/>
|
160
|
+
<item-change item="product_natures#wire" nature="article"/>
|
161
|
+
|
162
|
+
<item-change item="product_natures#cereal_crop" nature="crop"/>
|
163
|
+
<item-change item="product_natures#crop" nature="crop"/>
|
164
|
+
<item-change item="product_natures#flower_crop" nature="crop"/>
|
165
|
+
<item-change item="product_natures#fruit_crop" nature="crop"/>
|
166
|
+
<item-change item="product_natures#grain_crop" nature="crop"/>
|
167
|
+
<item-change item="product_natures#land_parcel_cluster" nature="crop"/>
|
168
|
+
<item-change item="product_natures#melon_crop" nature="crop"/>
|
169
|
+
<item-change item="product_natures#vegetable_crop" nature="crop"/>
|
170
|
+
<item-change item="product_natures#walnut_crop" nature="crop"/>
|
171
|
+
<item-change item="product_natures#wine_crop" nature="crop"/>
|
172
|
+
|
173
|
+
<item-change item="product_natures#air_compressor" nature="equipment"/>
|
174
|
+
<item-change item="product_natures#animal_housing_cleaner" nature="equipment"/>
|
175
|
+
<item-change item="product_natures#animal_medicine_tank" nature="equipment"/>
|
176
|
+
<item-change item="product_natures#bale_collector" nature="equipment"/>
|
177
|
+
<item-change item="product_natures#baler" nature="equipment"/>
|
178
|
+
<item-change item="product_natures#car" nature="equipment"/>
|
179
|
+
<item-change item="product_natures#chainsaw" nature="equipment"/>
|
180
|
+
<item-change item="product_natures#complete_sower" nature="equipment"/>
|
181
|
+
<item-change item="product_natures#computer" nature="equipment"/>
|
182
|
+
<item-change item="product_natures#computer_device" nature="equipment"/>
|
183
|
+
<item-change item="product_natures#corker" nature="equipment"/>
|
184
|
+
<item-change item="product_natures#corn_topper" nature="equipment"/>
|
185
|
+
<item-change item="product_natures#cover_implanter" nature="equipment"/>
|
186
|
+
<item-change item="product_natures#dumper" nature="equipment"/>
|
187
|
+
<item-change item="product_natures#equipment" nature="equipment"/>
|
188
|
+
<item-change item="product_natures#ferry" nature="equipment"/>
|
189
|
+
<item-change item="product_natures#food_distributor" nature="equipment"/>
|
190
|
+
<item-change item="product_natures#food_tank" nature="equipment"/>
|
191
|
+
<item-change item="product_natures#forager" nature="equipment"/>
|
192
|
+
<item-change item="product_natures#forklift" nature="equipment"/>
|
193
|
+
<item-change item="product_natures#freezer_tank" nature="equipment"/>
|
194
|
+
<item-change item="product_natures#fuel_tank" nature="equipment"/>
|
195
|
+
<item-change item="product_natures#gas_engine" nature="equipment"/>
|
196
|
+
<item-change item="product_natures#grain_tank" nature="equipment"/>
|
197
|
+
<item-change item="product_natures#grape_reaper" nature="equipment"/>
|
198
|
+
<item-change item="product_natures#grape_trailer" nature="equipment"/>
|
199
|
+
<item-change item="product_natures#grinder" nature="equipment"/>
|
200
|
+
<item-change item="product_natures#hand_drawn" nature="equipment"/>
|
201
|
+
<item-change item="product_natures#harrow" nature="equipment"/>
|
202
|
+
<item-change item="product_natures#harvester" nature="equipment"/>
|
203
|
+
<item-change item="product_natures#hay_rake" nature="equipment"/>
|
204
|
+
<item-change item="product_natures#hedge_cutter" nature="equipment"/>
|
205
|
+
<item-change item="product_natures#hiller" nature="equipment"/>
|
206
|
+
<item-change item="product_natures#hive" nature="equipment"/>
|
207
|
+
<item-change item="product_natures#hoe" nature="equipment"/>
|
208
|
+
<item-change item="product_natures#hoe_weeder" nature="equipment"/>
|
209
|
+
<item-change item="product_natures#implanter" nature="equipment"/>
|
210
|
+
<item-change item="product_natures#irrigation_pivot" nature="equipment"/>
|
211
|
+
<item-change item="product_natures#milk_tank" nature="equipment"/>
|
212
|
+
<item-change item="product_natures#milking_robot" nature="equipment"/>
|
213
|
+
<item-change item="product_natures#mower" nature="equipment"/>
|
214
|
+
<item-change item="product_natures#office_furniture" nature="equipment"/>
|
215
|
+
<item-change item="product_natures#picker" nature="equipment"/>
|
216
|
+
<item-change item="product_natures#plant_medicine_tank" nature="equipment"/>
|
217
|
+
<item-change item="product_natures#plow" nature="equipment"/>
|
218
|
+
<item-change item="product_natures#plum_reaper" nature="equipment"/>
|
219
|
+
<item-change item="product_natures#pollinator" nature="equipment"/>
|
220
|
+
<item-change item="product_natures#pruning_platform" nature="equipment"/>
|
221
|
+
<item-change item="product_natures#reaper" nature="equipment"/>
|
222
|
+
<item-change item="product_natures#roll" nature="equipment"/>
|
223
|
+
<item-change item="product_natures#seedbed_preparator" nature="equipment"/>
|
224
|
+
<item-change item="product_natures#shell_fruit_reaper" nature="equipment"/>
|
225
|
+
<item-change item="product_natures#sieve_shaker" nature="equipment"/>
|
226
|
+
<item-change item="product_natures#small_equipment" nature="equipment"/>
|
227
|
+
<item-change item="product_natures#soil_loosener" nature="equipment"/>
|
228
|
+
<item-change item="product_natures#sower" nature="equipment"/>
|
229
|
+
<item-change item="product_natures#sprayer" nature="equipment"/>
|
230
|
+
<item-change item="product_natures#spreader" nature="equipment"/>
|
231
|
+
<item-change item="product_natures#spreader_trailer" nature="equipment"/>
|
232
|
+
<item-change item="product_natures#steam_engine" nature="equipment"/>
|
233
|
+
<item-change item="product_natures#superficial_plow" nature="equipment"/>
|
234
|
+
<item-change item="product_natures#telescopic_handler" nature="equipment"/>
|
235
|
+
<item-change item="product_natures#topper" nature="equipment"/>
|
236
|
+
<item-change item="product_natures#tractor" nature="equipment"/>
|
237
|
+
<item-change item="product_natures#trailer" nature="equipment"/>
|
238
|
+
<item-change item="product_natures#trimmer" nature="equipment"/>
|
239
|
+
<item-change item="product_natures#truck" nature="equipment"/>
|
240
|
+
<item-change item="product_natures#uncover" nature="equipment"/>
|
241
|
+
<item-change item="product_natures#water_spreader" nature="equipment"/>
|
242
|
+
<item-change item="product_natures#water_tank" nature="equipment"/>
|
243
|
+
<item-change item="product_natures#weeder" nature="equipment"/>
|
244
|
+
<item-change item="product_natures#weeding_kit" nature="equipment"/>
|
245
|
+
<item-change item="product_natures#wheel_loader" nature="equipment"/>
|
246
|
+
<item-change item="product_natures#wine_press" nature="equipment"/>
|
247
|
+
<item-change item="product_natures#wine_tank" nature="equipment"/>
|
248
|
+
|
249
|
+
<item-change item="product_natures#accommodation_travel" nature="fee_and_service"/>
|
250
|
+
<item-change item="product_natures#animal_housing_services" nature="fee_and_service"/>
|
251
|
+
<item-change item="product_natures#animal_product_taxe" nature="fee_and_service"/>
|
252
|
+
<item-change item="product_natures#animal_taxe" nature="fee_and_service"/>
|
253
|
+
<item-change item="product_natures#animals_making_services" nature="fee_and_service"/>
|
254
|
+
<item-change item="product_natures#associate_social_contribution" nature="fee_and_service"/>
|
255
|
+
<item-change item="product_natures#bank_service" nature="fee_and_service"/>
|
256
|
+
<item-change item="product_natures#bonus_staff_expense" nature="fee_and_service"/>
|
257
|
+
<item-change item="product_natures#carriage" nature="fee_and_service"/>
|
258
|
+
<item-change item="product_natures#catalog_and_print" nature="fee_and_service"/>
|
259
|
+
<item-change item="product_natures#congress" nature="fee_and_service"/>
|
260
|
+
<item-change item="product_natures#consumer_goods_office_item" nature="fee_and_service"/>
|
261
|
+
<item-change item="product_natures#cooperative_participation" nature="fee_and_service"/>
|
262
|
+
<item-change item="product_natures#crop_taxe" nature="fee_and_service"/>
|
263
|
+
<item-change item="product_natures#discount_and_reduction" nature="fee_and_service"/>
|
264
|
+
<item-change item="product_natures#electricity" nature="fee_and_service"/>
|
265
|
+
<item-change item="product_natures#equipment_repair_services" nature="fee_and_service"/>
|
266
|
+
<item-change item="product_natures#exploitation_subsidies" nature="fee_and_service"/>
|
267
|
+
<item-change item="product_natures#farm_teaching_services" nature="fee_and_service"/>
|
268
|
+
<item-change item="product_natures#fee" nature="fee_and_service"/>
|
269
|
+
<item-change item="product_natures#fiscal_fine" nature="fee_and_service"/>
|
270
|
+
<item-change item="product_natures#forwarding_agent_fees_expense" nature="fee_and_service"/>
|
271
|
+
<item-change item="product_natures#freelance" nature="fee_and_service"/>
|
272
|
+
<item-change item="product_natures#harvest_insurance" nature="fee_and_service"/>
|
273
|
+
<item-change item="product_natures#infirmity_and_death_insurance" nature="fee_and_service"/>
|
274
|
+
<item-change item="product_natures#installing_charge" nature="fee_and_service"/>
|
275
|
+
<item-change item="product_natures#insurance" nature="fee_and_service"/>
|
276
|
+
<item-change item="product_natures#land_parcel_locative_charge" nature="fee_and_service"/>
|
277
|
+
<item-change item="product_natures#leasing" nature="fee_and_service"/>
|
278
|
+
<item-change item="product_natures#legal_registration" nature="fee_and_service"/>
|
279
|
+
<item-change item="product_natures#little_office_item" nature="fee_and_service"/>
|
280
|
+
<item-change item="product_natures#loan_interest" nature="fee_and_service"/>
|
281
|
+
<item-change item="product_natures#mail_subscription" nature="fee_and_service"/>
|
282
|
+
<item-change item="product_natures#maintenance" nature="fee_and_service"/>
|
283
|
+
<item-change item="product_natures#meal_travel" nature="fee_and_service"/>
|
284
|
+
<item-change item="product_natures#moving_travel" nature="fee_and_service"/>
|
285
|
+
<item-change item="product_natures#numeric_hosting_rental" nature="fee_and_service"/>
|
286
|
+
<item-change item="product_natures#numeric_subscription" nature="fee_and_service"/>
|
287
|
+
<item-change item="product_natures#processed_product_taxe" nature="fee_and_service"/>
|
288
|
+
<item-change item="product_natures#product_insurance" nature="fee_and_service"/>
|
289
|
+
<item-change item="product_natures#professional_subscription" nature="fee_and_service"/>
|
290
|
+
<item-change item="product_natures#project_management" nature="fee_and_service"/>
|
291
|
+
<item-change item="product_natures#radio_subscription" nature="fee_and_service"/>
|
292
|
+
<item-change item="product_natures#recycling_contribution" nature="fee_and_service"/>
|
293
|
+
<item-change item="product_natures#rent" nature="fee_and_service"/>
|
294
|
+
<item-change item="product_natures#representation_item" nature="fee_and_service"/>
|
295
|
+
<item-change item="product_natures#salary_social_contribution" nature="fee_and_service"/>
|
296
|
+
<item-change item="product_natures#share" nature="fee_and_service"/>
|
297
|
+
<item-change item="product_natures#software_engineering" nature="fee_and_service"/>
|
298
|
+
<item-change item="product_natures#spread_renting" nature="fee_and_service"/>
|
299
|
+
<item-change item="product_natures#studies_and_research" nature="fee_and_service"/>
|
300
|
+
<item-change item="product_natures#taxe" nature="fee_and_service"/>
|
301
|
+
<item-change item="product_natures#trade_show" nature="fee_and_service"/>
|
302
|
+
<item-change item="product_natures#training_course" nature="fee_and_service"/>
|
303
|
+
<item-change item="product_natures#user_support" nature="fee_and_service"/>
|
304
|
+
<item-change item="product_natures#various_loan_interest" nature="fee_and_service"/>
|
305
|
+
<item-change item="product_natures#vegetals_making_services" nature="fee_and_service"/>
|
306
|
+
|
307
|
+
<item-change item="product_natures#inseminator" nature="worker"/>
|
308
|
+
<item-change item="product_natures#manager" nature="worker"/>
|
309
|
+
<item-change item="product_natures#mechanic" nature="worker"/>
|
310
|
+
<item-change item="product_natures#technician" nature="worker"/>
|
311
|
+
|
312
|
+
<item-change item="product_natures#administrative_division" nature="zone"/>
|
313
|
+
<item-change item="product_natures#animal_building_division" nature="zone"/>
|
314
|
+
<item-change item="product_natures#animal_food_building_division" nature="zone"/>
|
315
|
+
<item-change item="product_natures#building" nature="zone"/>
|
316
|
+
<item-change item="product_natures#building_division" nature="zone"/>
|
317
|
+
<item-change item="product_natures#cultivable_zone" nature="zone"/>
|
318
|
+
<item-change item="product_natures#equipment_building_division" nature="zone"/>
|
319
|
+
<item-change item="product_natures#food_equipment_division" nature="zone"/>
|
320
|
+
<item-change item="product_natures#land_parcel" nature="zone"/>
|
321
|
+
<item-change item="product_natures#manure_division" nature="zone"/>
|
322
|
+
<item-change item="product_natures#preparation_division" nature="zone"/>
|
323
|
+
<item-change item="product_natures#settlement" nature="zone"/>
|
324
|
+
<item-change item="product_natures#silage_division" nature="zone"/>
|
325
|
+
<item-change item="product_natures#wine_storage_division" nature="zone"/>
|
326
|
+
</migration>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<migration name="Add units">
|
3
|
+
<item-creation item="units#gram_per_acre" dimension="mass_area_density" symbol="g/acre" a="0.00000024710538146" />
|
4
|
+
<item-creation item="units#gram_per_are" dimension="mass_area_density" symbol="g/a" a="0.00001" />
|
5
|
+
<item-creation item="units#gram_per_hectare" dimension="mass_area_density" symbol="g/ha" a="0.0000001" />
|
6
|
+
<item-creation item="units#gram_per_square_centimeter" dimension="mass_area_density" symbol="g/cm²" a="10.0" />
|
7
|
+
<item-creation item="units#kilogram_per_acre" dimension="mass_area_density" symbol="kg/acre" a="0.00024710538146" />
|
8
|
+
<item-creation item="units#kilogram_per_are" dimension="mass_area_density" symbol="kg/a" a="0.01" />
|
9
|
+
<item-creation item="units#kilogram_per_square_centimeter" dimension="mass_area_density" symbol="kg/cm²" a="10000.0" />
|
10
|
+
<item-creation item="units#quintal_per_acre" dimension="mass_area_density" symbol="qt/acre" a="0.024710538146" />
|
11
|
+
<item-creation item="units#quintal_per_are" dimension="mass_area_density" symbol="qt/a" a="1.0" />
|
12
|
+
<item-creation item="units#quintal_per_square_centimeter" dimension="mass_area_density" symbol="qt/cm²" a="1000000.0" />
|
13
|
+
<item-creation item="units#quintal_per_square_meter" dimension="mass_area_density" symbol="qt/m²" a="100.0" />
|
14
|
+
<item-creation item="units#ton_per_acre" dimension="mass_area_density" symbol="t/acre" a="0.24710538146" />
|
15
|
+
<item-creation item="units#ton_per_are" dimension="mass_area_density" symbol="t/a" a="10.0" />
|
16
|
+
<item-creation item="units#ton_per_square_centimeter" dimension="mass_area_density" symbol="t/cm" a="10000000.0" />
|
17
|
+
<item-creation item="units#ton_per_square_meter" dimension="mass_area_density" symbol="t/m²" a="1000.0" />
|
18
|
+
<item-creation item="units#thousand_per_square_meter" dimension="surface_area_density" symbol="k./m²" a="1000.0" />
|
19
|
+
<item-creation item="units#cubic_meter_per_square_meter" dimension="volume_area_density" symbol="m³/m²" a="1.0" />
|
20
|
+
<item-creation item="units#hectoliter_per_square_meter" dimension="volume_area_density" symbol="hl/m²" a="0.1" />
|
21
|
+
</migration>
|
@@ -0,0 +1,133 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<migration name="Adds more info to units">
|
3
|
+
<property-creation property="units.base_dimension" type="string"/>
|
4
|
+
<property-creation property="units.repartition_dimension" type="item" choices="strings"/>
|
5
|
+
<property-creation property="units.base_unit" type="item" choices="units"/>
|
6
|
+
<property-creation property="units.repartition_unit" type="item" choices="units"/>
|
7
|
+
|
8
|
+
<item-change item="units#acre" base_unit="acre" base_dimension="surface_area" />
|
9
|
+
<item-change item="units#ampere" base_unit="ampere" base_dimension="electric_current" />
|
10
|
+
<item-change item="units#are" base_unit="are" base_dimension="surface_area" />
|
11
|
+
<item-change item="units#bar" base_unit="bar" base_dimension="pressure" />
|
12
|
+
<item-change item="units#billion" base_unit="billion" base_dimension="none" />
|
13
|
+
<item-change item="units#billion_per_gram" base_unit="billion" base_dimension="none" repartition_unit="gram" repartition_dimension="mass" />
|
14
|
+
<item-change item="units#billionth" base_unit="billionth" base_dimension="none" />
|
15
|
+
<item-change item="units#candela" base_unit="candela" base_dimension="luminous_intensity" />
|
16
|
+
<item-change item="units#celsius" base_unit="celsius" base_dimension="temperature" />
|
17
|
+
<item-change item="units#centiliter" base_unit="centiliter" base_dimension="volume" />
|
18
|
+
<item-change item="units#centiliter_per_hectoliter" base_unit="centiliter" base_dimension="volume" repartition_unit="hectoliter" repartition_dimension="volume" />
|
19
|
+
<item-change item="units#centiliter_per_liter" base_unit="centiliter" base_dimension="volume" repartition_unit="liter" repartition_dimension="volume" />
|
20
|
+
<item-change item="units#centimeter" base_unit="centimeter" base_dimension="distance" />
|
21
|
+
<item-change item="units#centimole" base_unit="centimole" base_dimension="amount_of_substance" />
|
22
|
+
<item-change item="units#centimole_per_kilogram" base_unit="centimole" base_dimension="amount_of_substance" repartition_unit="kilogram" repartition_dimension="mass" />
|
23
|
+
<item-change item="units#cubic_centimeter" base_unit="cubic_centimeter" base_dimension="volume" />
|
24
|
+
<item-change item="units#cubic_meter" base_unit="cubic_meter" base_dimension="volume" />
|
25
|
+
<item-change item="units#cubic_meter_per_hectare" base_unit="cubic_meter" base_dimension="volume" repartition_unit="hectare" repartition_dimension="surface_area" />
|
26
|
+
<item-change item="units#cubic_meter_per_hour" base_unit="cubic_meter" base_dimension="volume" repartition_unit="hour" repartition_dimension="time" />
|
27
|
+
<item-change item="units#cubic_meter_per_square_meter" base_unit="cubic_meter" base_dimension="volume" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
28
|
+
<item-change item="units#day" base_unit="day" base_dimension="time" />
|
29
|
+
<item-change item="units#degree" base_unit="degree" base_dimension="angle" />
|
30
|
+
<item-change item="units#dozen" base_unit="dozen" base_dimension="none" />
|
31
|
+
<item-change item="units#english_horsepower" base_unit="english_horsepower" base_dimension="power" />
|
32
|
+
<item-change item="units#farenheit" base_unit="farenheit" base_dimension="temperature" />
|
33
|
+
<item-change item="units#french_horsepower" base_unit="french_horsepower" base_dimension="power" />
|
34
|
+
<item-change item="units#gradian" base_unit="gradian" base_dimension="angle" />
|
35
|
+
<item-change item="units#gram" base_unit="gram" base_dimension="mass" />
|
36
|
+
<item-change item="units#gram_per_acre" base_unit="gram" base_dimension="mass" repartition_unit="acre" repartition_dimension="surface_area" />
|
37
|
+
<item-change item="units#gram_per_are" base_unit="gram" base_dimension="mass" repartition_unit="are" repartition_dimension="surface_area" />
|
38
|
+
<item-change item="units#gram_per_hectare" base_unit="gram" base_dimension="mass" repartition_unit="hectare" repartition_dimension="surface_area" />
|
39
|
+
<item-change item="units#gram_per_hectoliter" base_unit="gram" base_dimension="mass" repartition_unit="hectoliter" repartition_dimension="volume" />
|
40
|
+
<item-change item="units#gram_per_kilogram" base_unit="gram" base_dimension="mass" repartition_unit="kilogram" repartition_dimension="mass" />
|
41
|
+
<item-change item="units#gram_per_liter" base_unit="gram" base_dimension="mass" repartition_unit="liter" repartition_dimension="volume" />
|
42
|
+
<item-change item="units#gram_per_square_centimeter" base_unit="gram" base_dimension="mass" repartition_unit="square_centimeter" repartition_dimension="surface_area" />
|
43
|
+
<item-change item="units#gram_per_square_meter" base_unit="gram" base_dimension="mass" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
44
|
+
<item-change item="units#hectare" base_unit="hectare" base_dimension="surface_area" />
|
45
|
+
<item-change item="units#hectare_per_hour" base_unit="hectare" base_dimension="surface_area" repartition_unit="hour" repartition_dimension="time" />
|
46
|
+
<item-change item="units#hectoliter" base_unit="hectoliter" base_dimension="volume" />
|
47
|
+
<item-change item="units#hectoliter_per_hectare" base_unit="hectoliter" base_dimension="volume" repartition_unit="hectare" repartition_dimension="surface_area" />
|
48
|
+
<item-change item="units#hectoliter_per_square_meter" base_unit="hectoliter" base_dimension="volume" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
49
|
+
<item-change item="units#hectopascal" base_unit="hectopascal" base_dimension="pressure" />
|
50
|
+
<item-change item="units#hour" base_unit="hour" base_dimension="time" />
|
51
|
+
<item-change item="units#hundred" base_unit="hundred" base_dimension="none" />
|
52
|
+
<item-change item="units#joule" base_unit="joule" base_dimension="energy" />
|
53
|
+
<item-change item="units#kelvin" base_unit="kelvin" base_dimension="temperature" />
|
54
|
+
<item-change item="units#kilogram" base_unit="kilogram" base_dimension="mass" />
|
55
|
+
<item-change item="units#kilogram_per_acre" base_unit="kilogram" base_dimension="mass" repartition_unit="acre" repartition_dimension="surface_area" />
|
56
|
+
<item-change item="units#kilogram_per_are" base_unit="kilogram" base_dimension="mass" repartition_unit="are" repartition_dimension="surface_area" />
|
57
|
+
<item-change item="units#kilogram_per_day" base_unit="kilogram" base_dimension="mass" repartition_unit="day" repartition_dimension="time" />
|
58
|
+
<item-change item="units#kilogram_per_hectare" base_unit="kilogram" base_dimension="mass" repartition_unit="hectare" repartition_dimension="surface_area" />
|
59
|
+
<item-change item="units#kilogram_per_hectoliter" base_unit="kilogram" base_dimension="mass" repartition_unit="hectoliter" repartition_dimension="volume" />
|
60
|
+
<item-change item="units#kilogram_per_liter" base_unit="kilogram" base_dimension="mass" repartition_unit="liter" repartition_dimension="volume" />
|
61
|
+
<item-change item="units#kilogram_per_second" base_unit="kilogram" base_dimension="mass" repartition_unit="second" repartition_dimension="time" />
|
62
|
+
<item-change item="units#kilogram_per_square_centimeter" base_unit="kilogram" base_dimension="mass" repartition_unit="square_centimeter" repartition_dimension="surface_area" />
|
63
|
+
<item-change item="units#kilogram_per_square_meter" base_unit="kilogram" base_dimension="mass" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
64
|
+
<item-change item="units#kilometer" base_unit="kilometer" base_dimension="distance" />
|
65
|
+
<item-change item="units#kilometer_per_hour" base_unit="kilometer" base_dimension="distance" repartition_unit="hour" repartition_dimension="time" />
|
66
|
+
<item-change item="units#kilometer_per_second" base_unit="kilometer" base_dimension="distance" repartition_unit="second" repartition_dimension="time" />
|
67
|
+
<item-change item="units#kilopascal" base_unit="kilopascal" base_dimension="pressure" />
|
68
|
+
<item-change item="units#kilowatt" base_unit="kilowatt" base_dimension="power" />
|
69
|
+
<item-change item="units#kilowatt_hour" base_unit="kilowatt_hour" base_dimension="energy" />
|
70
|
+
<item-change item="units#liter" base_unit="liter" base_dimension="volume" />
|
71
|
+
<item-change item="units#liter_per_hectare" base_unit="liter" base_dimension="volume" repartition_unit="hectare" repartition_dimension="surface_area" />
|
72
|
+
<item-change item="units#liter_per_hour" base_unit="liter" base_dimension="volume" repartition_unit="hour" repartition_dimension="time" />
|
73
|
+
<item-change item="units#liter_per_minute" base_unit="liter" base_dimension="volume" repartition_unit="minute" repartition_dimension="time" />
|
74
|
+
<item-change item="units#liter_per_square_meter" base_unit="liter" base_dimension="volume" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
75
|
+
<item-change item="units#mass_percent" base_unit="mass_percent" base_dimension="none" />
|
76
|
+
<item-change item="units#megawatt" base_unit="megawatt" base_dimension="power" />
|
77
|
+
<item-change item="units#meter" base_unit="meter" base_dimension="distance" />
|
78
|
+
<item-change item="units#meter_per_second" base_unit="meter" base_dimension="distance" repartition_unit="second" repartition_dimension="time" />
|
79
|
+
<item-change item="units#microgram" base_unit="microgram" base_dimension="mass" />
|
80
|
+
<item-change item="units#microgram_per_liter" base_unit="microgram" base_dimension="mass" repartition_unit="liter" repartition_dimension="volume" />
|
81
|
+
<item-change item="units#milliampere" base_unit="milliampere" base_dimension="electric_current" />
|
82
|
+
<item-change item="units#milliequivalent" base_unit="milliequivalent" base_dimension="amount_of_substance" />
|
83
|
+
<item-change item="units#milliequivalent_per_hundred_gram" base_unit="milliequivalent" base_dimension="amount_of_substance" repartition_unit="hundred_gram" />
|
84
|
+
<item-change item="units#milligram" base_unit="milligram" base_dimension="mass" />
|
85
|
+
<item-change item="units#milligram_per_kilogram" base_unit="milligram" base_dimension="mass" repartition_unit="kilogram" repartition_dimension="mass" />
|
86
|
+
<item-change item="units#milligram_per_liter" base_unit="milligram" base_dimension="mass" repartition_unit="liter" repartition_dimension="volume" />
|
87
|
+
<item-change item="units#milliliter" base_unit="milliliter" base_dimension="volume" />
|
88
|
+
<item-change item="units#milliliter_per_liter" base_unit="milliliter" base_dimension="volume" repartition_unit="liter" repartition_dimension="volume" />
|
89
|
+
<item-change item="units#millimeter" base_unit="millimeter" base_dimension="distance" />
|
90
|
+
<item-change item="units#millimeter_per_hour" base_unit="millimeter" base_dimension="distance" repartition_unit="hour" repartition_dimension="time" />
|
91
|
+
<item-change item="units#million" base_unit="million" base_dimension="none" />
|
92
|
+
<item-change item="units#million_per_hectare" base_unit="million" base_dimension="none" repartition_unit="hectare" repartition_dimension="surface_area" />
|
93
|
+
<item-change item="units#million_per_liter" base_unit="million" base_dimension="none" repartition_unit="liter" repartition_dimension="volume" />
|
94
|
+
<item-change item="units#millionth" base_unit="millionth" base_dimension="none" />
|
95
|
+
<item-change item="units#millisecond" base_unit="millisecond" base_dimension="time" />
|
96
|
+
<item-change item="units#minute" base_unit="minute" base_dimension="time" />
|
97
|
+
<item-change item="units#mole" base_unit="mole" base_dimension="amount_of_substance" />
|
98
|
+
<item-change item="units#mole_per_kilogram" base_unit="mole" base_dimension="amount_of_substance" repartition_unit="kilogram" repartition_dimension="mass" />
|
99
|
+
<item-change item="units#parts_per_million" base_unit="parts" base_dimension="" repartition_unit="million" repartition_dimension="none" />
|
100
|
+
<item-change item="units#pascal" base_unit="pascal" base_dimension="pressure" />
|
101
|
+
<item-change item="units#percent" base_unit="percent" base_dimension="none" />
|
102
|
+
<item-change item="units#quintal" base_unit="quintal" base_dimension="mass" />
|
103
|
+
<item-change item="units#quintal_per_acre" base_unit="quintal" base_dimension="mass" repartition_unit="acre" repartition_dimension="surface_area" />
|
104
|
+
<item-change item="units#quintal_per_are" base_unit="quintal" base_dimension="mass" repartition_unit="are" repartition_dimension="surface_area" />
|
105
|
+
<item-change item="units#quintal_per_hectare" base_unit="quintal" base_dimension="mass" repartition_unit="hectare" repartition_dimension="surface_area" />
|
106
|
+
<item-change item="units#quintal_per_square_centimeter" base_unit="quintal" base_dimension="mass" repartition_unit="square_centimeter" repartition_dimension="surface_area" />
|
107
|
+
<item-change item="units#quintal_per_square_meter" base_unit="quintal" base_dimension="mass" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
108
|
+
<item-change item="units#radian" base_unit="radian" base_dimension="angle" />
|
109
|
+
<item-change item="units#second" base_unit="second" base_dimension="time" />
|
110
|
+
<item-change item="units#square_centimeter" base_unit="square_centimeter" base_dimension="surface_area" />
|
111
|
+
<item-change item="units#square_meter" base_unit="square_meter" base_dimension="surface_area" />
|
112
|
+
<item-change item="units#thousand" base_unit="thousand" base_dimension="none" />
|
113
|
+
<item-change item="units#thousand_per_hectare" base_unit="thousand" base_dimension="none" repartition_unit="hectare" repartition_dimension="surface_area" />
|
114
|
+
<item-change item="units#thousand_per_hectogram" base_unit="thousand" base_dimension="none" repartition_unit="hectogram" />
|
115
|
+
<item-change item="units#thousand_per_kilogram" base_unit="thousand" base_dimension="none" repartition_unit="kilogram" repartition_dimension="mass" />
|
116
|
+
<item-change item="units#thousand_per_liter" base_unit="thousand" base_dimension="none" repartition_unit="liter" repartition_dimension="volume" />
|
117
|
+
<item-change item="units#thousand_per_milliliter" base_unit="thousand" base_dimension="none" repartition_unit="milliliter" repartition_dimension="volume" />
|
118
|
+
<item-change item="units#thousand_per_square_meter" base_unit="thousand" base_dimension="none" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
119
|
+
<item-change item="units#thousandth" base_unit="thousandth" base_dimension="none" />
|
120
|
+
<item-change item="units#ton" base_unit="ton" base_dimension="mass" />
|
121
|
+
<item-change item="units#ton_per_acre" base_unit="ton" base_dimension="mass" repartition_unit="acre" repartition_dimension="surface_area" />
|
122
|
+
<item-change item="units#ton_per_are" base_unit="ton" base_dimension="mass" repartition_unit="are" repartition_dimension="surface_area" />
|
123
|
+
<item-change item="units#ton_per_hectare" base_unit="ton" base_dimension="mass" repartition_unit="hectare" repartition_dimension="surface_area" />
|
124
|
+
<item-change item="units#ton_per_square_centimeter" base_unit="ton" base_dimension="mass" repartition_unit="square_centimeter" repartition_dimension="surface_area" />
|
125
|
+
<item-change item="units#ton_per_square_meter" base_unit="ton" base_dimension="mass" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
126
|
+
<item-change item="units#unity" base_unit="unity" base_dimension="none" />
|
127
|
+
<item-change item="units#unity_per_hectare" base_unit="unity" base_dimension="none" repartition_unit="hectare" repartition_dimension="surface_area" />
|
128
|
+
<item-change item="units#unity_per_kilogram" base_unit="unity" base_dimension="none" repartition_unit="kilogram" repartition_dimension="mass" />
|
129
|
+
<item-change item="units#unity_per_liter" base_unit="unity" base_dimension="none" repartition_unit="liter" repartition_dimension="volume" />
|
130
|
+
<item-change item="units#unity_per_square_meter" base_unit="unity" base_dimension="none" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
131
|
+
<item-change item="units#watt" base_unit="watt" base_dimension="power" />
|
132
|
+
<item-change item="units#watt_per_square_meter" base_unit="watt" base_dimension="power" repartition_unit="square_meter" repartition_dimension="surface_area" />
|
133
|
+
</migration>
|