-
-
Notifications
You must be signed in to change notification settings - Fork 689
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Account Invoice Line default Account | ||
==================================== | ||
|
||
When entering sales or purchase invoices directly, the user has to select an | ||
account which will be used as a counterpart in the generated move lines. Each | ||
supplier will mostly be linked to one account. For instance when ordering paper | ||
from a supplier that deals in paper, the counterpart account will mostly be | ||
something like 'office expenses'. The same principle has been applied for | ||
customers. This module will add a default counterpart expense and income | ||
account to a partner, comparable to the similiar field in product. When an | ||
invoice is entered, withouth a product, the field from partner will be used as | ||
default. Also when an account is entered on an invoice line (not automatically | ||
selected for a product), the account will be automatically linked to the | ||
partner as default expense or income account, unless explicitly disabled in the | ||
partner record. | ||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
* Jacques-Etienne Baudoux <[email protected]> (BCIM sprl) | ||
|
||
Maintainer | ||
---------- | ||
|
||
.. image:: http://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: http://odoo-community.org | ||
|
||
This module is maintained by the OCA. | ||
|
||
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. | ||
|
||
To contribute to this module, please visit http://odoo-community.org. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
# OpenERP, Open Source Management Solution | ||
# This module copyright (C) 2012 Therp BV (<http://therp.nl>). | ||
# This module copyright (C) 2013 BCIM SPRL (<http://www.bcim.be>). | ||
# This module copyright (C) 2013-2015 BCIM SPRL (<http://www.bcim.be>). | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Affero General Public License as | ||
|
@@ -21,25 +21,13 @@ | |
############################################################################## | ||
{ | ||
'name': 'Account Invoice Line Default Account', | ||
'version': '7.0.1.0', | ||
'version': '1.0', | ||
'depends': [ | ||
'account' | ||
], | ||
'author': 'Therp BV', | ||
'author': 'Therp BV,BCIM,Odoo Community Association (OCA)', | ||
'contributors': ['Jacques-Etienne Baudoux <[email protected]>'], | ||
'category': 'Accounting', | ||
'description': '''When entering sales or purchase invoices directly, the | ||
user has to select an account which will be used as a counterpart in the | ||
generated move lines. Each supplier will mostly be linked to one account. For | ||
instance when ordering paper from a supplier that deals in paper, the | ||
counterpart account will mostly be something like 'office expenses'. The sme | ||
principle has been applied for customers. This module will add a default | ||
counterpart expense and income account to a partner, comparable to the similiar | ||
field in product. When an invoice is entered, withouth a product, the field | ||
from partner will be used as default. Also when an account is entered on an | ||
invoice line (not automatically selected for a product), the account will be | ||
automatically linked to the partner as default expense or income account, unless | ||
explicitly disabled in the partner record.''', | ||
'data': [ | ||
'view/res_partner.xml', | ||
'view/account_invoice.xml', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters