~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to l10n_ve_stock/stock_valued.py

[ADD] [product_customs_rate] Add new module product_customs_rate

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#    Module Writen to OpenERP, Open Source Management Solution
5
5
#    Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
6
6
#    All Rights Reserved
7
 
# Credits######################################################
 
7
###############Credits######################################################
8
8
#    Coded by: javier@vauxoo.com
9
9
#    Planified by: Nhomar Hernandez
10
10
#    Audited by: Vauxoo C.A.
21
21
#
22
22
#    You should have received a copy of the GNU Affero General Public License
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
 
##########################################################################
 
24
################################################################################
25
25
 
26
 
from openerp.osv import osv, fields
 
26
from osv import fields, osv
27
27
 
28
28
 
29
29
#----------------------------------------------------------
30
30
# Stock Picking
31
31
#----------------------------------------------------------
32
 
class stock_picking(osv.Model):
 
32
class stock_picking(osv.osv):
33
33
    _inherit = "stock.picking"
34
34
    _columns = {
35
35
        'number': fields.char('Delivery Order Number', size=32, readonly=True, help="Delivery Order Reference"),
36
 
    }
 
36
            }
37
37
 
 
38
stock_picking()
38
39
 
39
40
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: