Created
April 4, 2018 05:26
-
-
Save tienhieuD/3c0b4605c78f1ed01efffc50b3ec9f1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from odoo import fields, models | |
class TestDomain(models.Model): | |
_name = 'test.domain' | |
_description = 'domain test' | |
_rec_name = 'book' | |
book = fields.Many2one("mylib.book", 'Sách của tôi', domain=[]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment