~enlightx-deactivatedaccount/openobject-italia/7.0-fix-1271907

« back to all changes in this revision

Viewing changes to l10n_it_sale/stock/picking.py

  • Committer: davide.corio at domsense
  • Date: 2014-01-23 12:37:00 UTC
  • Revision ID: davide.corio@domsense.com-20140123123700-o7yal5k81izbhrb2
[DEL] (probably) not useful statement

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
    # EVITARE LA COPIA DI 'NUMERO DDT'
86
86
    #-----------------------------------------------------------------------------
87
87
    def copy(self, cr, uid, id, default={}, context=None):
88
 
        if default is None:
89
 
            default = {}
90
88
        default.update({'ddt_number': ''})
91
89
        return super(stock_picking_out, self).copy(cr, uid, id, default, context)
92
90