Revision ebddd10a
Added by Benjamin Dauvergne over 12 years ago
calebasse/agenda/models.py | ||
---|---|---|
364 | 364 |
participants=self.participants.all() if self.id else '<un-saved>') |
365 | 365 |
|
366 | 366 |
|
367 |
class OldRSID(models.Model): |
|
368 |
event = models.ForeignKey(Event) |
|
369 |
old_rs_id = models.CharField(max_length=8, blank=True, null=True) |
|
370 |
|
|
371 |
|
|
372 | 367 |
class EventWithActManager(managers.EventManager): |
373 | 368 |
def create_patient_appointment(self, creator, title, patient, |
374 | 369 |
doctors=[], act_type=None, service=None, start_datetime=None, end_datetime=None, |
Also available in: Unified diff
agenda: remove unused OldRSID