-
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.
* Create admin subscriptions * Post Integrations (#299) * Post Integrations * Model changes for Direct export (#300) * Model changes for Direct export * versions updated * Export View Direct export (#301) * Export View Direct export * fix * Update expense status in fyle (#302) * Update expense status in fyle * Resolve comments * URL fix * Add tests direct export (#303) * Add tests direct export * Add tests direct export * Add direct export scripts (#304) * Add scripts for direct export * Fix comments * URL fix * Direct export lint fix (#305) * Uncomment for testing * Uncomment for testing * Updated the versions * Updated the versions * fix is_skipped * fix is_skipped * Adding Coverage tests (#307)
- Loading branch information
Showing
45 changed files
with
1,405 additions
and
277 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Generated by Django 3.2.14 on 2024-02-13 04:50 | ||
|
||
import apps.fyle.models | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('workspaces', '0037_workspacegeneralsettings_import_suppliers_as_merchants'), | ||
('fyle', '0017_expense_posted_at'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='expense', | ||
name='accounting_export_summary', | ||
field=models.JSONField(default=dict), | ||
), | ||
migrations.AddField( | ||
model_name='expense', | ||
name='previous_export_state', | ||
field=models.CharField(help_text='Previous export state', max_length=255, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='expense', | ||
name='workspace', | ||
field=models.ForeignKey(help_text='To which workspace this expense belongs to', null=True, on_delete=django.db.models.deletion.PROTECT, to='workspaces.workspace'), | ||
), | ||
migrations.AlterField( | ||
model_name='expensegroupsettings', | ||
name='ccc_expense_state', | ||
field=models.CharField(choices=[('APPROVED', 'APPROVED'), ('PAYMENT_PROCESSING', 'PAYMENT_PROCESSING'), ('PAID', 'PAID')], default=apps.fyle.models.get_default_ccc_expense_state, help_text='state at which the ccc expenses are fetched (PAYMENT_PROCESSING /PAID)', max_length=100, null=True), | ||
), | ||
] |
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.