-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
109e6d5
commit cf34162
Showing
6 changed files
with
95 additions
and
54 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
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
33 changes: 33 additions & 0 deletions
33
.../business_central/migrations/0004_journalentrylineitems_dimension_success_log_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,33 @@ | ||
# Generated by Django 4.1.2 on 2024-11-21 09:04 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('business_central', '0003_journalentrylineitems_dimension_error_log_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='journalentrylineitems', | ||
name='dimension_success_log', | ||
field=models.JSONField(help_text='dimension set success response log', null=True), | ||
), | ||
migrations.AddField( | ||
model_name='purchaseinvoicelineitems', | ||
name='dimension_success_log', | ||
field=models.JSONField(help_text='dimension set success response log', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='journalentrylineitems', | ||
name='dimensions', | ||
field=models.JSONField(default=list, help_text='Business Central dimensions'), | ||
), | ||
migrations.AlterField( | ||
model_name='purchaseinvoicelineitems', | ||
name='dimensions', | ||
field=models.JSONField(default=list, help_text='Business Central dimensions'), | ||
), | ||
] |
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