Upgrade patches last main branch

This commit is contained in:
Raimon Esteve 2023-11-20 11:46:06 +01:00
parent 497e2eed1d
commit d967352d4f
2 changed files with 17 additions and 17 deletions

View File

@ -1,8 +1,8 @@
diff --git a/tryton/sao/src/sao.js b/sao/src/sao.js
index 05d86252..fcedb792 100644
diff --git a/tryton/sao/src/sao.js b/tryton/sao/src/sao.js
index 9e5807824e..21bb43ccfa 100644
--- a/tryton/sao/src/sao.js
+++ b/tryton/sao/src/sao.js
@@ -1081,10 +1081,6 @@ var Sao = {};
@@ -1120,10 +1120,6 @@ var Sao = {
shortcut: 'ctrl+p',
label: Sao.i18n.gettext('Print'),
id: 'print',
@ -13,8 +13,8 @@ index 05d86252..fcedb792 100644
}, {
shortcut: 'alt+shift+tab',
label: Sao.i18n.gettext('Previous tab'),
diff --git a/src/tab.js b/src/tab.js
index f9186bc9..47987500 100644
diff --git a/tryton/sao/src/tab.js b/tryton/sao/src/tab.js
index 411b61a9b6..a47e21f586 100644
--- a/tryton/sao/src/tab.js
+++ b/tryton/sao/src/tab.js
@@ -91,11 +91,6 @@
@ -47,10 +47,10 @@ index f9186bc9..47987500 100644
var button = dropdown.find('button');
this.buttons[menu_action[0]] = button;
dropdown
@@ -1433,7 +1428,7 @@
name += '#' + selected;
}
@@ -1442,7 +1437,7 @@
}
const view_type = this.screen.current_view.view_type;
const has_views = this.screen.number_of_views > 1;
- var buttons = ['print', 'relate', 'email', 'attach'];
+ var buttons = ['print', 'relate', 'attach'];
for (const button_id of buttons) {

View File

@ -1,8 +1,8 @@
diff --git a/account.py b/account.py
index 974a027..60b320f 100644
diff --git a/tryton/modules/account/account.py b/tryton/modules/account/account.py
index 11225ae174..b5f981085f 100644
--- a/tryton/modules/account/account.py
+++ a/tryton/modules/account/account.py
@@ -2035,7 +2035,7 @@ class GeneralLedgerAccountContext(ModelView):
+++ b/tryton/modules/account/account.py
@@ -2123,7 +2123,7 @@ class GeneralLedgerAccountContext(ModelView):
'General Ledger Account Context'
__name__ = 'account.general_ledger.account.context'
fiscalyear = fields.Many2One('account.fiscalyear', 'Fiscal Year',
@ -11,7 +11,7 @@ index 974a027..60b320f 100644
domain=[
('company', '=', Eval('company')),
],
@@ -2046,7 +2046,8 @@ class GeneralLedgerAccountContext(ModelView):
@@ -2134,7 +2134,8 @@ class GeneralLedgerAccountContext(ModelView):
('start_date', '<=', (Eval('end_period'), 'start_date')),
],
states={
@ -21,7 +21,7 @@ index 974a027..60b320f 100644
})
end_period = fields.Many2One('account.period', 'End Period',
domain=[
@@ -2054,7 +2055,8 @@ class GeneralLedgerAccountContext(ModelView):
@@ -2142,7 +2143,8 @@ class GeneralLedgerAccountContext(ModelView):
('start_date', '>=', (Eval('start_period'), 'start_date'))
],
states={
@ -31,12 +31,12 @@ index 974a027..60b320f 100644
})
from_date = fields.Date("From Date",
domain=[
@@ -2262,7 +2264,7 @@ class GeneralLedgerLine(ModelSQL, ModelView):
@@ -2378,7 +2380,7 @@ class GeneralLedgerLine(DescriptionOriginMixin, ModelSQL, ModelView):
def __setup__(cls):
super(GeneralLedgerLine, cls).__setup__()
cls.__access__.add('account')
- cls._order.insert(0, ('date', 'ASC'))
+ cls._order = [('date', 'DESC'), ('id', 'DESC')]
cls.description_used.setter = None
@classmethod
def table_query(cls):