This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
YC-1149 paiement prolongation (#935)
* YC-1149 prolongation with payment * YC-1149 - Add clearer test * merge develop * lint * lint * fix migration conflict * update html * indent html code * Fix html --------- Co-authored-by: monodo <[email protected]> Co-authored-by: Alexandre Junod <[email protected]>
- Loading branch information
1 parent
1b2b529
commit 99f5bde
Showing
14 changed files
with
464 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...submissions/migrations/0027_historicalpostfinancetransaction_transaction_type_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Generated by Django 4.2.9 on 2024-02-08 10:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"submissions", | ||
"0026_service_fee", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="historicalpostfinancetransaction", | ||
name="transaction_type", | ||
field=models.CharField( | ||
choices=[ | ||
("submission", "Soumission"), | ||
("prolongation", "Prolongation"), | ||
], | ||
default="submission", | ||
max_length=20, | ||
verbose_name="Type de transaction", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="postfinancetransaction", | ||
name="transaction_type", | ||
field=models.CharField( | ||
choices=[ | ||
("submission", "Soumission"), | ||
("prolongation", "Prolongation"), | ||
], | ||
default="submission", | ||
max_length=20, | ||
verbose_name="Type de transaction", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.