本文整理汇总了Python中karesansui.lib.checker.Checker.check_time_string方法的典型用法代码示例。如果您正苦于以下问题:Python Checker.check_time_string方法的具体用法?Python Checker.check_time_string怎么用?Python Checker.check_time_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类karesansui.lib.checker.Checker
的用法示例。
在下文中一共展示了Checker.check_time_string方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: validates_log
# 需要导入模块: from karesansui.lib.checker import Checker [as 别名]
# 或者: from karesansui.lib.checker.Checker import check_time_string [as 别名]
def validates_log(obj):
checker = Checker()
check = True
_ = obj._
checker.errors = []
if is_param(obj.input, 's'):
check = checker.check_datetime_string(_('Start Date'),
obj.input.s,
CHECK_EMPTY | CHECK_VALID,
obj.me.languages,
) and check
if is_param(obj.input, 'e'):
check = checker.check_datetime_string(_('End Date'),
obj.input.e,
CHECK_EMPTY | CHECK_VALID,
obj.me.languages,
) and check
if is_param(obj.input, 'st'):
check = checker.check_time_string(_('Start Time'),
obj.input.st,
CHECK_EMPTY | CHECK_VALID,
) and check
if is_param(obj.input, 'et'):
check = checker.check_time_string(_('End Time'),
obj.input.et,
CHECK_EMPTY | CHECK_VALID,
) and check
obj.view.alert = checker.errors
return check
示例2: validates_report
# 需要导入模块: from karesansui.lib.checker import Checker [as 别名]
# 或者: from karesansui.lib.checker.Checker import check_time_string [as 别名]
def validates_report(obj):
checker = Checker()
check = True
_ = obj._
checker.errors = []
if is_param(obj.input, 'report_start_day'):
check = checker.check_datetime_string(_('Start Date'),
obj.input.report_start_day,
CHECK_EMPTY | CHECK_VALID,
obj.me.languages,
) and check
if is_param(obj.input, 'report_end_day'):
check = checker.check_datetime_string(_('End Date'),
obj.input.report_end_day,
CHECK_EMPTY | CHECK_VALID,
obj.me.languages,
) and check
if is_param(obj.input, 'report_start_time'):
check = checker.check_time_string(_('Start Time'),
obj.input.report_start_time,
CHECK_EMPTY | CHECK_VALID,
) and check
if is_param(obj.input, 'report_end_time'):
check = checker.check_time_string(_('End Time'),
obj.input.report_end_time,
CHECK_EMPTY | CHECK_VALID,
) and check
obj.view.alert = checker.errors
return check
示例3: validates_log
# 需要导入模块: from karesansui.lib.checker import Checker [as 别名]
# 或者: from karesansui.lib.checker.Checker import check_time_string [as 别名]
def validates_log(obj):
checker = Checker()
check = True
_ = obj._
checker.errors = []
if is_param(obj.input, "s"):
check = (
checker.check_datetime_string(_("Start Date"), obj.input.s, CHECK_EMPTY | CHECK_VALID, obj.me.languages)
and check
)
if is_param(obj.input, "e"):
check = (
checker.check_datetime_string(_("End Date"), obj.input.e, CHECK_EMPTY | CHECK_VALID, obj.me.languages)
and check
)
if is_param(obj.input, "st"):
check = checker.check_time_string(_("Start Time"), obj.input.st, CHECK_EMPTY | CHECK_VALID) and check
if is_param(obj.input, "et"):
check = checker.check_time_string(_("End Time"), obj.input.et, CHECK_EMPTY | CHECK_VALID) and check
obj.view.alert = checker.errors
return check