Beispiel #1
0
def createProduct():
    Product(
        name=makeString(),
        price=makePrice(),
        productgroup=random.choice(ProductGroup.objects.all()),
        availability=True,
        position=makeInteger(),
        color=makeColor(),
        note=makeText(),
    ).save()