我已经将BaseDatatableView用于数据表。在使用BaseDatatableView时已经使用了django-orm查询。但是当我尝试调用一个过程时,它显示了错误。我的要求已经从查询更改为存储过程。实现吗?
在Views.py中:
def get_initial_queryset(self):
ret,count = getdbvalues.proc_Common_Report(str(reportType),str(self.request.POST.get('data[isentity]')),str(searchFromDate),str(searchToDate),str(CommID))
return ret
在Procedures.py中:
cur.callproc('USP_RTM_SUMMARY_REPORT',(flag,startdate,enddate,serviceArea,UCCType))
response=cur.fetchall()
cur.nextset()
count=cur.fetchall()
cur.close()
return response,count