mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 14:13:21 +00:00
operations added in populate
This commit is contained in:
parent
1457a7bf74
commit
93211d8ada
@ -295,10 +295,17 @@ Cette page vise à documenter la syntaxe *Markdown* utilisée sur le site.
|
||||
ca.save()
|
||||
gj = GeneralJournal(name="A16", start_date=date.today(), club_account=ca)
|
||||
gj.save()
|
||||
credit = AccountingType(code=74, label="Someone gave us money", movement_type='CREDIT')
|
||||
credit = AccountingType(code='74', label="Someone gave us money", movement_type='CREDIT')
|
||||
credit.save()
|
||||
debit = AccountingType(code=607, label="Had to pay a beer", movement_type='DEBIT')
|
||||
debit = AccountingType(code='607', label="Had to pay a beer", movement_type='DEBIT')
|
||||
debit.save()
|
||||
t = AccountingType(code='602', label="Gros test de malade", movement_type='DEBIT')
|
||||
t.save()
|
||||
Operation(journal=gj, date=date.today(), amount=32.3, remark="...", mode="CASH", done=True, accounting_type=t, target_type="USER", target_id=skia.id).save()
|
||||
t = AccountingType(code='60', label="...", movement_type='DEBIT')
|
||||
t.save()
|
||||
Operation(journal=gj, date=date.today(), amount=32.3, remark="...", mode="CASH", done=True, accounting_type=t, target_type="USER", target_id=skia.id).save()
|
||||
Operation(journal=gj, date=date.today(), amount=46.42, remark="An answer to life...", mode="CASH", done=True, accounting_type=t, target_type="USER", target_id=skia.id).save()
|
||||
Operation(journal=gj, date=date.today(), amount=666.42,
|
||||
remark="An answer to life...", mode="CASH", done=True, accounting_type=credit, target_type="USER",
|
||||
target_id=skia.id).save()
|
||||
|
Loading…
Reference in New Issue
Block a user