[tryton-debian-vcs] tryton-modules-account-stock-landed-cost branch debian updated. debian/4.2.0-1-2-g96c437f

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Jun 7 13:32:27 UTC 2017


The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-stock-landed-cost.git;a=commitdiff;h=debian/4.2.0-1-2-g96c437f

commit 96c437f297fd218943fe1663120becb40491d150
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jun 7 15:25:59 2017 +0200

    Merging upstream version 4.4.0.

diff --git a/CHANGELOG b/CHANGELOG
index 9ba64b0..ec220c9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.4.0 - 2017-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 4.2.0 - 2016-11-28
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index be9339f..f568502 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2015-2016 Cédric Krier.
-Copyright (C) 2015-2016 B2CK SPRL.
+Copyright (C) 2015-2017 Cédric Krier.
+Copyright (C) 2015-2017 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index d23e7ce..8a40665 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_account_stock_landed_cost
-Version: 4.2.0
+Version: 4.4.0
 Summary: Tryton module for landed cost
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/4.2/
+Download-URL: http://downloads.tryton.org/4.4/
 Description: trytond_account_stock_landed_cost
         =================================
         
@@ -51,7 +51,7 @@ Classifier: Framework :: Tryton
 Classifier: Intended Audience :: Developers
 Classifier: Intended Audience :: Financial and Insurance Industry
 Classifier: Intended Audience :: Legal Industry
-Classifier: License :: OSI Approved :: GNU General Public License (GPL)
+Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
 Classifier: Natural Language :: Bulgarian
 Classifier: Natural Language :: Catalan
 Classifier: Natural Language :: Chinese (Simplified)
diff --git a/__init__.py b/__init__.py
index 7e2ac4c..6c08faa 100644
--- a/__init__.py
+++ b/__init__.py
@@ -12,6 +12,7 @@ def register():
         Template,
         Product,
         Configuration,
+        ConfigurationLandedCostSequence,
         LandedCost,
         LandedCost_Shipment,
         InvoiceLine,
diff --git a/account.py b/account.py
index 6470aa4..ffa30f0 100644
--- a/account.py
+++ b/account.py
@@ -8,19 +8,69 @@ from trytond.pool import Pool, PoolMeta
 from trytond.pyson import Eval
 from trytond.transaction import Transaction
 from trytond import backend
+from trytond.tools.multivalue import migrate_property
+from trytond.modules.company.model import CompanyValueMixin
 
-__all__ = ['Configuration', 'LandedCost', 'LandedCost_Shipment', 'InvoiceLine']
+__all__ = ['Configuration', 'ConfigurationLandedCostSequence',
+    'LandedCost', 'LandedCost_Shipment', 'InvoiceLine']
 
 
 class Configuration:
     __name__ = 'account.configuration'
     __metaclass__ = PoolMeta
-    landed_cost_sequence = fields.Property(fields.Many2One('ir.sequence',
-            'Landed Cost Sequence', domain=[
+    landed_cost_sequence = fields.MultiValue(fields.Many2One(
+            'ir.sequence', "Landed Cost Sequence", required=True,
+            domain=[
                 ('company', 'in',
                     [Eval('context', {}).get('company', -1), None]),
                 ('code', '=', 'account.landed_cost'),
-                ], required=True))
+                ]))
+
+    @classmethod
+    def default_landed_cost_sequence(cls):
+        return cls.multivalue_model(
+            'landed_cost_sequence').default_landed_cost_sequence()
+
+
+class ConfigurationLandedCostSequence(ModelSQL, CompanyValueMixin):
+    "Account Configuration Landed Cost Sequence"
+    __name__ = 'account.configuration.landed_cost_sequence'
+    landed_cost_sequence = fields.Many2One(
+        'ir.sequence', "Landed Cost Sequence", required=True,
+        domain=[
+            ('company', 'in', [Eval('company', -1), None]),
+            ('code', '=', 'account.landed_cost'),
+            ],
+        depends=['company'])
+
+    @classmethod
+    def __register__(cls, module_name):
+        TableHandler = backend.get('TableHandler')
+        exist = TableHandler.table_exist(cls._table)
+
+        super(ConfigurationLandedCostSequence, cls).__register__(module_name)
+
+        if not exist:
+            cls._migrate_property([], [], [])
+
+    @classmethod
+    def _migrate_property(cls, field_names, value_names, fields):
+        field_names.append('landed_cost_sequence')
+        value_names.append('landed_cost_sequence')
+        fields.append('company')
+        migrate_property(
+            'account.configuration', field_names, cls, value_names,
+            fields=fields)
+
+    @classmethod
+    def default_landed_cost_sequence(cls):
+        pool = Pool()
+        ModelData = pool.get('ir.model.data')
+        try:
+            return ModelData.get_id(
+                'account_stock_landed_cost', 'sequence_landed_cost')
+        except KeyError:
+            return None
 
 
 class LandedCost(Workflow, ModelSQL, ModelView):
diff --git a/account.xml b/account.xml
index 19c39c1..f0c7348 100644
--- a/account.xml
+++ b/account.xml
@@ -110,11 +110,4 @@ this repository contains the full copyright notices and license terms. -->
             <field name="name">invoice_line_form</field>
         </record>
     </data>
-    <data noupdate="1">
-        <record model="ir.property" id="property_landed_cost_sequence">
-            <field name="field"
-                search="[('model.model', '=', 'account.configuration'), ('name', '=', 'landed_cost_sequence')]"/>
-            <field name="value" eval="'ir.sequence,' + str(ref('sequence_landed_cost'))"/>
-        </record>
-    </data>
 </tryton>
diff --git a/locale/bg.po b/locale/bg.po
index cc97733..f7c5529 100644
--- a/locale/bg.po
+++ b/locale/bg.po
@@ -6,6 +6,46 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Фирма"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Създадено на"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Създадено от"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Условие за плащане"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Променено на"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Променено от"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr ""
@@ -124,6 +164,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr ""
diff --git a/locale/ca.po b/locale/ca.po
index 546845a..b27fbb1 100644
--- a/locale/ca.po
+++ b/locale/ca.po
@@ -6,6 +6,39 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr "Seqüència de cost de recepció"
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Empresa"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Data de creació"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Usuari de creació"
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr "Seqüència de cost de recepció"
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Nom"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Data de modificació"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Usuari de modificació"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr "Cost de recepció"
@@ -106,6 +139,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr "Unitat cost de recepció"
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr "Configuració de la seqüencia de cost de recepció"
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr "Cost de recepció"
diff --git a/locale/cs.po b/locale/cs.po
index 456b18e..36de70e 100644
--- a/locale/cs.po
+++ b/locale/cs.po
@@ -6,6 +6,40 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Namu"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr ""
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr ""
@@ -108,6 +142,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr ""
diff --git a/locale/de.po b/locale/de.po
index 7a3b2a6..c75195e 100644
--- a/locale/de.po
+++ b/locale/de.po
@@ -6,6 +6,39 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr "Nummernkreis Einstandskosten"
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Unternehmen"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Erstellungsdatum"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Erstellt durch"
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr "Nummernkreis Einstandskosten"
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Name"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Zuletzt geändert"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Letzte Änderung durch"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr "Einstandskosten"
@@ -106,6 +139,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr "Einheit Einstandskosten"
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr "Einstellungen Buchhaltung Nummernkreis Einstandskosten"
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr "Einstandskosten"
diff --git a/locale/es.po b/locale/es.po
index 5d90841..d22c580 100644
--- a/locale/es.po
+++ b/locale/es.po
@@ -6,6 +6,39 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr "Secuencia de coste de recepción"
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Empresa"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Fecha de creación"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Usuario de creación"
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr "Secuencia de coste de recepción"
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Nombre"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Fecha de modificación"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Usuario de modificación"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr "Coste de recepción"
@@ -106,6 +139,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr "Unidad coste de recepción"
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr "Configuración de la secuencia de coste de recepción"
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr "Coste de recepción"
diff --git a/locale/es_419.po b/locale/es_419.po
index 7336f93..7865200 100644
--- a/locale/es_419.po
+++ b/locale/es_419.po
@@ -4,11 +4,44 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
-msgstr "Secuencia de costo de recepción"
+msgstr "Secuencia de costo final"
+
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr "Secuencia de costo final"
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr ""
 
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
-msgstr "Costo de recepción"
+msgstr "Costo final"
 
 msgctxt "field:account.landed_cost,allocation_method:"
 msgid "Allocation Method"
@@ -24,7 +57,7 @@ msgstr ""
 
 msgctxt "field:account.landed_cost,create_uid:"
 msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
 
 msgctxt "field:account.landed_cost,id:"
 msgid "ID"
@@ -40,7 +73,7 @@ msgstr ""
 
 msgctxt "field:account.landed_cost,posted_date:"
 msgid "Posted Date"
-msgstr "Fecha de contabilización"
+msgstr ""
 
 msgctxt "field:account.landed_cost,rec_name:"
 msgid "Name"
@@ -48,7 +81,7 @@ msgstr ""
 
 msgctxt "field:account.landed_cost,shipments:"
 msgid "Shipments"
-msgstr "Guías de remisión"
+msgstr "Envíos"
 
 msgctxt "field:account.landed_cost,state:"
 msgid "State"
@@ -60,7 +93,7 @@ msgstr ""
 
 msgctxt "field:account.landed_cost,write_uid:"
 msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
 
 msgctxt "field:account.landed_cost-stock.shipment.in,create_date:"
 msgid "Create Date"
@@ -68,7 +101,7 @@ msgstr ""
 
 msgctxt "field:account.landed_cost-stock.shipment.in,create_uid:"
 msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
 
 msgctxt "field:account.landed_cost-stock.shipment.in,id:"
 msgid "ID"
@@ -76,7 +109,7 @@ msgstr ""
 
 msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
 msgid "Landed Cost"
-msgstr "Costo de recepción"
+msgstr "Costo final"
 
 msgctxt "field:account.landed_cost-stock.shipment.in,rec_name:"
 msgid "Name"
@@ -84,7 +117,7 @@ msgstr ""
 
 msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
 msgid "Shipment"
-msgstr "Guía de remisión"
+msgstr "Envíos"
 
 msgctxt "field:account.landed_cost-stock.shipment.in,write_date:"
 msgid "Write Date"
@@ -92,31 +125,35 @@ msgstr ""
 
 msgctxt "field:account.landed_cost-stock.shipment.in,write_uid:"
 msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
 
 msgctxt "field:product.product,landed_cost:"
 msgid "Landed Cost"
-msgstr "Costo de recepción"
+msgstr "Costo final"
 
 msgctxt "field:product.template,landed_cost:"
 msgid "Landed Cost"
-msgstr "Costo de recepción"
+msgstr "Costo final"
 
 msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
-msgstr "Unidad de costo de recepción"
+msgstr "Unidad de costo final"
+
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr "Secuencia de cuenta de configuración de costo final"
 
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
-msgstr "Costo de recepción"
+msgstr "Costo final"
 
 msgctxt "model:account.landed_cost-stock.shipment.in,name:"
 msgid "Landed Cost - Shipment"
-msgstr "Costo de recepción - Guía de remisión"
+msgstr "Costo de final - Envío"
 
 msgctxt "model:ir.action,name:act_landed_cost_form"
 msgid "Landed Costs"
-msgstr "Costos de recepción"
+msgstr "Costos finales"
 
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
@@ -135,19 +172,19 @@ msgstr ""
 
 msgctxt "model:ir.sequence,name:sequence_landed_cost"
 msgid "Landed Cost"
-msgstr "Costo de recepción"
+msgstr "Costo final"
 
 msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
 msgid "Landed Cost"
-msgstr "Costo de recepción"
+msgstr "Costo final"
 
 msgctxt "model:ir.ui.menu,name:menu_landed_cost"
 msgid "Landed Costs"
-msgstr "Costos de recepción"
+msgstr "Costos finales"
 
 msgctxt "selection:account.landed_cost,allocation_method:"
 msgid "By Value"
-msgstr ""
+msgstr "Por valor"
 
 msgctxt "selection:account.landed_cost,state:"
 msgid "Canceled"
@@ -163,7 +200,7 @@ msgstr ""
 
 msgctxt "view:account.configuration:"
 msgid "Landed Cost"
-msgstr "Costo de recepción"
+msgstr "Costo final"
 
 msgctxt "view:account.configuration:"
 msgid "Sequence"
diff --git a/locale/fr.po b/locale/fr.po
index 1411b90..476e162 100644
--- a/locale/fr.po
+++ b/locale/fr.po
@@ -6,6 +6,39 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr "Séquence de coût de débarquement"
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Société"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Date de création"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Créé par"
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr "Séquence de coût de débarquement"
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Nom"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Date de mise à jour"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Mis à jour par"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr "Coût de débarquement"
@@ -106,6 +139,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr "Unité de coût de débarquement"
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr "Configuration comptable séquence de coût de débarquement"
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr "Coût de débarquement"
diff --git a/locale/hu_HU.po b/locale/hu_HU.po
index 2611d9c..4cd0cc9 100644
--- a/locale/hu_HU.po
+++ b/locale/hu_HU.po
@@ -6,6 +6,46 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Társaság"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Létrehozás détuma"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Által létrehozva "
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Név"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "utolsó módosítás dátuma"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Által módosítva"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr ""
@@ -123,6 +163,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr ""
diff --git a/locale/it_IT.po b/locale/it_IT.po
index b97ef5a..1d0a4f9 100644
--- a/locale/it_IT.po
+++ b/locale/it_IT.po
@@ -6,6 +6,47 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr "Sequenza costo atterrato"
 
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Azienda"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Creato il"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Creato da"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+#, fuzzy
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr "Sequenza costo atterrato"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Nome"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Modificato il"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "modificato da"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr "Costo atterrato"
@@ -106,6 +147,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr "Costo unitario di atterraggio"
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr "Costo di atterraggio"
diff --git a/locale/ja_JP.po b/locale/ja_JP.po
index 86e29d9..6838bab 100644
--- a/locale/ja_JP.po
+++ b/locale/ja_JP.po
@@ -6,6 +6,39 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr ""
+
 #, fuzzy
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
@@ -110,6 +143,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 #, fuzzy
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
diff --git a/locale/lo.po b/locale/lo.po
index b61671e..6083d97 100644
--- a/locale/lo.po
+++ b/locale/lo.po
@@ -6,6 +6,46 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "ຫ້ອງການ/ສຳນັກງານ"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "ສ້າງວັນທີ"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "ສ້າງຜູ້ໃຊ້ງານ"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ເລດລຳດັບ"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "ຊື່"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "ວັນທີບັນທຶກ"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "ສ້າງຜູ້ໃຊ້"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr ""
@@ -122,6 +162,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr ""
diff --git a/locale/lt.po b/locale/lt.po
index 456b18e..36de70e 100644
--- a/locale/lt.po
+++ b/locale/lt.po
@@ -6,6 +6,40 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Namu"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr ""
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr ""
@@ -108,6 +142,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr ""
diff --git a/locale/nl.po b/locale/nl.po
index d0019d1..6731aaa 100644
--- a/locale/nl.po
+++ b/locale/nl.po
@@ -6,6 +6,46 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Bedrijf"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Datum"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Gebruiker"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Naam bijlage"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Schrijfdatum"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Gebruiker"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr ""
@@ -124,6 +164,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr ""
diff --git a/locale/pl.po b/locale/pl.po
index 86e29d9..6838bab 100644
--- a/locale/pl.po
+++ b/locale/pl.po
@@ -6,6 +6,39 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr ""
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr ""
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr ""
+
 #, fuzzy
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
@@ -110,6 +143,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 #, fuzzy
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
diff --git a/locale/pt_BR.po b/locale/pt_BR.po
index a542cee..8e742e2 100644
--- a/locale/pt_BR.po
+++ b/locale/pt_BR.po
@@ -6,6 +6,39 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr "Sequência de Custo de Recepção"
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Empresa"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Data de criação"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Criado por"
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr "Sequência de Custo de Recepção"
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Nome"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Data de edição"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Editado por"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr "Custo de Recepção"
@@ -34,7 +67,6 @@ msgctxt "field:account.landed_cost,invoice_lines:"
 msgid "Invoice Lines"
 msgstr "Linhas da Fatura"
 
-#, fuzzy
 msgctxt "field:account.landed_cost,number:"
 msgid "Number"
 msgstr "Número"
@@ -95,7 +127,6 @@ msgctxt "field:account.landed_cost-stock.shipment.in,write_uid:"
 msgid "Write User"
 msgstr "Editado por"
 
-#, fuzzy
 msgctxt "field:product.product,landed_cost:"
 msgid "Landed Cost"
 msgstr "Custo de Recepção"
@@ -108,6 +139,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr "Unidade de Custo de Recepção"
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr "Configurações de Contabilidade Sequência de Custo de Recepção"
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr "Custo de Recepção"
@@ -163,12 +198,10 @@ msgctxt "selection:account.landed_cost,state:"
 msgid "Posted"
 msgstr "Confirmado"
 
-#, fuzzy
 msgctxt "view:account.configuration:"
 msgid "Landed Cost"
 msgstr "Custo de Recepção"
 
-#, fuzzy
 msgctxt "view:account.configuration:"
 msgid "Sequence"
 msgstr "Sequência"
diff --git a/locale/ru.po b/locale/ru.po
index 713d23b..9be7311 100644
--- a/locale/ru.po
+++ b/locale/ru.po
@@ -6,6 +6,46 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Учет.орг."
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Дата создания"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Создано пользователем"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Правило оплаты"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Дата изменения"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Изменено пользователем"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr ""
@@ -124,6 +164,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr ""
diff --git a/locale/sl.po b/locale/sl.po
index d629fee..97671c8 100644
--- a/locale/sl.po
+++ b/locale/sl.po
@@ -6,6 +6,39 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr "Štetje raztovora"
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr "Družba"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "Izdelano"
+
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "Izdelal"
+
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "ID"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr "Štetje raztovora"
+
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "Ime"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "Zapisano"
+
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "Zapisal"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr "Raztovor"
@@ -106,6 +139,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr "Enota raztovora"
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr "Konfiguracija štetja raztovora"
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr "Raztovor"
diff --git a/locale/zh_CN.po b/locale/zh_CN.po
index f2a17a6..cc26d40 100644
--- a/locale/zh_CN.po
+++ b/locale/zh_CN.po
@@ -6,6 +6,45 @@ msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
 msgstr ""
 
+msgctxt "field:account.configuration.landed_cost_sequence,company:"
+msgid "Company"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_date:"
+msgid "Create Date"
+msgstr "创建日期:"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,create_uid:"
+msgid "Create User"
+msgstr "添加用户"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,id:"
+msgid "ID"
+msgstr "编号"
+
+msgctxt ""
+"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
+msgid "Landed Cost Sequence"
+msgstr ""
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,rec_name:"
+msgid "Name"
+msgstr "纳木"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_date:"
+msgid "Write Date"
+msgstr "写入日期"
+
+#, fuzzy
+msgctxt "field:account.configuration.landed_cost_sequence,write_uid:"
+msgid "Write User"
+msgstr "写入帐号"
+
 msgctxt "field:account.invoice.line,landed_cost:"
 msgid "Landed Cost"
 msgstr ""
@@ -119,6 +158,10 @@ msgctxt "field:stock.move,unit_landed_cost:"
 msgid "Unit Landed Cost"
 msgstr ""
 
+msgctxt "model:account.configuration.landed_cost_sequence,name:"
+msgid "Account Configuration Landed Cost Sequence"
+msgstr ""
+
 msgctxt "model:account.landed_cost,name:"
 msgid "Landed Cost"
 msgstr ""
diff --git a/setup.py b/setup.py
index bc159c7..bf08fe3 100644
--- a/setup.py
+++ b/setup.py
@@ -84,7 +84,7 @@ setup(name=name,
         'Intended Audience :: Developers',
         'Intended Audience :: Financial and Insurance Industry',
         'Intended Audience :: Legal Industry',
-        'License :: OSI Approved :: GNU General Public License (GPL)',
+        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
         'Natural Language :: Bulgarian',
         'Natural Language :: Catalan',
         'Natural Language :: Chinese (Simplified)',
diff --git a/tryton.cfg b/tryton.cfg
index 97cbb2b..e2a9acf 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=4.2.0
+version=4.4.0
 depends:
     account
     account_invoice
diff --git a/trytond_account_stock_landed_cost.egg-info/PKG-INFO b/trytond_account_stock_landed_cost.egg-info/PKG-INFO
index 8f62c13..8f21e8e 100644
--- a/trytond_account_stock_landed_cost.egg-info/PKG-INFO
+++ b/trytond_account_stock_landed_cost.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-account-stock-landed-cost
-Version: 4.2.0
+Version: 4.4.0
 Summary: Tryton module for landed cost
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/4.2/
+Download-URL: http://downloads.tryton.org/4.4/
 Description: trytond_account_stock_landed_cost
         =================================
         
@@ -51,7 +51,7 @@ Classifier: Framework :: Tryton
 Classifier: Intended Audience :: Developers
 Classifier: Intended Audience :: Financial and Insurance Industry
 Classifier: Intended Audience :: Legal Industry
-Classifier: License :: OSI Approved :: GNU General Public License (GPL)
+Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
 Classifier: Natural Language :: Bulgarian
 Classifier: Natural Language :: Catalan
 Classifier: Natural Language :: Chinese (Simplified)
diff --git a/trytond_account_stock_landed_cost.egg-info/requires.txt b/trytond_account_stock_landed_cost.egg-info/requires.txt
index 625c7b6..a9a0704 100644
--- a/trytond_account_stock_landed_cost.egg-info/requires.txt
+++ b/trytond_account_stock_landed_cost.egg-info/requires.txt
@@ -1,5 +1,5 @@
-trytond_account >= 4.2, < 4.3
-trytond_account_invoice >= 4.2, < 4.3
-trytond_product >= 4.2, < 4.3
-trytond_stock >= 4.2, < 4.3
-trytond >= 4.2, < 4.3
+trytond_account >= 4.4, < 4.5
+trytond_account_invoice >= 4.4, < 4.5
+trytond_product >= 4.4, < 4.5
+trytond_stock >= 4.4, < 4.5
+trytond >= 4.4, < 4.5
diff --git a/view/landed_cost_form.xml b/view/landed_cost_form.xml
index 2c08441..b24bfb2 100644
--- a/view/landed_cost_form.xml
+++ b/view/landed_cost_form.xml
@@ -14,7 +14,7 @@ this repository contains the full copyright notices and license terms. -->
     <field name="shipments" colspan="4"/>
     <label name="state"/>
     <field name="state"/>
-    <group col="3" colspan="2" id="buttons">
+    <group col="-1" colspan="2" id="buttons">
         <button name="cancel" string="Cancel" icon="tryton-cancel"/>
         <button name="draft" string="Draft" icon="tryton-clear"/>
         <button name="post" string="Post" icon="tryton-ok"/>
-- 
tryton-modules-account-stock-landed-cost



More information about the tryton-debian-vcs mailing list