Skip to content

Commit 4447604

Browse files
committed
Fixed CI/tutorial warnings
1 parent e34f1d1 commit 4447604

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

estate/__manifest__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
'name': 'Real Estate',
3+
'author': 'Odoo S.A.',
34
'depends': [
45
'base',
56
],
67
'application': True,
8+
'license': 'LGPL-3',
79
'data': [
810
'views/estate_property_offer_views.xml',
911
'security/ir.model.access.csv',

estate/views/estate_property_offer_views.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
<field name="partner_id" string="Partner"/>
2828
<field name="validity"/>
2929
<field name="date_deadline"/>
30-
<button name="action_status_accepted" type="object" icon="fa-check" invisible="status"/>
31-
<button name="action_status_refused" type="object" icon="fa-close" invisible="status"/>
30+
<button name="action_status_accepted" type="object" icon="fa-check" invisible="status" aria-label="Accept Offer"/>
31+
<button name="action_status_refused" type="object" icon="fa-close" invisible="status" aria-label="Decline Offer"/>
3232
</list>
3333
</field>
3434
</record>

estate_account/__manifest__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
'name': 'Estate Account',
3+
'author': 'Odoo S.A.',
34
'depends': [
45
'estate',
56
'account',
67
],
78
'application': True,
9+
'license': 'LGPL-3',
810
'data': []
911
}

0 commit comments

Comments
 (0)