diff --git a/device.py b/device.py
index 826d221..4a3625e 100644
--- a/device.py
+++ b/device.py
@@ -42,9 +42,7 @@ class SaleDevice(ModelSQL, ModelView):
@fields.depends('shop')
def on_change_shop(self):
- return {
- 'company': self.shop.company.id if self.shop else None
- }
+ self.company = self.shop.company.id if self.shop else None
def get_company(self, name):
return self.shop.company.id
diff --git a/locale/es_CO.po b/locale/es_CO.po
index 8230091..20d070e 100644
--- a/locale/es_CO.po
+++ b/locale/es_CO.po
@@ -220,7 +220,7 @@ msgstr "Pagos"
msgctxt "field:sale.sale,residual_amount:"
msgid "Residual Amount"
-msgstr "Cambio"
+msgstr "Saldo"
msgctxt "field:sale.sale,sale_device:"
msgid "Sale Device"
diff --git a/statement.py b/statement.py
index 01120a1..8843bd5 100644
--- a/statement.py
+++ b/statement.py
@@ -157,7 +157,6 @@ class OpenStatement(Wizard):
pool = Pool()
User = pool.get('res.user')
Statement = pool.get('account.statement')
- Journal = pool.get('account.statement.journal')
user = Transaction().user
user = User(user)
@@ -249,7 +248,6 @@ class CloseStatement(Wizard):
pool = Pool()
User = pool.get('res.user')
Statement = pool.get('account.statement')
- Journal = pool.get('account.statement.journal')
user = Transaction().user
user = User(user)
diff --git a/statement.xml b/statement.xml
index b54901e..6fd2ed4 100644
--- a/statement.xml
+++ b/statement.xml
@@ -8,7 +8,8 @@ copyright notices and license terms. -->
Statements
account.statement
- [('users', '=', Eval('_user'))]
+
@@ -24,21 +25,24 @@ copyright notices and license terms. -->
id="act_sale_statement_form_domain_draft">
Draft
- [('state', '=', 'draft')]
+
Validated
- [('state', '=', 'validated')]
+
Posted
- [('state', '=', 'posted')]
+
-
diff --git a/tryton.cfg b/tryton.cfg
index d52e3c3..9a0e2fb 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.4.0
+version=3.6.0
depends:
account_statement
sale_shop