Skip to content

Commit

Permalink
[16.0][MIG] bank_statement_import_csv
Browse files Browse the repository at this point in the history
  • Loading branch information
abenzbiria committed Jul 5, 2024
1 parent 6f41ed2 commit 69a086b
Show file tree
Hide file tree
Showing 14 changed files with 22 additions and 14 deletions.
1 change: 1 addition & 0 deletions .docker_files/main/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"account_negative_debit_credit",
"account_payment_cancel_group",
"account_show_full_features",
"bank_statement_import_csv",
"invoice_refund_not_earlier",
"old_accounts",
],
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ COPY account_move_unique_reversal /mnt/extra-addons/account_move_unique_reversal
COPY account_negative_debit_credit /mnt/extra-addons/account_negative_debit_credit
COPY account_payment_cancel_group /mnt/extra-addons/account_payment_cancel_group
COPY account_show_full_features /mnt/extra-addons/account_show_full_features
COPY bank_statement_import_csv /mnt/extra-addons/bank_statement_import_csv
COPY invoice_refund_not_earlier /mnt/extra-addons/invoice_refund_not_earlier
COPY old_accounts /mnt/extra-addons/old_accounts

Expand Down
2 changes: 1 addition & 1 deletion bank_statement_import_csv/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from . import models, wizard

Check notice on line 4 in bank_statement_import_csv/__init__.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

bank_statement_import_csv/__init__.py#L4

'.models' imported but unused (F401)
6 changes: 3 additions & 3 deletions bank_statement_import_csv/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

{

Check warning on line 4 in bank_statement_import_csv/__manifest__.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

bank_statement_import_csv/__manifest__.py#L4

Statement seems to have no effect
"name": "Bank Statement Import CSV",
"version": "1.2.2",
"version": "16.0.1.0.0",
"author": "Numigi",
"maintainer": "Numigi",
"website": "https://numigi.com",
"license": "AGPL-3",
"category": "Accounting",
"summary": "Import bank statement import from csv / xlsx files",
"depends": [
"account_statement_import",
"account_statement_import_file",
],
"data": [
"security/ir.model.access.csv",
Expand Down
2 changes: 1 addition & 1 deletion bank_statement_import_csv/error.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from dataclasses import dataclass, field
Expand Down
2 changes: 1 addition & 1 deletion bank_statement_import_csv/loader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

import csv
Expand Down
2 changes: 1 addition & 1 deletion bank_statement_import_csv/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from . import account_journal, bank_statement_import_config

Check notice on line 4 in bank_statement_import_csv/models/__init__.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

bank_statement_import_csv/models/__init__.py#L4

'.account_journal' imported but unused (F401)
2 changes: 1 addition & 1 deletion bank_statement_import_csv/models/account_journal.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from odoo import fields, models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from odoo import fields, models
Expand Down
2 changes: 1 addition & 1 deletion bank_statement_import_csv/wizard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from . import bank_statement_import_wizard, bank_statement_import_wizard_line

Check notice on line 4 in bank_statement_import_csv/wizard/__init__.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

bank_statement_import_csv/wizard/__init__.py#L4

'.bank_statement_import_wizard' imported but unused (F401)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from base64 import b64decode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
</field>
</record>

<record id="account_statement_import.account_statement_import_action" model="ir.actions.act_window">
<record id="account_statement_import_file.account_statement_import_action" model="ir.actions.act_window">
<field name="res_model">bank.statement.import.wizard</field>
<field name="view_id" ref="bank_statement_import_wizard_form"/>
</record>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2022 - Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# Copyright 2022 - Today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from datetime import datetime
Expand Down
8 changes: 7 additions & 1 deletion gitoo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,17 @@
branch: "16.0"
includes:
- account_statement_import
- account_statement_import_online
- account_statement_import_base
- account_statement_import_file
- account_statement_import_online
- account_statement_import_txt_xlsx
- account_statement_import_paypal

- url: https://github.com/OCA/account-reconcile
branch: "16.0"
includes:
- account_statement_base

- url: https://github.com/OCA/account-financial-tools
branch: "16.0"
includes:
Expand Down

0 comments on commit 69a086b

Please sign in to comment.