mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
9 lines
182 B
Python
9 lines
182 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import api, fields, models, tools, _
|
|
|
|
|
|
class Location(models.Model):
|
|
_name = "stock.location"
|
|
_inherit = ['stock.location', 'image.mixin']
|