本文整理汇总了Python中hours.forms.TimecardFormSet.set_working_hours方法的典型用法代码示例。如果您正苦于以下问题:Python TimecardFormSet.set_working_hours方法的具体用法?Python TimecardFormSet.set_working_hours怎么用?Python TimecardFormSet.set_working_hours使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hours.forms.TimecardFormSet
的用法示例。
在下文中一共展示了TimecardFormSet.set_working_hours方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_reporting_period_with_less_than_40_hours_failure
# 需要导入模块: from hours.forms import TimecardFormSet [as 别名]
# 或者: from hours.forms.TimecardFormSet import set_working_hours [as 别名]
def test_reporting_period_with_less_than_40_hours_failure(self):
""" Test the timecard form when the reporting period is less than
40 hours a week and the hours entered do not match the working hours"""
form_data = self.form_data()
form_data['timecardobject_set-0-hours_spent'] = '5'
form_data['timecardobject_set-1-hours_spent'] = '5'
formset = TimecardFormSet(form_data)
formset.set_working_hours(16)
self.assertFalse(formset.is_valid())
示例2: test_reporting_period_with_less_than_40_hours_success_save_mode
# 需要导入模块: from hours.forms import TimecardFormSet [as 别名]
# 或者: from hours.forms.TimecardFormSet import set_working_hours [as 别名]
def test_reporting_period_with_less_than_40_hours_success_save_mode(self):
""" Test the timecard form when the reporting period is less than
40 hours a week and you save (not submit) """
form_data = self.form_data()
form_data['timecardobject_set-0-hours_spent'] = '5'
form_data['timecardobject_set-1-hours_spent'] = '5'
formset = TimecardFormSet(form_data)
formset.set_working_hours(16)
formset.save_only = True
self.assertTrue(formset.is_valid())