~acsone-openerp/acsone-addons/7.0

« back to all changes in this revision

Viewing changes to update_std_price_account/__openerp__.py

  • Committer: Laetitia Gangloff
  • Date: 2014-05-30 15:19:58 UTC
  • Revision ID: laetitia.gangloff@acsone.eu-20140530151958-ylopr2uv9hnt3023
add module update_std_price_account to change account to use for valuation when change standard price

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Authors: Laetitia Gangloff
 
5
#    Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
 
6
#    All Rights Reserved
 
7
#
 
8
#    WARNING: This program as such is intended to be used by professional
 
9
#    programmers who take the whole responsibility of assessing all potential
 
10
#    consequences resulting from its eventual inadequacies and bugs.
 
11
#    End users who are looking for a ready-to-use solution with commercial
 
12
#    guarantees and support are strongly advised to contact a Free Software
 
13
#    Service Company.
 
14
#
 
15
#    This program is free software: you can redistribute it and/or modify
 
16
#    it under the terms of the GNU Affero General Public License as
 
17
#    published by the Free Software Foundation, either version 3 of the
 
18
#    License, or (at your option) any later version.
 
19
#
 
20
#    This program is distributed in the hope that it will be useful,
 
21
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
22
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
23
#    GNU Affero General Public License for more details.
 
24
#
 
25
#    You should have received a copy of the GNU Affero General Public License
 
26
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
27
#
 
28
##############################################################################
 
29
 
 
30
{
 
31
    "name": "Update standard price - account",
 
32
    "version": "0.1",
 
33
    "author": "ACSONE SA/NV",
 
34
    "category": "Other",
 
35
    "website": "http://www.acsone.eu",
 
36
    "depends": ["stock",
 
37
                ],
 
38
    "description": """
 
39
 
 
40
Update standard price - account
 
41
=========================
 
42
 
 
43
- When update standard price allow the selection of the account to use for stock valuation
 
44
 
 
45
""",
 
46
    "data": ['stock_change_standard_price_view.xml',
 
47
              ],
 
48
    "demo": [],
 
49
    "test": [],
 
50
    "active": False,
 
51
    "license": "AGPL-3",
 
52
    "installable": True,
 
53
    "auto_install": False,
 
54
    "application": False,
 
55
}
 
56
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: