diff --git a/account_usability/account.py b/account_usability/account.py
index 6d17a11..6fe2012 100644
--- a/account_usability/account.py
+++ b/account_usability/account.py
@@ -626,3 +626,14 @@ class AccountReconcileModel(models.Model):
# Because it's much better to have the bank statement line label as
# label of the counter-part move line, then the label of the button
assert True # Stupid line of code just to have something...
+
+
+class AccountIncoterms(models.Model):
+ _inherit = 'account.incoterms'
+
+ @api.depends('code', 'name')
+ def name_get(self):
+ res = []
+ for rec in self:
+ res.append((rec.id, '[%s] %s' % (rec.code, rec.name)))
+ return res
diff --git a/account_usability/account_view.xml b/account_usability/account_view.xml
index 5b0f5c0..439ee39 100644
--- a/account_usability/account_view.xml
+++ b/account_usability/account_view.xml
@@ -16,6 +16,9 @@
selection
+
+ selection
+
@@ -33,6 +36,9 @@
selection
+
+ selection
+