Browse Source

[FIX] Bug Fixed 'base_account_budget'

pull/134/merge
Ajmalcybrosys 6 years ago
parent
commit
6acb5f4d3b
  1. 2
      base_account_budget/__manifest__.py
  2. 5
      base_account_budget/doc/RELEASE_NOTES.md
  3. 4
      base_account_budget/security/ir.model.access.csv
  4. 14
      base_account_budget/views/account_budget_views.xml

2
base_account_budget/__manifest__.py

@ -21,7 +21,7 @@
#############################################################################
{
'name': 'Odoo 13 Budget Management',
'version': '13.0.1.0.0',
'version': '13.0.1.1.0',
'summary': """ Budget Management for Odoo 13 Community Edition. """,
'description': """ This module allows accountants to manage analytic and budgets.

5
base_account_budget/doc/RELEASE_NOTES.md

@ -4,3 +4,8 @@
#### Version 13.0.1.0.0
#### ADD
- Initial commit for base_account_budget
#### 20.11.2019
#### Version 13.0.1.1.0
#### FIX
- Bug Fixed

4
base_account_budget/security/ir.model.access.csv

@ -1,6 +1,6 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_budget_budget,budget.budget,model_budget_budget,account.group_account_manager,1,0,0,0
access_account_budget_post,account.budget.post,model_account_budget_post,account.group_account_manager,1,0,0,0
access_budget_budget,budget.budget,model_budget_budget,account.group_account_manager,1,1,1,1
access_account_budget_post,account.budget.post,model_account_budget_post,account.group_account_manager,1,1,1,1
access_account_budget_post_accountant,account.budget.post accountant,model_account_budget_post,account.group_account_user,1,1,1,1
access_budget_budget_accountant,budget.budget accountant,model_budget_budget,account.group_account_user,1,1,1,1
access_budget_lines_accountant,budget.lines accountant,model_budget_lines,account.group_account_user,1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_budget_budget budget.budget model_budget_budget account.group_account_manager 1 0 1 0 1 0 1
3 access_account_budget_post account.budget.post model_account_budget_post account.group_account_manager 1 0 1 0 1 0 1
4 access_account_budget_post_accountant account.budget.post accountant model_account_budget_post account.group_account_user 1 1 1 1
5 access_budget_budget_accountant budget.budget accountant model_budget_budget account.group_account_user 1 1 1 1
6 access_budget_lines_accountant budget.lines accountant model_budget_lines account.group_account_user 1 1 1 1

14
base_account_budget/views/account_budget_views.xml

@ -176,29 +176,29 @@
<t t-name="kanban-box">
<div t-attf-class="oe_kanban_global_click">
<div class="row mb4">
<div class="col-xs-8">
<div class="col-8">
<strong>
<field name="name"/>
</strong>
</div>
<div class="col-xs-4">
<span class="pull-right">
<div class="col-4">
<span class="float-right">
<field name="state" widget="label_selection"
options="{'classes': {'draft': 'default', 'done': 'success'}}"/>
</span>
</div>
</div>
<div class="row">
<div class="col-xs-10">
<div class="col-10">
<i class="fa fa-clock-o"/>
<t t-esc="record.date_from.value"/>-
<t t-esc="record.date_to.value"/>
</div>
<div class="col-xs-2">
<span class="pull-right">
<img t-att-src="kanban_image('res.users', 'image_small', record.creating_user_id.raw_value)"
<span class="float-right">
<img alt="" t-att-src="kanban_image('res.users', 'image_small', record.creating_user_id.raw_value)"
t-att-title="record.creating_user_id.value" width="24" height="24"
class="oe_kanban_avatar pull-right"/>
class="oe_kanban_avatar float-right"/>
</span>
</div>
</div>

Loading…
Cancel
Save