Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个可以包含数字和文本的字段,例如“6个月”,我已经使用了该datetime字段,但它只需要一个格式化的日期,如果使用integer或者float它需要一个数字,并且char需要只有一个字符,那么我怎么能在同一个字段上有一个integer和一个?char
datetime
integer
float
char
你想要的目前在 openerp 中是不可能的。但是你可以使用一个技巧,你应该使用两个字段,一个是整数,用于给出间隔,另一个是 char 字段,用于给出月份、天数等。你可以在 Scheduler 上得到这个例子,打开器的 ir.cron 对象。