11 lines
		
	
	
		
			346 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			346 B
		
	
	
	
		
			Python
		
	
	
	
| # Create your tasks here
 | |
| from __future__ import absolute_import, unicode_literals
 | |
| from apps.hrm.models import Employee
 | |
| from apps.utils.task import CustomTask
 | |
| from apps.vm.models import Visit, Vpeople
 | |
| from apps.wf.models import Ticket
 | |
| from celery import shared_task
 | |
| from apps.hrm.services import HrmService
 | |
| from apps.wf.services import WfService
 | |
| 
 |