示例#1
0
文件: rent.py 项目: weixiyen/Rentfox
 def markUnpaid(self):
     unitId = request.POST['unitId']
     forMonth = request.POST['forMonth']
     forYear = request.POST['forYear']
     
     Transaction.undo_rent(unitId,forMonth,forYear)
     return json.dumps('')