zoukankan      html  css  js  c++  java
  • odoo filter 日期

    <!--日期-->
    <filter name="before_twodays" string="前天"
    domain="[('date','&gt;=',(context_today() - relativedelta(days=2)).strftime('%Y-%m-%d')),
    ('date','&lt;',(context_today() - relativedelta(days=1)).strftime('%Y-%m-%d'))]"/>

    <filter name="yesterday" string="昨日"
    domain="[('date','&gt;=',(context_today() - relativedelta(days=1)).strftime('%Y-%m-%d')),
    ('date','&lt;',time.strftime('%Y-%m-%d'))]"/>

    <filter name="today" string="今日"
    domain="[('date','&gt;=',(context_today().strftime('%Y-%m-%d'))),
    ('date','&lt;',(context_today() + relativedelta(days=1)).strftime('%Y-%m-%d'))]"/>

    <filter name="tomorrow" string="明日"
    domain="[('date','&gt;',time.strftime('%Y-%m-%d')),
    ('date','&lt;=',(context_today() + relativedelta(days=1)).strftime('%Y-%m-%d'))]"/>

    <filter name="after_twodays" string="后天"
    domain="[('date','&gt;',(context_today() + relativedelta(days=1)).strftime('%Y-%m-%d')),
    ('date','&lt;',(context_today() + relativedelta(days=3)).strftime('%Y-%m-%d'))]"/>

    <filter name="after_threedays" string="大后天"
    domain="[('date','&gt;',(context_today() + relativedelta(days=2)).strftime('%Y-%m-%d')),
    ('date','&lt;',(context_today() + relativedelta(days=4)).strftime('%Y-%m-%d'))]"/>

    <filter name="week" string="本周"
    domain="[('date','&gt;=',(context_today() - datetime.timedelta(days=context_today().weekday())).strftime('%Y-%m-%d')),
    ('date','&lt;',(context_today() - datetime.timedelta(weeks=-1,days=context_today().weekday())).strftime('%Y-%m-%d'))]"/>

    <filter name="week1" string="1本周"
    domain="[('date','&gt;=',(context_today() - datetime.timedelta(days=context_today().weekday())).strftime('%Y-%m-%d')),
    ('date','&lt;=',(context_today() + datetime.timedelta(days=context_today().weekday()-6)).strftime('%Y-%m-%d'))]"/>

    <filter name="after_sevendays" string="下周"
    domain="[('date','&gt;=',(context_today() - datetime.timedelta(weeks=-1,days=context_today().weekday())).strftime('%Y-%m-%d')),
    ('date','&lt;',(context_today() - datetime.timedelta(weeks=-2,days=context_today().weekday())).strftime('%Y-%m-%d'))]"/>

    <filter name="month" string="本月"
    domain="[('date','&gt;=',context_today().strftime('%Y-%m-01')),
    ('date','&lt;',(context_today() + relativedelta(months=1)).strftime('%Y-%m-01'))]"/>

    <filter name="next_month" string="下月"
    domain="[('date','&gt;=',(context_today() + relativedelta(months=1)).strftime('%Y-%m-01')),
    ('date','&lt;',(context_today() + relativedelta(months=2)).strftime('%Y-%m-01'))]"/>

    <filter name="last_week" string="上周"
    domain="[('date','&gt;=',(context_today() - relativedelta(weeks=1,days=context_today().weekday())).strftime('%Y-%m-%d')),
    ('date','&lt;',(context_today() - datetime.timedelta(days=context_today().weekday())).strftime('%Y-%m-%d'))]"/>

    <filter name="last_month" string="上月"
    domain="[('date','&gt;=',(context_today() - relativedelta(months=1)).strftime('%Y-%m-01')),
    ('date','&lt;',context_today().strftime('%Y-%m-01'))]"/>

    <filter name="last_month1" string="1上月"
    domain="[('date','&gt;=',(context_today() - relativedelta(months=1,day=1)).strftime('%Y-%m-%d')),
    ('date','&lt;',(context_today() + relativedelta(day=1)).strftime('%Y-%m-%d'))]"/>

    <filter name="quarter1" string="本季度"
    domain="[('date','&gt;=',datetime.date(context_today().year,((context_today().month - 1) / 3 * 3 ), 1).strftime('%Y-%m-%d')),
    ('date','&lt;',datetime.date(context_today().year,((context_today().month - 1) / 3 * 3 + 3), 1).strftime('%Y-%m-%d'))]"/>

    <separator/>

  • 相关阅读:
    【转】jquery-取消冒泡
    【转】android如何浏览并选择图片 音频 视频
    ListView防止滑动变色的小技巧
    【转】 Android经验: proguard 阻碍 webview 正常工作
    【转】获取android设备 id
    【转】android 选取图片
    eclipse 配置git ssh登录
    android 开启或者隐藏软键盘
    【转】如何设置Android软键盘的默认不弹出?
    【转】中国人唯一不认可的成功——就是家庭的和睦,人生的平淡
  • 原文地址:https://www.cnblogs.com/alangwansui/p/9459544.html
Copyright © 2011-2022 走看看