Skip to content

Commit

Permalink
[IMP] Improved README file
Browse files Browse the repository at this point in the history
  • Loading branch information
nikul-serpentcs committed Sep 2, 2017
1 parent 9653498 commit daeabed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 52 deletions.
13 changes: 1 addition & 12 deletions account_invoice_kanban/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
Account Invoice Kanban
=======================


Introduction
============
Currently Odoo just provides a status for Draft/open/paid status which is not
enough to follow the full administrative process.

Expand Down Expand Up @@ -41,7 +38,7 @@ Configuration
=============
Stage are set up in the Invoicing application:

#. Invoicing menu --> Configuration --> Stages --> Invoice Stages
#. go to Settings > Technical > Kanban > Stages.
#. Create a new stage

Usage
Expand All @@ -51,14 +48,6 @@ Usage
#. Drag and drop the invoices from stage to stage
#. In the form view, click on any new stage to change it

Known Issues / Roadmap
======================
* Stages are somehow redondant with invoice status: it would be good to have the option to
sync both of them in certain cases. Eg: when an invoice is paid, the invoice is pushed to
corresponding invoice stage.
* Kanban view as default view might not be optimum for many cases where invoices numbers makes
the view slow to display.

Bug Tracker
===========

Expand Down
42 changes: 2 additions & 40 deletions account_invoice_kanban/views/account_invoice_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,49 +67,11 @@
</record>

<record id="account.action_invoice_tree1" model="ir.actions.act_window">
<field name="name">Customer Invoices</field>
<field name="res_model">account.invoice</field>
<field name="view_type">form</field>
<field name="view_mode">tree,kanban,form,calendar,pivot,graph</field>
<field eval="False" name="view_id"/>
<field name="domain">[('type','in',('out_invoice', 'out_refund'))]</field>
<field name="context">{'type':'out_invoice', 'journal_type': 'sale'}</field>
<field name="search_view_id" ref="account.view_account_invoice_filter"/>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to create a customer invoice.
</p>
<p>
Odoo's electronic invoicing allows to ease and fasten the
collection of customer payments. Your customer receives the
invoice by email and he can pay online and/or import it
in his own system.
</p>
<p>
The discussions with your customer are automatically displayed at
the bottom of each invoice.
</p>
</field>
<field name="view_mode">kanban,tree,form,calendar,pivot,graph</field>
</record>

<record id="account.action_invoice_tree2" model="ir.actions.act_window">
<field name="name">Vendor Bills</field>
<field name="res_model">account.invoice</field>
<field name="view_type">form</field>
<field name="view_mode">tree,kanban,form,calendar,pivot,graph</field>
<field eval="False" name="view_id"/>
<field name="domain">[('type','in',('in_invoice', 'in_refund'))]</field>
<field name="context">{'default_type': 'in_invoice', 'type': 'in_invoice', 'journal_type': 'purchase'}</field>
<field name="search_view_id" ref="account.view_account_invoice_filter"/>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to record a new vendor bill.
</p>
<p>
You can control the invoice from your vendor according to
what you purchased or received.
</p>
</field>
<field name="view_mode">kanban,tree,form,calendar,pivot,graph</field>
</record>

<record id="account.action_invoice_tree1_view1" model="ir.actions.act_window.view">
Expand Down

0 comments on commit daeabed

Please sign in to comment.