[FIX] pep8

This commit is contained in:
Guewen Baconnier
2013-12-03 11:27:02 +01:00
parent 047278b035
commit fb6c945fab

View File

@@ -19,19 +19,22 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.osv import fields, orm, osv
from openerp.osv import fields, orm
class stock_warehouse(orm.Model):
_inherit = "stock.warehouse"
_columns = {
'lot_rma_id': fields.many2one('stock.location', 'Location RMA'),
'lot_carrier_loss_id': fields.many2one('stock.location',
'lot_carrier_loss_id': fields.many2one(
'stock.location',
'Location Carrier Loss'),
'lot_breakage_loss_id': fields.many2one('stock.location',
'lot_breakage_loss_id': fields.many2one(
'stock.location',
'Location Breakage Loss'),
'lot_refurbish_id': fields.many2one('stock.location',
'lot_refurbish_id': fields.many2one(
'stock.location',
'Location Refurbish'),
}