Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
比如,要选择一个截止日期,该日期为七天内的日期,那怎么限制这个字段呢?
加一个constrains, 可以参考这个例子: https://github.com/odoo/odoo/blob/cd48a806ac636806130efcf5c055f73758cb0902/addons/product/models/product_attribute.py#L98
查找到一个这样的方法, 举个栗子: 最小日期为当天 最小日期为前一天(-2为前天,依次类推) 最小日期为后一天(2为后两天,依次类推) 最小日期以start_date为准,如果start_date没有值,则不限制 最大日期为当天 最大日期为前一天(-2为前天,依次类推) 最大日期为后一天(2为后两天,依次类推) 最大日期以start_date为准,如果start_date没有值,则不限制
但是我用这个方法 没有作用,加入QQ群了,贴主实践有作用。不知道为什么。
原文:http://blog.csdn.net/vnsoft/article/details/77864639
你要装了他开发的模块才有这个功能啊