Esempio n. 1
0
	def do_mv(self, line):
		"""
		Sposta i task dall'inventario al todaySheet (rappresenta i task presi in carico)
		"""
		tasksid = line.split(',')
		for taskid in tasksid:
			self._todaySheet = TodaySheet(taskid)
			Tasks.writeTasksInTodaySheet(self._todaySheet.makeRecordToWriteOnDB())
			Tasks.deleteSoftFromTasksInventory(taskid)