date from and date to not correspond from a link.

conv_bal
watcha.h@almacom.co.th 2015-04-02 11:12:00 +07:00
parent 8980bc9f3a
commit 5095747ea4
1 changed files with 8 additions and 8 deletions

View File

@ -33,8 +33,8 @@ class ReportLaborCostSummary(Model):
def default_get(self,field_names=None,context={},**kw): def default_get(self,field_names=None,context={},**kw):
defaults=context.get("defaults",{}) defaults=context.get("defaults",{})
date_from=defaults.get("date", self._get_date_from()) date_from=defaults.get("date_from", self._get_date_from())
date_to=defaults.get("date", self._get_date_to()) date_to=defaults.get("date_to", self._get_date_to())
staff_type=defaults.get("staff_type","doctor") staff_type=defaults.get("staff_type","doctor")
staff_id=int(defaults.get('staff_id', "0")) staff_id=int(defaults.get('staff_id', "0"))
print('defaults ', defaults) print('defaults ', defaults)
@ -49,12 +49,12 @@ class ReportLaborCostSummary(Model):
return res return res
def get_report_data(self,ids,context={}): def get_report_data(self,ids,context={}):
res=get_model("clinic.report.labor.cost.summary").default_get(context=context) defaults=self.default_get(context=context)
date_from=res['date_from'] date_from=defaults['date_from']
date_to=res['date_to'] date_to=defaults['date_to']
staff_id=res['staff_id'] staff_id=defaults['staff_id']
staff_type=res['staff_type'] staff_type=defaults['staff_type']
only_value=res['only_value'] only_value=defaults['only_value']
level_id=None level_id=None
categ_id=None categ_id=None
branch_id=None branch_id=None