-
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.
Fix: Removing condition for bank account in sync data (#179)
* Fix: Removing condition for bank account in sync data * fix line item balanceAccountType check * bug fix * bug fix * Fix: Adding default ccc bank account (#180) * Fix: Adding default ccc bank account * removing bank account from import settings * bug fixed * change name * renamed * change name in JE
- Loading branch information
1 parent
4ed6d99
commit 5e21fca
Showing
9 changed files
with
60 additions
and
5 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
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
24 changes: 24 additions & 0 deletions
24
apps/workspaces/migrations/0005_exportsetting_default_ccc_bank_account_id_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,24 @@ | ||
# Generated by Django 4.1.2 on 2024-12-11 10:37 | ||
|
||
from django.db import migrations | ||
import ms_business_central_api.models.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('workspaces', '0004_importsetting_charts_of_accounts'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='exportsetting', | ||
name='default_CCC_bank_account_id', | ||
field=ms_business_central_api.models.fields.StringNullField(help_text='CCC Bank Account ID', max_length=255, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='exportsetting', | ||
name='default_CCC_bank_account_name', | ||
field=ms_business_central_api.models.fields.StringNullField(help_text='CCC Bank account name', max_length=255, null=True), | ||
), | ||
] |
23 changes: 23 additions & 0 deletions
23
..._rename_default_ccc_bank_account_id_exportsetting_default_ccc_bank_account_id_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,23 @@ | ||
# Generated by Django 4.1.2 on 2024-12-12 17:23 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('workspaces', '0005_exportsetting_default_ccc_bank_account_id_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name='exportsetting', | ||
old_name='default_CCC_bank_account_id', | ||
new_name='default_ccc_bank_account_id', | ||
), | ||
migrations.RenameField( | ||
model_name='exportsetting', | ||
old_name='default_CCC_bank_account_name', | ||
new_name='default_ccc_bank_account_name', | ||
), | ||
] |
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