Changes between Initial Version and Version 4 of Ticket #37057


Ignore:
Timestamp:
Apr 22, 2026, 8:17:09 AM (3 weeks ago)
Author:
Daniel Drews
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #37057 – Description

    initial v4  
    4848# 2. Create a second Device with cash_register_type=None
    4949# while a Master already exists -- BUG
    50 register_b = Device.objects.create(
     50register_b = Device(
    5151    name="Device B", pos_location=loc, cash_register_type=None
    5252)
     53register_b.full_clean()    # raises ValidationError
    5354}}}
    5455
Back to Top