base_accounting_kit | Odoo Apps Store (2023)

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
  • Ratings
  • Discuss
Report comment

Any abuse of this reporting system will be penalized

If you happen to be working with this addon with camt.053 files you will notice a bug.

by

Steven Uggowitzer

on 3/4/23, 1:34 PM

System will throw error that the field bank_account_id is not part of the bank.statement.linemodel. This is indeed an error in the addon ( still the case as of version14.0.3.13.14 ). It is very easy to fix. Patch given below. Make sure to clear out__pycache__ folder and restart Odoo to apply.

--- base_accounting_kit/models/payment_matching.py.orig2023-03-04 18:19:09.898600459 +0000
+++ base_accounting_kit/models/payment_matching.py2023-03-04 01:48:46.319573664 +0000
@@ -1131,7 +1131,7 @@
raise UserError(_('Operation not allowed. Since your statement line already received a number (%s), you cannot reconcile it entirely with existing journal entries otherwise it would make a gap in the numbering. You should book an entry and make a regular revert of it in case you want to cancel it.')% (self.move_name))

# create the res.partner.bank if needed
- if self.account_number and self.partner_id and not self.bank_account_id:
+ if self.account_number and self.partner_id and not self.partner_bank_id:
# Search bank account without partner to handle the case the res.partner.bank already exists but is set
# on a different partner.
self.partner_bank_id = self._find_or_create_bank_account()


Hi i Face this error when Trying to install this module on odoo 14 CE

by

Omar Almikhlafi

on 11/20/22, 12:31 PM

The operation cannot be completed: another model requires the record being deleted. If possible, archive it instead.Model: Unknown (Unknown), Constraint: account_journal_account_repor_account_report_partner_ledge_fkey

Re: Hi i Face this error when Trying to install this module on odoo 14 CE

by

Cybrosys Technologies

on 11/28/22, 4:07 AM Author

Hi, Do you have any other accounting apps installed in this same database?

error

by

abdlrahman@albaz.sa

on 6/14/22, 6:13 PM

Odoo Server Error

Traceback (most recent call last):

File "/opt/odoo14/odoo/odoo/tools/convert.py", line 677, in _tag_root

f(rec)

File "/opt/odoo14/odoo/odoo/tools/convert.py", line 580, in _tag_record

record = model._load_records([data], self.mode == 'update')

File "/opt/odoo14/odoo/odoo/models.py", line 4220, in _load_records

data['record']._load_records_write(data['values'])

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 1851, in _load_records_write

super(View, self)._load_records_write(values)

File "/opt/odoo14/odoo/odoo/models.py", line 4149, in _load_records_write

self.write(values)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 500, in write

res = super(View, self).write(self._compute_defaults(vals))

File "/opt/odoo14/odoo/odoo/models.py", line 3703, in write

fields[0].determine_inverse(real_recs)

File "/opt/odoo14/odoo/odoo/fields.py", line 1187, in determine_inverse

getattr(records, self.inverse)()

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 300, in _inverse_arch

view.write(data)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 500, in write

res = super(View, self).write(self._compute_defaults(vals))

File "/opt/odoo14/odoo/odoo/models.py", line 3693, in write

real_recs._validate_fields(vals, inverse_fields)

File "/opt/odoo14/odoo/odoo/models.py", line 1266, in _validate_fields

check(self)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 408, in _check_xml

raise ValidationError(_(

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 391, in _check_xml

view.postprocess_and_fields(view_doc, validate=True)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 850, in postprocess_and_fields

arch, name_manager = self._postprocess_view(node, model, validate=validate)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 862, in _postprocess_view

self.postprocess(node, [], editable, name_manager)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 962, in postprocess

self.postprocess(child, current_node_path, node_info['editable'], name_manager)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 962, in postprocess

self.postprocess(child, current_node_path, node_info['editable'], name_manager)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 962, in postprocess

self.postprocess(child, current_node_path, node_info['editable'], name_manager)

[Previous line repeated 1 more time]

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 953, in postprocess

validator(node, name_manager, node_info)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 1089, in _validate_tag_field

self.handle_view_error(msg)

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_ui_view.py", line 673, in handle_view_error

raise ValueError(formatted_message).with_traceback(from_traceback) from from_exception

odoo.exceptions.ValidationError: Error while validating view:

Field "effective_date" does not exist in model "account.payment"

View name: account.payment.form

Error context:

view: ir.ui.view(1540,)

xmlid: view_account_payment_form_inherit

view.model: account.payment

view.parent: ir.ui.view(562,)

file: /opt/odoo14/odoo-custom-addons/account_payment_approval/views/account_payment_view.xml

The above exception was the direct cause of the following exception:

Traceback (most recent call last):

File "/opt/odoo14/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch

result = request.dispatch()

File "/opt/odoo14/odoo/odoo/http.py", line 683, in dispatch

result = self._call_function(**self.params)

File "/opt/odoo14/odoo/odoo/http.py", line 359, in _call_function

return checked_call(self.db, *args, **kwargs)

File "/opt/odoo14/odoo/odoo/service/model.py", line 94, in wrapper

return f(dbname, *args, **kwargs)

File "/opt/odoo14/odoo/odoo/http.py", line 347, in checked_call

result = self.endpoint(*a, **kw)

File "/opt/odoo14/odoo/odoo/http.py", line 912, in __call__

return self.method(*args, **kw)

File "/opt/odoo14/odoo/odoo/http.py", line 531, in response_wrap

response = f(*args, **kw)

i am getting error undefined (empty error message)

by

loay elhaj

on 4/4/22, 4:07 AM

when printing accounting reports (eg. profit and loss) as pdf

Re: i am getting error undefined (empty error message)

by

Cybrosys Technologies

on 4/4/22, 6:19 AM Author

Could you please connect us on odoo@cybrosys.com?

Find the problem with calendars that don't translate

by

gavinguo

on 12/2/21, 8:03 AM

odoo14 community:
base_accounting_kit/static/lib/Chart.bundle.js,
Find calendar translation problems, use the official calendar JS file, do not use your own.

  • odoo/addons/web/static/lib/fullcalendar/core/locales-all.js

  • odoo/addons/web/static/lib/moment/locale/*

  • odoo/addons/web/static/lib/moment/moment.js

can you help to solve this issue

by

Rauf umar

on 10/24/21, 5:53 AM

Could not get content for /web/static/src/scss/asset_styles_company_report.scss defined in bundle 'web.report_assets_common'.
very bad queries

by

Muhammad Awais

on 10/14/21, 2:12 PM

The coder, written very bad sql queries, 0 optimization. it will mess your cpu and db

Good module but always update problems. please some help

by

Stephane Kolijn

on 10/10/21, 11:39 AM

Odoo Server Error
Traceback (most recent call last): File "/odoo/odoo-server/odoo/tools/convert.py", line 677, in _tag_root f(rec) File "/odoo/odoo-server/odoo/tools/convert.py", line 580, in _tag_record record = model._load_records([data], self.mode == 'update') File "/odoo/odoo-server/odoo/models.py", line 4198, in _load_records data['record']._load_records_write(data['values']) File "/odoo/odoo-server/odoo/models.py", line 4135, in _load_records_write self.write(values) File "/odoo/odoo-server/odoo/models.py", line 3666, in write field.write(self, vals[fname]) File "/odoo/odoo-server/odoo/fields.py", line 3040, in write return self.write_batch([(records, value)]) File "/odoo/odoo-server/odoo/fields.py", line 3061, in write_batch return self.write_real(records_commands_list, create) File "/odoo/odoo-server/odoo/fields.py", line 3233, in write_real flush() File "/odoo/odoo-server/odoo/fields.py", line 3193, in flush comodel.browse(to_delete).unlink() File "/odoo/odoo-server/odoo/models.py", line 3424, in unlink self.flush() File "/odoo/odoo-server/odoo/models.py", line 5437, in flush process(self.env[model_name], id_vals) File "/odoo/odoo-server/odoo/models.py", line 5428, in process recs._write(vals) File "/odoo/odoo-server/odoo/models.py", line 3752, in _write cr.execute(query, params + [sub_ids]) File "<decorator-gen-3>", line 2, in execute File "/odoo/odoo-server/odoo/sql_db.py", line 101, in check return f(self, *args, **kwargs) File "/odoo/odoo-server/odoo/sql_db.py", line 298, in execute res = self._obj.execute(query, params)psycopg2.IntegrityError: duplicate key value violates unique constraint "followup_line_days_uniq"DETAIL: Key (followup_id, delay)=(1, 5) already exists.The above exception was the direct cause of the following exception:Traceback (most recent call last): File "/odoo/odoo-server/odoo/addons/base/models/ir_http.py", line 237, in _dispatch result = request.dispatch() File "/odoo/odoo-server/odoo/http.py", line 683, in dispatch result = self._call_function(**self.params) File "/odoo/odoo-server/odoo/http.py", line 359, in _call_function return checked_call(self.db, *args, **kwargs) File "/odoo/odoo-server/odoo/service/model.py", line 94, in wrapper return f(dbname, *args, **kwargs) File "/odoo/odoo-server/odoo/http.py", line 347, in checked_call result = self.endpoint(*a, **kw) File "/odoo/odoo-server/odoo/http.py", line 912, in __call__ return self.method(*args, **kw) File "/odoo/odoo-server/odoo/http.py", line 531, in response_wrap response = f(*args, **kw) File "/odoo/odoo-server/addons/web/controllers/main.py", line 1381, in call_button action = self._call_kw(model, method, args, kwargs) File "/odoo/odoo-server/addons/web/controllers/main.py", line 1369, in _call_kw return call_kw(request.env[model], method, args, kwargs) File "/odoo/odoo-server/odoo/api.py", line 396, in call_kw result = _call_kw_multi(method, model, args, kwargs) File "/odoo/odoo-server/odoo/api.py", line 383, in _call_kw_multi result = method(recs, *args, **kwargs) File "<decorator-gen-77>", line 2, in button_immediate_upgrade File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 73, in check_and_log return method(self, *args, **kwargs) File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 653, in button_immediate_upgrade return self._button_immediate_function(type(self).button_upgrade) File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 592, in _button_immediate_function modules.registry.Registry.new(self._cr.dbname, update_module=True) File "/odoo/odoo-server/odoo/modules/registry.py", line 89, in new odoo.modules.load_modules(registry._db, force_demo, status, update_module) File "/odoo/odoo-server/odoo/modules/loading.py", line 451, in load_modules force, status, report, loaded_modules, update_module, models_to_check) File "/odoo/odoo-server/odoo/modules/loading.py", line 348, in load_marked_modules perform_checks=perform_checks, models_to_check=models_to_check File "/odoo/odoo-server/odoo/modules/loading.py", line 221, in load_module_graph load_data(cr, idref, mode, kind='data', package=package) File "/odoo/odoo-server/odoo/modules/loading.py", line 69, in load_data tools.convert_file(cr, package.name, filename, idref, mode, noupdate, kind) File "/odoo/odoo-server/odoo/tools/convert.py", line 733, in convert_file convert_xml_import(cr, module, fp, idref, mode, noupdate) File "/odoo/odoo-server/odoo/tools/convert.py", line 799, in convert_xml_import obj.parse(doc.getroot()) File "/odoo/odoo-server/odoo/tools/convert.py", line 719, in parse self._tag_root(de) File "/odoo/odoo-server/odoo/tools/convert.py", line 677, in _tag_root f(rec) File "/odoo/odoo-server/odoo/tools/convert.py", line 685, in _tag_root )) from eExceptionThe above exception was the direct cause of the following exception:Traceback (most recent call last): File "/odoo/odoo-server/odoo/http.py", line 639, in _handle_exception return super(JsonRequest, self)._handle_exception(exception) File "/odoo/odoo-server/odoo/http.py", line 315, in _handle_exception raise exception.with_traceback(None) from new_causeodoo.tools.convert.ParseError: while parsing /odoo/odoo-server/addons/base_accounting_kit/data/followup_levels.xml:8, near<record model="account.followup" id="followup"> <field name="followup_line_ids" eval="[(6,0,[ref('followup_line_id')])]"/> </record>
Thanks for nice module but found a problem in dashboard.

by

soikat.xyz@gmail.com

on 10/8/21, 6:46 AM

I have 3 bank accounts and a cash account. But on accounting dashboard, underBANK AND CASH BALANCE there showsonly one account. Rest of the account not shows here. Is there any solution?

after import data

by

sumato

on 10/2/21, 6:42 AM

could not write to file "base/pgsql_tmp/pgsql_tmp912766.7": No space left on device

In the invoice screen I have more than 7,000 invoices and I will receive this error when the page opens after about a few minutes of waiting

What should I do to solve the problem and fix these cases?

psql (PostgreSQL) 12.8

Ubuntu 20.04 focal

odoo 14

run > df -h
  • Filesystem Size Used Avail Use% Mounted on
    udev 1.9G 0 1.9G 0% /dev
    tmpfs 394M 5.2M 389M 2% /run
    /dev/vda2 30G 20G 8.0G 72% /
    tmpfs 2.0G 800K 2.0G 1% /dev/shm
    tmpfs 5.0M 0 5.0M 0% /run/lock
    tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
    tmpfs 394M 4.0K 394M 1% /run/user/0

    Use theCREATE TABLESAPCE ??
    Increase server memory??
    Disk: 21G / 32G (68%)
    https://github.com/odoo/odoo/issues/43380

ERROR Dashboard

by

‪HAMAD AL-MaRRi‬‏

on 10/1/21, 5:29 PM

odoo 14 EC UBUNTU 18
Fresh install
Without demo data
______
Invoicing (account) Odoo 14 Full Accounting Kit Odoo 14 Budget Management

_______
Error Message
Traceback: TypeError: Cannot read properties of undefined (reading 'language') at Class.format_currency (https://demo.####.com/web/content/118-f79bf19/web.assets_backend.js:6130:64)
at https://demo.####.com/web/content/118-f79bf19/web.assets_backend.js:6121:198

by

Medab VALL

on 9/27/21, 5:26 AM

Error While importing the module

by

Zaid Odeh

on 9/19/21, 7:54 AM

Error while importing module 'base_accounting_kit'. Module loading base_accounting_kit failed: file /tmp/tmpu0ebz23e/base_accounting_kit/security/ir.model.access.csv could not be processed: No matching record found for external id 'model_account_financial_report' in field 'Model'No matching record found for external id 'model_account_financial_report' in field 'Model'No matching record found for external id 'model_account_recurring_payments' in field 'Model'No matching record found for external id 'model_account_followup' in field 'Model'No matching record found for external id 'model_account_followup' in field 'Model'No matching record found for external id 'model_followup_line' in field 'Model'No matching record found for external id 'model_followup_line' in field 'Model'No matching record found for external id 'model_account_asset_category' in field 'Model'No matching record found for external id 'model_asset_modify' in field 'Model'No matching record found for external id 'model_asset_modify' in field 'Model'No matching record found for external id 'model_account_asset_asset' in field 'Model'No matching record found for external id 'model_account_asset_category' in field 'Model'No matching record found for external id 'model_account_asset_asset' in field 'Model'No matching record found for external id 'model_account_asset_depreciation_line' in field 'Model'No matching record found for external id 'model_account_asset_depreciation_line' in field 'Model'No matching record found for external id 'model_asset_asset_report' in field 'Model'No matching record found for external id 'model_asset_asset_report' in field 'Model'No matching record found for external id 'model_account_asset_category' in field 'Model'No matching record found for external id 'model_account_asset_asset' in field 'Model'

Re: Error While importing the module

by

Cybrosys Technologies

on 9/20/21, 11:35 PM Author

Hi, Please add the addon into your addons path and try to install. Importing wont work with this addon.

There is an error when installing

by

Ahmad Ali

on 9/3/21, 4:51 PM

RPC_ERROR

Odoo Server Error

Traceback (most recent call last):

File "/home/ahmadalibaloch/odoo/odoo/tools/convert.py", line 680, in _tag_root

f(rec)

File "/home/ahmadalibaloch/odoo/odoo/tools/convert.py", line 583, in _tag_record

record = model._load_records([data], self.mode == 'update')

File "/home/ahmadalibaloch/odoo/odoo/models.py", line 4395, in _load_records

records = self._load_records_create([data['values'] for data in to_create])

File "/home/ahmadalibaloch/odoo/odoo/models.py", line 4324, in _load_records_create

return self.create(values)

File "<decorator-gen-178>", line 2, in create

File "/home/ahmadalibaloch/odoo/odoo/api.py", line 410, in _model_create_multi

return create(self, arg)

File "/home/ahmadalibaloch/odoo/addons/account/models/account_payment_method.py", line 28, in create

if information.get('mode') == 'multi':

AttributeError: 'NoneType' object has no attribute 'get'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):

File "/home/ahmadalibaloch/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch

result = request.dispatch()

File "/home/ahmadalibaloch/odoo/odoo/http.py", line 689, in dispatch

result = self._call_function(**self.params)

....

Re: There is an error when installing

by

Cybrosys Technologies

on 9/7/21, 12:08 AM Author

Hello Ahmed, We checked the issue. We couldnt find the fileaddons/account/models/account_payment_method.py in odoo14. Please check whether you are using the correct version or not.

by

Ouassila

on 9/2/21, 9:59 AM

by

Luke Benjamin

on 8/19/21, 4:08 AM

Odoo 14 inside Docker container:

by

Praveen

on 7/7/21, 12:20 PM

See full logs
https://pastebin.com/QP6xTaLH
Thank

by

nejerludovid@gmail.com

on 6/25/21, 12:38 PM

Server Error:

by

NetbeamERP Technology

on 6/2/21, 12:19 PM

Hi,

Please help for this issue.

File "/opt/odoo/addons/base_accounting_kit/models/payment_matching.py", line 1065, in process_reconciliation

if aml_rec.journal_id.post_at == "bank_rec" and aml_rec.payment_id and aml_rec.move_id.state == "draft":

Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):

File "/opt/odoo/odoo/http.py", line 639, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "/opt/odoo/odoo/http.py", line 315, in _handle_exception

raise exception.with_traceback(None) from new_cause

AttributeError: 'account.journal' object has no attribute 'post_at'

Error Reconcile Bank Statement

by

Pietter Mulyono

on 5/26/21, 5:10 AM

User error: The entry BNK... (id 4) is already posted.

Bank statement should be posted so that we can reconcile.

Module 14.0.3.10.8

Odoo 14.0-20210430 (Community Edition)

When we create manual payment for the invoice, invoice payment status = PAID.

Compared to Odoo Enterprise trial, invoice payment status = IN PAYMENT. And the status changedto PAID after bank statement reconciliation

Re: Error Reconcile Bank Statement

by

Cybrosys Technologies

on 5/27/21, 8:51 PM Author

We received your email also, our team will connect you to fix this

by

suyatmini

on 4/28/21, 4:15 AM

ive got this error :

Traceback:Error: QWeb2: Template 'Invoicedashboard' not foundexception@http://localhost:8070/web/content/97-416b45f/web.assets_common.js:4384:7_render@http://localhost:8070/web/content/97-416b45f/web.assets_common.js:4429:103render@http://localhost:8070/web/content/97-416b45f/web.assets_common.js:4425:151renderElement@http://localhost:8070/web/content/98-878a769/web.assets_backend.js:480:452OdooClass.extend/</prototype[name]</<@http://localhost:8070/web/content/97-416b45f/web.assets_common.js:4622:488renderElement@http://localhost:8070/web/content/98-878a769/web.assets_backend.js:6177:1510OdooClass.extend/</prototype[name]</<@http://localhost:8070/web/content/97-416b45f/web.assets_common.js:4622:488_widgetRenderAndInsert/<@http://localhost:8070/web/content/97-416b45f/web.assets_common.js:4957:6
Re:

by

Cybrosys Technologies

on 4/29/21, 1:34 AM Author

Please restart your Odoo service before installing module.

(Video) How To Upload Module To Odoo Apps Store || Upload Paid Module to Odoo Apps Store
Issue with update

by

Laurent Tourneux

on 4/26/21, 11:24 AM

Updating from v 14.0.2.6.5 to 14.0.2.7.6 does not work. System can not find information in DB tables.

Rollback to 14.0.2.6.5 solved the issue. Is it possible to overwrite a version with a new one? Or should we deinstall then reinstall?

2x Dashboard in the top menu

by

Luk Vandenbulcke

on 3/12/21, 3:09 PM

2x Dashboard in the top menu

Using odoo in dutch.

Re: 2x Dashboard in the top menu

by

Cybrosys Technologies

on 6/3/21, 9:54 AM Author

We updated the module with fixes.Please get the latest version

by

abdouli lidar

on 2/3/21, 9:41 AM

Dear Cybrosys,

Traceback (most recent call last): File "D:\Odoo14\server\odoo\http.py", line 639, in _handle_exception return super(JsonRequest, self)._handle_exception(exception) File "D:\Odoo14\server\odoo\http.py", line 315, in _handle_exception raise exception.with_traceback(None) from new_causeAttributeError: type object 'account.journal' has no attribute 'action_checks_to_print'
Re:

by

Cybrosys Technologies

on 3/25/21, 6:47 AM Author

Sorry,

We couldn't reproduce this error.

Missing Record

by

Doğan Üstündağ

on 2/1/21, 11:51 AM

I am trying to uninstall this addon but i get the following error and fail to uninstall?

"Missing Record

Record does not exist or has been deleted.(Record: ir.model.fields(28587,), User: 1)"

Any solution

Thanks


Re: Missing Record

by

Cybrosys Technologies

on 2/8/21, 7:24 AM Author

Can you please send an email to odoo@cybrosys.com

by

veronicagiani4@gmail.com

on 1/31/21, 6:25 AM

as possible is modulated in French included

Re:

by

Cybrosys Technologies

on 2/24/21, 1:31 PM Author

Translation added.

Please let us know if there is any wrong terms used.

Few errors in module

by

Kestutis Urbonas

on 1/28/21, 6:14 AM

Dear Cybrosys,

Thanks for the module. This is few comments about errors, which i found.

1. Bank Manual reconcilation does not work properly. It does not take submitted(mandatory) account number, but sends it to default payments account.

2. Bank book and Cash book reports selects only unused accounts and does not give to enter correct cash account, so reports are empty.

Re: Few errors in module

by

Cybrosys Technologies

on 2/25/21, 8:12 AM Author

Hello,

We have made some changes in code to resolve this issue.

Still few warnings....

by

alex71m

on 1/4/21, 3:30 PM

still getting following errors:

WARNING productive_v14 odoo.modules.loading: The model asset.modify has no access rules, consider adding one. E.g. access_asset_modify,access_asset_modify,model_asset_modify,base.group_user,1,0,0,0

WARNING xxxx odoo.fields: Field account.move.asset_depreciation_ids: unknown parameter 'ondelete', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

WARNING xxxx odoo.fields: Field account.asset.asset.value_residual: unknown parameter 'method', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

WARNING xxxx odoo.fields: Field account.asset.depreciation.line.move_check: unknown parameter 'track_visibility', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

WARNING xxxx odoo.fields: Field account.asset.depreciation.line.move_posted_check: unknown parameter 'track_visibility', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

Re: Still few warnings....

by

Cybrosys Technologies

on 1/5/21, 3:27 AM Author

Cleared, Thanks

Reconcile Option for Accounting

by

binu

on 11/11/20, 11:21 AM

Hi
We would like to know if you have a plan to add Journal Reconciliation ?

Look out when deploying this addon along with OCA based account reconciliation addons

by

Steven Uggowitzer

on 3/10/23, 5:31 AM

At time of writing you can run into problemsif you install both this addon and theOCA account-reconcile/account_reconciliation_widget. Issue is documented herehttps://github.com/CybroOdoo/CybroAddons/issues/245

by

Omar Almikhlafi

on 11/28/22, 6:24 AM

I am trying to install this app on clean copy of odoo 13 with standard accounting ,sales,purchasing,inventory,expenses app.

Re:

by

Cybrosys Technologies

on 11/28/22, 11:53 PM Author

Make sure you are using the correct version.

by

abdelrahman hamdy

on 8/6/22, 6:00 PM

The dashboard takes a long time to load like few minutes and freeze the system

reconciliation_widget (need to show label to define the line )

by

ali.aa.elnagar@gmail.com

on 2/27/22, 3:13 AM

the reconciliation_widget show the line transaction number but i need to show the label to define the the transaction
odoo v 14

thank you

Re: reconciliation_widget (need to show label to define the line )

by

Cybrosys Technologies

on 4/5/22, 4:30 AM Author

We will check and do the needful

Dashboard 2 error

by

ali.aa.elnagar@gmail.com

on 12/26/21, 3:59 PM

1- the dashboard give all vendor bill even they fully paid and receivedUNRECONCILED ITEMS

2-the dash board show just one journal in

BANK AND CASH BALANCE

box

please fix this error

thank you

Error when entering to module dashboard

by

tovarich_rmo@hotmail.com

on 12/23/21, 11:45 AM

Hi,

The module works fine but there is an error that always promps out when entering to the Dashboard. If I cloes it then I can continue working but I dont know hoaw can I fix it. Any idea?

TypeError: Cannot read properties of undefined (reading 'language')

at Class.format_currency (https://iluminacion.tienda/web/content/43817-2b8598d/web.assets_backend.js:6624:64)

at https://iluminacion.tienda/web/content/43817-2b8598d/web.assets_backend.js:6610:517

Please press these three keys, Ctrl + Alt + L, to beautify the code

by

gavinguo

on 12/2/21, 3:14 AM

odoo14 community:
in pycharm, please these three keys:
Ctrl + Alt + L,Beautify the code, Current code is not standard, there are JS file calendar, it is best to use the official calendar,the date of the report can be translated into the Other languages.

it is recommended to use the official calendar.

by

gavinguo

on 11/29/21, 10:00 PM

This is a great module, it is recommended to use the official calendar, otherwise it cannot be translated into non-English languages, and you cannot use non-English country date formats such as YYY-MM-DD.

it is recommended to use the official calendar

by

gavinguo

on 11/29/21, 10:52 AM

This is a great module, it is recommended to use the official calendar, otherwise it cannot be translated into non-English languages, and you cannot use non-English country date formats such as YYY-MM-DD.

Re: it is recommended to use the official calendar

by

Cybrosys Technologies

on 11/30/21, 12:36 AM Author

Hello, We are working on the issue. We will update soon

can we import csv file for oayment registration?

by

khloewong@enicorn.co

on 11/12/21, 3:10 AM

I'm using odoo14 community version and tried to import csv file for bank reconciliation which I could not find the button. May I know any way to import CSV record?

by

sumato

on 10/12/21, 2:41 AM

ERROR: could not write to file "base/pgsql_tmp/pgsql_tmp80797.8": No space left on device

Yes, I even tried local and upgraded memoryBut the problem happens whenThe dashboard of this module query displays graphs and reports, not by creating a view in the database

My computer hardware:mem:16cpu: Intel® Core™ i7-10700K os : Ubuntu 20.04.2More than 10,000 documents are approved and reporting time is very slow.

Re:

by

Cybrosys Technologies

on 10/12/21, 3:21 AM Author

Ok, Thanks for sharing details.

We will check.

by

Stephane Kolijn

on 10/10/21, 11:38 AM

Sorry but your update to the latest version just doesn't work. I already installed your customer follow up
tto the latest version but to no avail. Please help

Odoo Server Error

Traceback (most recent call last): File "/odoo/odoo-server/odoo/tools/convert.py", line 677, in _tag_root f(rec) File "/odoo/odoo-server/odoo/tools/convert.py", line 580, in _tag_record record = model._load_records([data], self.mode == 'update') File "/odoo/odoo-server/odoo/models.py", line 4198, in _load_records data['record']._load_records_write(data['values']) File "/odoo/odoo-server/odoo/models.py", line 4135, in _load_records_write self.write(values) File "/odoo/odoo-server/odoo/models.py", line 3666, in write field.write(self, vals[fname]) File "/odoo/odoo-server/odoo/fields.py", line 3040, in write return self.write_batch([(records, value)]) File "/odoo/odoo-server/odoo/fields.py", line 3061, in write_batch return self.write_real(records_commands_list, create) File "/odoo/odoo-server/odoo/fields.py", line 3233, in write_real flush() File "/odoo/odoo-server/odoo/fields.py", line 3193, in flush comodel.browse(to_delete).unlink() File "/odoo/odoo-server/odoo/models.py", line 3424, in unlink self.flush() File "/odoo/odoo-server/odoo/models.py", line 5437, in flush process(self.env[model_name], id_vals) File "/odoo/odoo-server/odoo/models.py", line 5428, in process recs._write(vals) File "/odoo/odoo-server/odoo/models.py", line 3752, in _write cr.execute(query, params + [sub_ids]) File "<decorator-gen-3>", line 2, in execute File "/odoo/odoo-server/odoo/sql_db.py", line 101, in check return f(self, *args, **kwargs) File "/odoo/odoo-server/odoo/sql_db.py", line 298, in execute res = self._obj.execute(query, params)psycopg2.IntegrityError: duplicate key value violates unique constraint "followup_line_days_uniq"DETAIL: Key (followup_id, delay)=(1, 5) already exists.The above exception was the direct cause of the following exception:Traceback (most recent call last): File "/odoo/odoo-server/odoo/addons/base/models/ir_http.py", line 237, in _dispatch result = request.dispatch() File "/odoo/odoo-server/odoo/http.py", line 683, in dispatch result = self._call_function(**self.params) File "/odoo/odoo-server/odoo/http.py", line 359, in _call_function return checked_call(self.db, *args, **kwargs) File "/odoo/odoo-server/odoo/service/model.py", line 94, in wrapper return f(dbname, *args, **kwargs) File "/odoo/odoo-server/odoo/http.py", line 347, in checked_call result = self.endpoint(*a, **kw) File "/odoo/odoo-server/odoo/http.py", line 912, in __call__ return self.method(*args, **kw) File "/odoo/odoo-server/odoo/http.py", line 531, in response_wrap response = f(*args, **kw) File "/odoo/odoo-server/addons/web/controllers/main.py", line 1381, in call_button action = self._call_kw(model, method, args, kwargs) File "/odoo/odoo-server/addons/web/controllers/main.py", line 1369, in _call_kw return call_kw(request.env[model], method, args, kwargs) File "/odoo/odoo-server/odoo/api.py", line 396, in call_kw result = _call_kw_multi(method, model, args, kwargs) File "/odoo/odoo-server/odoo/api.py", line 383, in _call_kw_multi result = method(recs, *args, **kwargs) File "<decorator-gen-77>", line 2, in button_immediate_upgrade File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 73, in check_and_log return method(self, *args, **kwargs) File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 653, in button_immediate_upgrade return self._button_immediate_function(type(self).button_upgrade) File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 592, in _button_immediate_function modules.registry.Registry.new(self._cr.dbname, update_module=True) File "/odoo/odoo-server/odoo/modules/registry.py", line 89, in new odoo.modules.load_modules(registry._db, force_demo, status, update_module) File "/odoo/odoo-server/odoo/modules/loading.py", line 451, in load_modules force, status, report, loaded_modules, update_module, models_to_check) File "/odoo/odoo-server/odoo/modules/loading.py", line 348, in load_marked_modules perform_checks=perform_checks, models_to_check=models_to_check File "/odoo/odoo-server/odoo/modules/loading.py", line 221, in load_module_graph load_data(cr, idref, mode, kind='data', package=package) File "/odoo/odoo-server/odoo/modules/loading.py", line 69, in load_data tools.convert_file(cr, package.name, filename, idref, mode, noupdate, kind) File "/odoo/odoo-server/odoo/tools/convert.py", line 733, in convert_file convert_xml_import(cr, module, fp, idref, mode, noupdate) File "/odoo/odoo-server/odoo/tools/convert.py", line 799, in convert_xml_import obj.parse(doc.getroot()) File "/odoo/odoo-server/odoo/tools/convert.py", line 719, in parse self._tag_root(de) File "/odoo/odoo-server/odoo/tools/convert.py", line 677, in _tag_root f(rec) File "/odoo/odoo-server/odoo/tools/convert.py", line 685, in _tag_root )) from eExceptionThe above exception was the direct cause of the following exception:Traceback (most recent call last): File "/odoo/odoo-server/odoo/http.py", line 639, in _handle_exception return super(JsonRequest, self)._handle_exception(exception) File "/odoo/odoo-server/odoo/http.py", line 315, in _handle_exception raise exception.with_traceback(None) from new_causeodoo.tools.convert.ParseError: while parsing /odoo/odoo-server/addons/base_accounting_kit/data/followup_levels.xml:8, near<record model="account.followup" id="followup"> <field name="followup_line_ids" eval="[(6,0,[ref('followup_line_id')])]"/> </record>
I have a language problem

by

mohip mukhtar

on 10/9/21, 6:16 AM

useOdoo 14 Full Accounting Kit, I use Arabic language, when I switch language direction, I lose dashboard layout.

bad query

by

sumato

on 10/2/21, 8:40 AM

2021-10-02 12:29:17,749 80773 ERROR xxxxx odoo.sql_db: bad query: selectres_partner.nameas partner, res_partner.commercial_partner_id as res,
account_move.commercial_partner_id as parent, sum(account_move.amount_total) as amount
from account_move, account_move_line, res_partner, account_account where
account_move.partner_id=res_partner.idAND account_move.move_type = 'out_invoice'
AND payment_state = 'not_paid'
AND account_move.state in ('posted', 'draft')
AND account_move.company_id in (1, 0)
AND account_account.internal_type = 'payable'
AND account_move.commercial_partner_id=res_partner.commercial_partner_id
group by parent,partner,res
order by amount desc

ERROR: could not write to file "base/pgsql_tmp/pgsql_tmp80797.8": No space left on device

base_accounting_kit/models/account_dashboard.py -> get_overdues -> line 467

bad query

used in :

/base_accounting_kit/static/src/js/account_dashboard.js

line 1431 rpc to account.move func -> get_overdues

Re: bad query

by

Cybrosys Technologies

on 10/12/21, 1:49 AM Author

ERROR: could not write to file "base/pgsql_tmp/pgsql_tmp80797.8": No space left on device

Did you notice this part?

Please check, If it is not the problem, let us know

Accounting Dashboard looses color design and breaks ver14

by

Suresh Theyyath

on 9/29/21, 12:06 AM

Hi.. thanks for wonderful dashboard for Accounting

, After few installation of the maodule, I have noticed the dashboard style breaks in normal mode, but it shows perfectly ok in developer mode with assets, Could you pls fix this issue.

error on Dashboard

by

ggeorgiev

on 9/22/21, 2:08 AM

We get often the below front-end user error when loading the dashboard:

Traceback:Error: currency is undefinedformat_currency@https://furisto.com/base_accounting_kit/static/src/js/account_dashboard.js:126:30renderElement/</<@https://furisto.com/base_accounting_kit/static/src/js/account_dashboard.js:120:132
Fiscal year

by

BAH ABDOURAHAMANE SANK

on 7/28/21, 11:37 AM

Interesting module!!

But there is no fiscal year configuration

Oups

by

Alex Sirros

on 7/25/21, 1:24 PM

Please disregard, it was my mistake it is now working very well!! thank you

Re: Oups

by

Cybrosys Technologies

on 10/12/21, 1:50 AM Author

Thank you for letting us know

Great App but i have a reconciliation issue

by

Alex Sirros

on 7/25/21, 1:20 PM

Hello, First off thank you for such a great App!! however when i try to reconcile the customer payment against the Bank Statement the amount remains in the outstanding receipts account, and the invoice shows Paid right away as opposed to In Payment as in Enterprise.

I am unable to reconcile the payment against the Bank statement this way as the Balance sheet is always off. the only way I can is to reconcile the invoice directly against the statement, and not register a payment. (which is very impractical)

i updated to the latest version

any ideas or suggestions?

by

Kestutis Urbonas

on 7/19/21, 7:30 AM

updated to 14.0.3.11.11 . Reconciling items does not give "Already posted" error any more. Thanks alot.
But Reconciling modules buttons not working as before. Can you fix it ?

by

Abdulla Ahmed

on 7/16/21, 3:12 PM

Just tried with everything new it working now inVersion 14.0.3.11.11, thank you very much

(Video) Odoo Field Service - The multi-tool of the Odoo apps!
Re:

by

Cybrosys Technologies

on 7/18/21, 12:50 PM Author

Thanks for informing

by

Abdulla Ahmed

on 7/16/21, 1:50 PM

Just post statement and try to reconcile with any payment, for me I have blank DB I just paid invoice, went to statement created one entry in the statement and post it. go back in the overview page shows the reconcile button and chooses the entry and hit the reconcile and show the error already posted

The plugin from this repository works perfectly but will have conflict with your plugin and will show two buttons.

https://github.com/OCA/account-reconcile/tree/14.0/account_reconciliation_widget

by

Kestutis Urbonas

on 7/14/21, 5:56 AM

Reconcile not working at all.

The entry BNK1/2021/06/0010 (id 2996) is already posted.

Reconcile modules button does not work also.

by

Zakaria ELALAMI

on 7/11/21, 11:18 AM

still same error on recenciliation even with the latest version14.0.3.11.11

"The entry BNK1/2020/02/0047 (id 4693) is already posted."

i hope you fixe it soon, thanks

Re:

by

Cybrosys Technologies

on 7/12/21, 9:50 AM Author

Hi, Sorry to inform you that we couldn't reproduce the error. Can you send an email to odoo@cybrosys.com so that we can assign someone to check your case.

by

Abdulla Ahmed

on 7/2/21, 2:35 PM

Still after updatingreconcile not working, getting

The entry BNK1/2021/06/0014 (id 41) is already posted.

Re:

by

Cybrosys Technologies

on 7/7/21, 11:39 PM Author

Can you try the latest version14.0.3.11.11?

Slow dashboard

by

Wael Marzouk

on 6/16/21, 4:18 AM

Dear Cybrosys,

Using the module is helping a lot but after having many transactions, loading the dashboard became so slow. I Dashboard numbers are displayed in 1 second but it stops the system and display the loading icon for more than 25 seconds without anything new on the dashboard.

Thanks

Reconcile Error

by

ali.aa.elnagar@gmail.com

on 6/12/21, 8:51 PM

hello sir ,

This error appears when i try to make reconcile

User error

The entry csh1/2021/06/0004 (id9) is already posted

i try the last two version

and now on last version 14.0.3.11.9

please fix this error

thank you

Re: Reconcile Error

by

Cybrosys Technologies

on 6/27/21, 10:35 PM Author

We have updated the module with the fix. Please get a latest version

by

Abdulla Ahmed

on 6/12/21, 2:45 PM

When try to reconcile items we getting the below message

The entry BNK1/2021/06/0014 (id 41) is already posted.

What's the process to reconcile the payments?

Re:

by

Cybrosys Technologies

on 6/27/21, 10:36 PM Author

We have updated the module with the fix. Please get a latest version

Please help me on the Update Error below

by

Tadelo Ferede

on 6/1/21, 3:00 AM

Error:

Odoo Server Error

Traceback (most recent call last):

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\base\models\ir_http.py", line 237, in _dispatch

result = request.dispatch()

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 683, in dispatch

result = self._call_function(**self.params)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 359, in _call_function

return checked_call(self.db, *args, **kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\service\model.py", line 94, in wrapper

return f(dbname, *args, **kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 347, in checked_call

result = self.endpoint(*a, **kw)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 912, in __call__

return self.method(*args, **kw)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 531, in response_wrap

response = f(*args, **kw)

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\web\controllers\main.py", line 1381, in call_button

action = self._call_kw(model, method, args, kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\web\controllers\main.py", line 1369, in _call_kw

return call_kw(request.env[model], method, args, kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\api.py", line 396, in call_kw

result = _call_kw_multi(method, model, args, kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\api.py", line 383, in _call_kw_multi

result = method(recs, *args, **kwargs)

File "<decorator-gen-77>", line 2, in button_immediate_upgrade

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\base\models\ir_module.py", line 73, in check_and_log

return method(self, *args, **kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\base\models\ir_module.py", line 653, in button_immediate_upgrade

return self._button_immediate_function(type(self).button_upgrade)

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\base\models\ir_module.py", line 592, in _button_immediate_function

modules.registry.Registry.new(self._cr.dbname, update_module=True)

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\registry.py", line 89, in new

odoo.modules.load_modules(registry._db, force_demo, status, update_module)

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\loading.py", line 451, in load_modules

force, status, report, loaded_modules, update_module, models_to_check)

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\loading.py", line 348, in load_marked_modules

perform_checks=perform_checks, models_to_check=models_to_check

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\loading.py", line 221, in load_module_graph

load_data(cr, idref, mode, kind='data', package=package)

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\loading.py", line 69, in load_data

tools.convert_file(cr, package.name, filename, idref, mode, noupdate, kind)

File "C:\Program Files (x86)\Odoo 14\server\odoo\tools\convert.py", line 729, in convert_file

convert_csv_import(cr, module, pathname, fp.read(), idref, mode, noupdate)

File "C:\Program Files (x86)\Odoo 14\server\odoo\tools\convert.py", line 775, in convert_csv_import

raise Exception(_('Module loading %s failed: file %s could not be processed:\n %s') % (module, fname, warning_msg))

Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 639, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 315, in _handle_exception

raise exception.with_traceback(None) from new_cause

Exception: Module loading base_accounting_kit failed: file base_accounting_kit\security/ir.model.access.csv could not be processed:

No matching record found for external id 'model_multiple_invoice' in field 'Model'

No matching record found for external id 'model_multiple_invoice_layout' in field 'Model'

Missing required value for the field 'Model' (model_id)

Missing required value for the field 'Model' (model_id)

Re: Please help me on the Update Error below

by

Cybrosys Technologies

on 6/3/21, 9:55 AM Author

Please restart your Odoo service

error when installing

by

ABDOU

on 5/31/21, 10:12 AM

File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 799, in convert_xml_import
obj.parse(doc.getroot())
File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 719, in parse
self._tag_root(de)
File "/usr/lib/python3/dist-packages/odoo/tools/convert.py", line 681, in _tag_root
raise ParseError('while parsing %s:%s, near\n%s' % (
Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/odoo/http.py", line 639, in _handle_exception
return super(JsonRequest, self)._handle_exception(exception)
File "/usr/lib/python3/dist-packages/odoo/http.py", line 315, in _handle_exception
raise exception.with_traceback(None) from new_cause
odoo.tools.convert.ParseError: while parsing /usr/lib/python3/dist-packages/odoo/addons/base_accounting_kit/wizard/trial_balance.xml:4, near
<record id="account_report_balance_view" model="ir.ui.view">
<field name="name">Trial Balance</field>
<field name="model">account.balance.report</field>
<field name="inherit_id" ref="account.account_common_report_view"/>
<field name="arch" type="xml">
<data>
<field name="journal_ids" position="replace"/>
<xpath expr="//field[@name='target_move']" position="after">
<field name="display_account" widget="radio"/>
<newline/>
</xpath>
</data>
</field>
</record>

Re: error when installing

by

Cybrosys Technologies

on 6/3/21, 9:57 AM Author

Hello, We tried to reproduce the error, But couldn't. It will be help full if you can send us an email to odo@cybrosys.com. Our team will look into it

Error While reconciling the bank statement with vendor invoice payment

by

NetbeamERP Technology

on 5/27/21, 1:07 PM

Error:

Odoo Server Error

Traceback (most recent call last):

File "/opt/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch

result = request.dispatch()

File "/opt/odoo/odoo/http.py", line 683, in dispatch

result = self._call_function(**self.params)

File "/opt/odoo/odoo/http.py", line 359, in _call_function

return checked_call(self.db, *args, **kwargs)

File "/opt/odoo/odoo/service/model.py", line 94, in wrapper

return f(dbname, *args, **kwargs)

File "/opt/odoo/odoo/http.py", line 347, in checked_call

result = self.endpoint(*a, **kw)

File "/opt/odoo/odoo/http.py", line 912, in __call__

return self.method(*args, **kw)

File "/opt/odoo/odoo/http.py", line 531, in response_wrap

response = f(*args, **kw)

File "/opt/odoo/addons/web/controllers/main.py", line 1389, in call_kw

return self._call_kw(model, method, args, kwargs)

File "/opt/odoo/addons/web/controllers/main.py", line 1381, in _call_kw

return call_kw(request.env[model], method, args, kwargs)

File "/opt/odoo/odoo/api.py", line 392, in call_kw

result = _call_kw_model(method, model, args, kwargs)

File "/opt/odoo/odoo/api.py", line 365, in _call_kw_model

result = method(recs, *args, **kwargs)

File "/opt/odoo/addons/base_accounting_kit/models/payment_matching.py", line 48, in process_bank_statement_line

moves = st_line.with_context(ctx).process_reconciliation(

File "/opt/odoo/addons/base_accounting_kit/models/payment_matching.py", line 1065, in process_reconciliation

if aml_rec.journal_id.post_at == "bank_rec" and aml_rec.payment_id and aml_rec.move_id.state == "draft":

Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):

File "/opt/odoo/odoo/http.py", line 639, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "/opt/odoo/odoo/http.py", line 315, in _handle_exception

raise exception.with_traceback(None) from new_cause

AttributeError: 'account.journal' object has no attribute 'post_at'

by

NetbeamERP Technology

on 5/27/21, 1:05 PM

Getting error when reconciling the bank statement:

Error:

Odoo Server Error

Traceback (most recent call last):

File "/opt/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch

result = request.dispatch()

File "/opt/odoo/odoo/http.py", line 683, in dispatch

result = self._call_function(**self.params)

File "/opt/odoo/odoo/http.py", line 359, in _call_function

return checked_call(self.db, *args, **kwargs)

File "/opt/odoo/odoo/service/model.py", line 94, in wrapper

return f(dbname, *args, **kwargs)

File "/opt/odoo/odoo/http.py", line 347, in checked_call

result = self.endpoint(*a, **kw)

File "/opt/odoo/odoo/http.py", line 912, in __call__

return self.method(*args, **kw)

File "/opt/odoo/odoo/http.py", line 531, in response_wrap

response = f(*args, **kw)

File "/opt/odoo/addons/web/controllers/main.py", line 1389, in call_kw

return self._call_kw(model, method, args, kwargs)

File "/opt/odoo/addons/web/controllers/main.py", line 1381, in _call_kw

return call_kw(request.env[model], method, args, kwargs)

File "/opt/odoo/odoo/api.py", line 392, in call_kw

result = _call_kw_model(method, model, args, kwargs)

File "/opt/odoo/odoo/api.py", line 365, in _call_kw_model

result = method(recs, *args, **kwargs)

File "/opt/odoo/addons/base_accounting_kit/models/payment_matching.py", line 48, in process_bank_statement_line

moves = st_line.with_context(ctx).process_reconciliation(

File "/opt/odoo/addons/base_accounting_kit/models/payment_matching.py", line 1065, in process_reconciliation

if aml_rec.journal_id.post_at == "bank_rec" and aml_rec.payment_id and aml_rec.move_id.state == "draft":

Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):

File "/opt/odoo/odoo/http.py", line 639, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "/opt/odoo/odoo/http.py", line 315, in _handle_exception

raise exception.with_traceback(None) from new_cause

AttributeError: 'account.journal' object has no attribute 'post_at'

Hi Team can you please help for the below error

by

Tadelo Ferede

on 5/26/21, 9:42 AM

Error:

Odoo Server Error

Traceback (most recent call last):

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\base\models\ir_http.py", line 237, in _dispatch

result = request.dispatch()

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 683, in dispatch

result = self._call_function(**self.params)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 359, in _call_function

return checked_call(self.db, *args, **kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\service\model.py", line 94, in wrapper

return f(dbname, *args, **kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 347, in checked_call

result = self.endpoint(*a, **kw)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 912, in __call__

return self.method(*args, **kw)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 531, in response_wrap

response = f(*args, **kw)

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\web\controllers\main.py", line 1381, in call_button

action = self._call_kw(model, method, args, kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\web\controllers\main.py", line 1369, in _call_kw

return call_kw(request.env[model], method, args, kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\api.py", line 396, in call_kw

result = _call_kw_multi(method, model, args, kwargs)

(Video) Odoo. How To Install Custom Module In Odoo.sh. Deploying a 3rd Party App Using Odoo.sh | Tutorial

File "C:\Program Files (x86)\Odoo 14\server\odoo\api.py", line 383, in _call_kw_multi

result = method(recs, *args, **kwargs)

File "<decorator-gen-78>", line 2, in button_immediate_upgrade

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\base\models\ir_module.py", line 73, in check_and_log

return method(self, *args, **kwargs)

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\base\models\ir_module.py", line 653, in button_immediate_upgrade

return self._button_immediate_function(type(self).button_upgrade)

File "C:\Program Files (x86)\Odoo 14\server\odoo\addons\base\models\ir_module.py", line 592, in _button_immediate_function

modules.registry.Registry.new(self._cr.dbname, update_module=True)

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\registry.py", line 89, in new

odoo.modules.load_modules(registry._db, force_demo, status, update_module)

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\loading.py", line 451, in load_modules

force, status, report, loaded_modules, update_module, models_to_check)

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\loading.py", line 348, in load_marked_modules

perform_checks=perform_checks, models_to_check=models_to_check

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\loading.py", line 221, in load_module_graph

load_data(cr, idref, mode, kind='data', package=package)

File "C:\Program Files (x86)\Odoo 14\server\odoo\modules\loading.py", line 69, in load_data

tools.convert_file(cr, package.name, filename, idref, mode, noupdate, kind)

File "C:\Program Files (x86)\Odoo 14\server\odoo\tools\convert.py", line 729, in convert_file

convert_csv_import(cr, module, pathname, fp.read(), idref, mode, noupdate)

File "C:\Program Files (x86)\Odoo 14\server\odoo\tools\convert.py", line 775, in convert_csv_import

raise Exception(_('Module loading %s failed: file %s could not be processed:\n %s') % (module, fname, warning_msg))

Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 639, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "C:\Program Files (x86)\Odoo 14\server\odoo\http.py", line 315, in _handle_exception

raise exception.with_traceback(None) from new_cause

Exception: Module loading base_accounting_kit failed: file base_accounting_kit\security/ir.model.access.csv could not be processed:

No matching record found for external id 'model_multiple_invoice' in field 'Model'

No matching record found for external id 'model_multiple_invoice_layout' in field 'Model'

Missing required value for the field 'Model' (model_id)

Missing required value for the field 'Model' (model_id)

Re: Hi Team can you please help for the below error

by

Cybrosys Technologies

on 5/26/21, 11:14 PM Author

Hello, Did you try restarting your Odoo service before installing/upgrading to new version?

Error bank statement reconcile

by

Pietter Mulyono

on 5/26/21, 5:08 AM

The entry BNK1/... (id 4) is already posted.

Bank statement should be posted so that we can reconcile.

Module 14.0.3.10.8

Odoo 14.0-20210430 (Community Edition)

Another issue :

When we create manual payment for the invoice, invoice payment status = PAID.

Compared to Odoo Enterprise trial, invoice payment status = IN PAYMENT. And the status changed to PAID after bank statement reconciliation

Re: Error bank statement reconcile

by

Cybrosys Technologies

on 6/27/21, 10:37 PM Author

We have updated the module with the fix. Please get a latest version

module upgrade error.

by

posadmin1@athenacommunity.college

on 5/18/21, 4:46 PM

i am usingv 14.0.1.2.2 and get error in upgrade process. where can i get past versions likev 14.0.2.6.5.

Error:
Odoo Server Error
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_http.py", line 237, in _dispatch
result = request.dispatch()
File "/usr/lib/python3/dist-packages/odoo/http.py", line 683, in dispatch
result = self._call_function(**self.params)
File "/usr/lib/python3/dist-packages/odoo/http.py", line 359, in _call_function
return checked_call(self.db, *args, **kwargs)
File "/usr/lib/python3/dist-packages/odoo/service/model.py", line 94, in wrapper
return f(dbname, *args, **kwargs)
File "/usr/lib/python3/dist-packages/odoo/http.py", line 347, in checked_call
result = self.endpoint(*a, **kw)
File "/usr/lib/python3/dist-packages/odoo/http.py", line 912, in __call__
return self.method(*args, **kw)
File "/usr/lib/python3/dist-packages/odoo/http.py", line 531, in response_wrap
response = f(*args, **kw)
File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 1389, in call_kw
return self._call_kw(model, method, args, kwargs)
File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 1381, in _call_kw
return call_kw(request.env[model], method, args, kwargs)
File "/usr/lib/python3/dist-packages/odoo/api.py", line 396, in call_kw
result = _call_kw_multi(method, model, args, kwargs)
File "/usr/lib/python3/dist-packages/odoo/api.py", line 383, in _call_kw_multi
result = method(recs, *args, **kwargs)
Exception
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/odoo/http.py", line 639, in _handle_exception
return super(JsonRequest, self)._handle_exception(exception)
File "/usr/lib/python3/dist-packages/odoo/http.py", line 315, in _handle_exception
raise exception.with_traceback(None) from new_cause
TypeError: button_immediate_upgrade() takes 1 positional argument but 2 were given
Re: module upgrade error.

by

Cybrosys Technologies

on 5/21/21, 2:39 AM Author

Hello, We tried to reach you on '

posadmin1@athenacommunity.college'. But we the mail delivery got failed.
if you still have the issue, please contact us on odoo@cybrosys.com

Error update

by

Samuel Martin Martin Quispe Valdivia

on 5/17/21, 5:23 PM

Error:
Odoo Server Error

Traceback (most recent call last):
File "/opt/odoo/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch
result = request.dispatch()
File "/opt/odoo/odoo/odoo/http.py", line 682, in dispatch
result = self._call_function(**self.params)
File "/opt/odoo/odoo/odoo/http.py", line 358, in _call_function
return checked_call(self.db, *args, **kwargs)
File "/opt/odoo/odoo/odoo/service/model.py", line 94, in wrapper
return f(dbname, *args, **kwargs)
File "/opt/odoo/odoo/odoo/http.py", line 346, in checked_call
result = self.endpoint(*a, **kw)
File "/opt/odoo/odoo/odoo/http.py", line 911, in __call__
return self.method(*args, **kw)
File "/opt/odoo/odoo/odoo/http.py", line 530, in response_wrap
response = f(*args, **kw)
File "/opt/odoo/odoo/addons/web/controllers/main.py", line 1359, in call_kw
return self._call_kw(model, method, args, kwargs)
File "/opt/odoo/odoo/addons/web/controllers/main.py", line 1351, in _call_kw
return call_kw(request.env[model], method, args, kwargs)
File "/opt/odoo/odoo/odoo/api.py", line 389, in call_kw
method = getattr(type(model), name)
Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/opt/odoo/odoo/odoo/http.py", line 638, in _handle_exception
return super(JsonRequest, self)._handle_exception(exception)
File "/opt/odoo/odoo/odoo/http.py", line 314, in _handle_exception
raise exception.with_traceback(None) from new_cause
AttributeError: type object 'account.move' has no attribute 'month_income_last_year'

Re: Error update

by

Cybrosys Technologies

on 5/21/21, 2:41 AM Author

Hello, We couldn't reproduce this error. can you please share your email id with us, so that our tech team can assist you to resolve this.
email us on odoo@cybrosys.com

Error update

by

Samuel Martin Martin Quispe Valdivia

on 5/17/21, 5:07 PM

Error:
Odoo Server Error

Traceback (most recent call last):
File "/opt/odoo/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch
result = request.dispatch()
File "/opt/odoo/odoo/odoo/http.py", line 682, in dispatch
result = self._call_function(**self.params)
File "/opt/odoo/odoo/odoo/http.py", line 358, in _call_function
return checked_call(self.db, *args, **kwargs)
File "/opt/odoo/odoo/odoo/service/model.py", line 94, in wrapper
return f(dbname, *args, **kwargs)
File "/opt/odoo/odoo/odoo/http.py", line 346, in checked_call
result = self.endpoint(*a, **kw)
File "/opt/odoo/odoo/odoo/http.py", line 911, in __call__
return self.method(*args, **kw)
File "/opt/odoo/odoo/odoo/http.py", line 530, in response_wrap
response = f(*args, **kw)
File "/opt/odoo/odoo/addons/web/controllers/main.py", line 1359, in call_kw
return self._call_kw(model, method, args, kwargs)
File "/opt/odoo/odoo/addons/web/controllers/main.py", line 1351, in _call_kw
return call_kw(request.env[model], method, args, kwargs)
File "/opt/odoo/odoo/odoo/api.py", line 389, in call_kw
method = getattr(type(model), name)
Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/opt/odoo/odoo/odoo/http.py", line 638, in _handle_exception
return super(JsonRequest, self)._handle_exception(exception)
File "/opt/odoo/odoo/odoo/http.py", line 314, in _handle_exception
raise exception.with_traceback(None) from new_cause
AttributeError: type object 'account.move' has no attribute 'month_income_last_year'

Re: Error update

by

Cybrosys Technologies

on 5/21/21, 2:41 AM Author

Hello, We couldn't reproduce this error. can you please share your email id with us, so that our tech team can assist you to resolve this.
email us on odoo@cybrosys.com

by

Zakaria ELALAMI

on 5/1/21, 8:27 PM

for all payment are already reconciled with their respective invoice, after importing bank journal and validate it , trying to reconcile bank entries with their corresponding payment , we get this error message: “The entry BNK1/2020/01/0019 (id 6911) is already posted.”

How to unlock a locked date

by

Tadelo Ferede

on 4/23/21, 10:00 AM

Dear Cybrosys team,

The module is a great work but I have faced the following error when I tried to change the lock date I have set earlier.

The lock date for advisors is irreversible and can't be removed.

Could you please help to resolve this problem?

Thanks

Re: How to unlock a locked date

by

Cybrosys Technologies

on 4/25/21, 10:00 PM Author

Hello, This is not an error. its a restriction put to keep your audited accounting entries safe. Any way, we will look into this and improve into something more user friendly.
If you really want to edit the date, please contact us on odoo@cybrosys.com. our tech team will assist you.

by

Tadelo Ferede

on 4/23/21, 9:55 AM

Dear Cybrosys team,

First I would like to appreciate your work for this accounting module and I have the following problem.

I want to reopen the lock date I have set to do few adjustment but the lock date update give me the following error message.

The lock date for advisors is irreversible and can't be removed.

If you have any solution please let me know.

Thanks

Assets Depreciation Dates

by

James Ogola

on 4/6/21, 10:12 AM

Dear Cybrosys,

I noticed the options to choose the depreciation dates and the first date of depreciation when creating an asset is not available with the module.

Are there plans to include these options to manage the asset depreciation dates?

Thanks

Re: Assets Depreciation Dates

by

Cybrosys Technologies

on 4/25/21, 10:01 PM Author

Thanks for the input. We will definitely look into it.

by

Nikhil Kamath

on 4/5/21, 3:07 AM

there are two things which are problems in this module ,

if your doing pos transations reconsilations is not possible coz the partner field is mandatory for reconsilation.

when multiple pos sessions are running the cash balance is carried forward to open session which is showing wrong balance when closing

Re:

by

Cybrosys Technologies

on 4/25/21, 10:02 PM Author

We are working on it. Thanks for informing us.

Manual reconcile still not fixed.

by

Kestutis Urbonas

on 3/30/21, 7:00 AM

Manual reconcile still not fixed. If someone have fixed it, please send me message to kesturbo'at'gmail.com

Thanks.

Re: Manual reconcile still not fixed.

by

Cybrosys Technologies

on 4/5/21, 4:16 AM Author

Hello, as per your email. We did the fixes,. Please let us know is it works for you.

by

Nikhil Kamath

on 3/22/21, 12:36 PM

this doesnt have point of sale support or features

Re:

by

Cybrosys Technologies

on 3/25/21, 8:07 AM Author

Please install Point of Sale app

Author says it is fixed, however

by

Kestutis Urbonas

on 3/2/21, 5:13 AM

manual reconcilation is not working properly.

Re: Author says it is fixed, however

by

Cybrosys Technologies

on 3/2/21, 6:09 AM Author

Can you send more details to odoo@cybrosys.com?

WARNING FOR DOWNLOADERS

by

Kestutis Urbonas

on 2/24/21, 4:28 AM

Accounting is one of most important modules in odoo. If accounting module does at least one mistake, means module can not be used. I see so many people downloaded module and using it. It means all these people are doing wrong accounting moves. Tried to contact module authors, but seems they are not willing to fix errors, or at least to do it in public files. Looks like this download is only for their advertisement purposes. It is their right, but they should mention this in this download!

My advice for downloaders - take care about this module, as it is not working properly in few options and this indicates, that other options also can have errors. You will waste your time doing data entry, and at the end you will find out, that accounting moves were done wrongly.

New update, but errors same.

by

Kestutis Urbonas

on 2/19/21, 4:53 AM

Cash book, bank book reports are not working.

Reconcile manual mode not working.

Re: New update, but errors same.

by

Cybrosys Technologies

on 2/28/21, 11:23 PM Author

We have updated the module with fixes. Please get the latest version

by

XADO Egypt

on 2/13/21, 6:46 AM

Great Kit , got a small error . after we add an asset if we try to modify it's depreciation we get this error

The above exception was the direct cause of the following exception:Traceback (most recent call last): File "/opt/odoo14/odoo/odoo/http.py", line 639, in _handle_exception return super(JsonRequest, self)._handle_exception(exception) File "/opt/odoo14/odoo/odoo/http.py", line 315, in _handle_exception raise exception.with_traceback(None) from new_causeTypeError: transfer_node_to_modifiers() got an unexpected keyword argument 'in_tree_view'
Re:

by

Cybrosys Technologies

on 2/25/21, 8:14 AM Author

Thanks for reporting, Its fixed. Please get the latest version.

after updating OS and Odoo13 your charts don't render correctly

by

alex71m

on 2/8/21, 5:24 AM

triangles and strange lines appear...

Re: after updating OS and Odoo13 your charts don't render correctly

by

Cybrosys Technologies

on 2/8/21, 7:22 AM Author

Please send an email to odoo@cybrosys.com to have a detailed look at the issue

Convert To VAT

by

stunomatic

on 1/27/21, 9:16 AM

Hi,

Thanks for the module.

I am trying first time Odoo ERP and also first time on docker.

As technical name is changing from "account" to "base_accounting_kit", how other modules depend on account module will work ?

I want to change TAX to VAT everywhere and also want to migrate data from QuickBooks to Odoo using a connector but all module depend on technical name "Account".

Please advise maybe my concept is wrong.


Thank You

Re: Convert To VAT

by

Cybrosys Technologies

on 1/28/21, 12:16 AM Author

base_accounting_kit is not mean to replace account module. This is a module that you can run along with the account module in Odoo community edition. So, other modules depends on 'account' module will not be effected in case of dependency.

Recurring Entries

by

alex71m

on 1/25/21, 12:09 PM

After setting up a Recurring Template and setting it to "Running", I still cannot find the way to create the recurring entries for given customer or vendor.

Hope in you prompt response and thanks for the great job done with this module!!!!

Best regards,

Francesco

Re: Recurring Entries

by

Cybrosys Technologies

on 1/28/21, 5:35 AM Author

Out team had a look at the issue you mentioned. They couldn't reproduce it.

Can you send an email to odoo@cybrosys.com, so that they can reach you back and solve the issue.

Balance Sheet Report

by

Albert Chin

on 1/21/21, 7:34 PM

First of all, a great module and thanks for your contribution.

I have a feature request actually. Is it possible to add an option in Balance Sheet PDF Report not to show account balance with 0? I have a lot of interim and transfer accounts which do not look good in my report with all the 0 balance.

Something similar to the Trial Balance Report with an option "With balance is not equal to 0".

(Video) How to Download and Install Module From Odoo App Store
Re: Balance Sheet Report

by

Cybrosys Technologies

on 1/21/21, 10:56 PM Author

Thanks for your input. We will try to include in our future updates.

Invoicedashboard'

by

Anil Kuamr Anal

on 1/20/21, 1:40 AM

Traceback:Error: QWeb2: Template 'Invoicedashboard' not found at Object.exception (http://35.187.228.121:8069/web/content/101-2223e79/web.assets_common.js:4387:7) at Engine._render (http://35.187.228.121:8069/web/content/101-2223e79/web.assets_common.js:4432:103) at Engine.render (http://35.187.228.121:8069/web/content/101-2223e79/web.assets_common.js:4428:151) at Class.renderElement (http://35.187.228.121:8069/web/content/117-5915cfe/web.assets_backend.js:480:452) at Class.prototype.<computed> [as renderElement] (http://35.187.228.121:8069/web/content/101-2223e79/web.assets_common.js:4622:488) at Class.renderElement (http://35.187.228.121:8069/web/content/117-5915cfe/web.assets_backend.js:6207:1510) at Class.prototype.<computed> [as renderElement] (http://35.187.228.121:8069/web/content/101-2223e79/web.assets_common.js:4622:488) at http://35.187.228.121:8069/web/content/101-2223e79/web.assets_common.js:4951:6
Re: Invoicedashboard'

by

Cybrosys Technologies

on 1/20/21, 2:09 AM Author

Please restart your odoo service after adding this addon to your addons directory.

by

Yogendra Rajput

on 1/16/21, 11:18 AM

Can you please share the document to integrate this with Odoo community?

Update error!

by

Samuel Martin Martin Quispe Valdivia

on 1/9/21, 9:52 PM

Intente actualizar, hize el procedimiento que me indican: descargar, unzip, copiarlo a la carpeta addons, reiniciar servidor, actualizar lista, y actualizar .

Error:
Odoo Server Error

Traceback (most recent call last):
File "/opt/odoo/odoo/odoo/addons/base/models/ir_http.py", line 237, in _dispatch
result = request.dispatch()
File "/opt/odoo/odoo/odoo/http.py", line 682, in dispatch
result = self._call_function(**self.params)
File "/opt/odoo/odoo/odoo/http.py", line 358, in _call_function
return checked_call(self.db, *args, **kwargs)
File "/opt/odoo/odoo/odoo/service/model.py", line 94, in wrapper
return f(dbname, *args, **kwargs)
File "/opt/odoo/odoo/odoo/http.py", line 346, in checked_call
result = self.endpoint(*a, **kw)
File "/opt/odoo/odoo/odoo/http.py", line 911, in __call__
return self.method(*args, **kw)
File "/opt/odoo/odoo/odoo/http.py", line 530, in response_wrap
response = f(*args, **kw)
File "/opt/odoo/odoo/addons/web/controllers/main.py", line 1359, in call_kw
return self._call_kw(model, method, args, kwargs)
File "/opt/odoo/odoo/addons/web/controllers/main.py", line 1351, in _call_kw
return call_kw(request.env[model], method, args, kwargs)
File "/opt/odoo/odoo/odoo/api.py", line 396, in call_kw
result = _call_kw_multi(method, model, args, kwargs)
File "/opt/odoo/odoo/odoo/api.py", line 383, in _call_kw_multi
result = method(recs, *args, **kwargs)
Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/opt/odoo/odoo/odoo/http.py", line 638, in _handle_exception
return super(JsonRequest, self)._handle_exception(exception)
File "/opt/odoo/odoo/odoo/http.py", line 314, in _handle_exception
raise exception.with_traceback(None) from new_cause
TypeError: button_immediate_upgrade() takes 1 positional argument but 2 were given

Bank Reconcillation

by

Wael Marzouk

on 1/5/21, 2:34 PM

Dear Cybrosys team,

Thanks for your efforts.

I see the bank reconciliation process is not working correctly. I do posting after editing the bank statement but "Reconcile" button doesn't appear.

Am I doing anything wrong or this is a bug in the module ?

Thanks

Couldn't Install - Installation Failed

by

Rashid S. Al-Kaabi

on 1/1/21, 6:56 PM

I am getting this error while trying to install

Error:

Odoo Server Error

Traceback (most recent call last):

File "/odoo/odoo-server/odoo/addons/base/models/ir_http.py", line 237, in _dispatch

result = request.dispatch()

File "/odoo/odoo-server/odoo/http.py", line 682, in dispatch

result = self._call_function(**self.params)

File "/odoo/odoo-server/odoo/http.py", line 358, in _call_function

return checked_call(self.db, *args, **kwargs)

File "/odoo/odoo-server/odoo/service/model.py", line 94, in wrapper

return f(dbname, *args, **kwargs)

File "/odoo/odoo-server/odoo/http.py", line 346, in checked_call

result = self.endpoint(*a, **kw)

File "/odoo/odoo-server/odoo/http.py", line 911, in __call__

return self.method(*args, **kw)

File "/odoo/odoo-server/odoo/http.py", line 530, in response_wrap

response = f(*args, **kw)

File "/odoo/odoo-server/addons/web/controllers/main.py", line 1363, in call_button

action = self._call_kw(model, method, args, kwargs)

File "/odoo/odoo-server/addons/web/controllers/main.py", line 1351, in _call_kw

return call_kw(request.env[model], method, args, kwargs)

File "/odoo/odoo-server/odoo/api.py", line 396, in call_kw

result = _call_kw_multi(method, model, args, kwargs)

File "/odoo/odoo-server/odoo/api.py", line 383, in _call_kw_multi

result = method(recs, *args, **kwargs)

File "<decorator-gen-71>", line 2, in button_immediate_install

File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 73, in check_and_log

return method(self, *args, **kwargs)

File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 474, in button_immediate_install

return self._button_immediate_function(type(self).button_install)

File "/odoo/odoo-server/odoo/addons/base/models/ir_module.py", line 592, in _button_immediate_function

modules.registry.Registry.new(self._cr.dbname, update_module=True)

File "/odoo/odoo-server/odoo/modules/registry.py", line 89, in new

odoo.modules.load_modules(registry._db, force_demo, status, update_module)

File "/odoo/odoo-server/odoo/modules/loading.py", line 453, in load_modules

processed_modules += load_marked_modules(cr, graph,

File "/odoo/odoo-server/odoo/modules/loading.py", line 346, in load_marked_modules

loaded, processed = load_module_graph(

File "/odoo/odoo-server/odoo/modules/loading.py", line 221, in load_module_graph

load_data(cr, idref, mode, kind='data', package=package)

File "/odoo/odoo-server/odoo/modules/loading.py", line 69, in load_data

tools.convert_file(cr, package.name, filename, idref, mode, noupdate, kind)

File "/odoo/odoo-server/odoo/tools/convert.py", line 733, in convert_file

convert_xml_import(cr, module, fp, idref, mode, noupdate)

File "/odoo/odoo-server/odoo/tools/convert.py", line 799, in convert_xml_import

obj.parse(doc.getroot())

File "/odoo/odoo-server/odoo/tools/convert.py", line 719, in parse

self._tag_root(de)

File "/odoo/odoo-server/odoo/tools/convert.py", line 677, in _tag_root

f(rec)

File "/odoo/odoo-server/odoo/tools/convert.py", line 681, in _tag_root

raise ParseError('while parsing %s:%s, near\n%s' % (

Exception

The above exception was the direct cause of the following exception:

Traceback (most recent call last):

File "/odoo/odoo-server/odoo/http.py", line 638, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "/odoo/odoo-server/odoo/http.py", line 314, in _handle_exception

raise exception.with_traceback(None) from new_cause

odoo.tools.convert.ParseError: while parsing /odoo/odoo-server/odoo/addons/base_accounting_kit-2/data/account_pdc_data.xml:16, near

<function model="account.journal" name="_enable_pdc_on_bank_journals"/>

Just worried so far, but I was very happy with this module for v13!

by

alex71m

on 12/30/20, 4:46 PM

during installation I get following warnings:

2020-12-30 21:43:14,333 7633 WARNING db odoo.fields: Field account.move.asset_depreciation_ids: unknown parameter 'ondelete', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

2020-12-30 21:43:14,377 7633 WARNING db odoo.fields: Field account.asset.asset.value_residual: unknown parameter 'method', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

2020-12-30 21:43:14,379 7633 WARNING db odoo.fields: Field account.asset.depreciation.line.move_check: unknown parameter 'track_visibility', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

2020-12-30 21:43:14,379 7633 WARNING db odoo.fields: Field account.asset.depreciation.line.move_posted_check: unknown parameter 'track_visibility', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

2020-12-30 21:43:18,512 7633 WARNING db odoo.modules.loading: The model asset.modify has no access rules, consider adding one. E.g. access_asset_modify,access_asset_modify,model_asset_modify,base.group_user,1,0,0,0

by

Kitama

on 12/18/20, 2:56 PM

Hello,

Thanks for doing a great job. I wanted to share one missing thing. On the Dashboard, Invoices, the information presented doesn't take into account part payments. Meaning the amount partly paid (partial payment) is not included in Total Paid even though that amount is already applied to the invoice/bill, even if the payment is 99.

Error column reference "state" is ambiguous

by

Libu Koshy

on 12/8/20, 3:08 AM

res = self._obj.execute(query, params)

psycopg2.ProgrammingError: column reference "state" is ambiguous

LINE 7: state in ('posted', 'draft')

^

File "/home/USer/Odoo/Odoo-13CM/custom_addons/base_accounting_kit/models/account_dashboard.py", line 437, in get_latebills

Reproduce:

Installed modules,Cybrosys debranding module,Ktree backend theme,this Accounting module.

It is a fresh db with out any entries.

When I click the ”Foecasted“ of the product, some errors occur

by

Li Lin

on 12/2/20, 2:52 AM

Error:

Traceback:
Error: dict.active_warehouse is undefined
anonymous@http://192.168.1.163:8069/web/content/225-7414d66/web.assets_common.js line 4415 > Function:13:11
_render@http://192.168.1.163:8069/web/content/225-7414d66/web.assets_common.js:4414:296
render@http://192.168.1.163:8069/web/content/225-7414d66/web.assets_common.js:4414:151
_render@http://192.168.1.163:8069/web/content/225-7414d66/web.assets_common.js:4418:57
render@http://192.168.1.163:8069/web/content/225-7414d66/web.assets_common.js:4414:151
_renderWarehouseFilters/<@http://192.168.1.163:8069/web/content/292-2f7f456/web.assets_backend.js:6053:23

My server can’t access some websites, such as google.

there is a Warning

by

Li Lin

on 11/25/20, 8:26 PM

Odoo V14,Community EditionMy db_name is shsy.The following warning content may be helpful to improve this module.
2020-11-26 00:58:58,421 2006 WARNING shsy odoo.fields: Field account.bank.book.report.date_from: unknown parameter 'requred', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it
2020-11-26 00:58:58,421 2006 WARNING shsy odoo.fields: Field account.bank.book.report.date_to: unknown parameter 'requred', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it
2020-11-26 00:58:58,422 2006 WARNING shsy odoo.fields: Field account.cash.book.report.date_from: unknown parameter 'requred', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it
2020-11-26 00:58:58,422 2006 WARNING shsy odoo.fields: Field account.cash.book.report.date_to: unknown parameter 'requred', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it
2020-11-26 00:58:58,424 2006 WARNING shsy odoo.fields: Field account.day.book.report.date_from: unknown parameter 'requred', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it
2020-11-26 00:58:58,424 2006 WARNING shsy odoo.fields: Field account.day.book.report.date_to: unknown parameter 'requred', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it

Re: there is a Warning

by

Cybrosys Technologies

on 11/25/20, 10:21 PM Author

Thanks for reporting, We will update asap

by

Anil Kuamr Anal

on 11/25/20, 11:42 AM

Traceback:Error: QWeb2: Template 'Invoicedashboard' not found at Object.exception (http://139.59.10.150:8069/web/content/116-b0714de/web.assets_common.js:4380:7) at Engine._render (http://139.59.10.150:8069/web/content/116-b0714de/web.assets_common.js:4425:103) at Engine.render (http://139.59.10.150:8069/web/content/116-b0714de/web.assets_common.js:4421:151) at Class.renderElement (http://139.59.10.150:8069/web/content/131-586aa10/web.assets_backend.js:480:452) at Class.prototype.<computed> [as renderElement] (http://139.59.10.150:8069/web/content/116-b0714de/web.assets_common.js:4615:488) at Class.renderElement (http://139.59.10.150:8069/web/content/131-586aa10/web.assets_backend.js:6216:1510) at Class.prototype.<computed> [as renderElement] (http://139.59.10.150:8069/web/content/116-b0714de/web.assets_common.js:4615:488) at http://139.59.10.150:8069/web/content/116-b0714de/web.assets_common.js:4943:6

i have restarted the service still this error persist

by

Hajaj Roshan

on 10/30/20, 8:04 AM

by

Qaddafi Putra Gary

on 10/29/20, 9:21 AM

Uhmm excuse me, I got an error like this

Traceback:Error: QWeb2: Template 'Invoicedashboard' not found

Can you help me, thank you

Re:

by

Cybrosys Technologies

on 10/29/20, 11:45 PM Author

Please restart your Odoo service

by

Vanessa

on 10/28/20, 8:58 PM

Hi, Thanks for this wonderfull app. I have a problem. After install it, whe i am going to register a payment in any invoice i have the following error:

Error:

Odoo Server Error

Traceback (most recent call last):

File "/usr/lib/python3/dist-packages/odoo/http.py", line 624, in _handle_exception

return super(JsonRequest, self)._handle_exception(exception)

File "/usr/lib/python3/dist-packages/odoo/http.py", line 310, in _handle_exception

raise pycompat.reraise(type(exception), exception, sys.exc_info()[2])

File "/usr/lib/python3/dist-packages/odoo/tools/pycompat.py", line 14, in reraise

raise value

File "/usr/lib/python3/dist-packages/odoo/http.py", line 669, in dispatch

result = self._call_function(**self.params)

File "/usr/lib/python3/dist-packages/odoo/http.py", line 350, in _call_function

return checked_call(self.db, *args, **kwargs)

File "/usr/lib/python3/dist-packages/odoo/service/model.py", line 94, in wrapper

return f(dbname, *args, **kwargs)

File "/usr/lib/python3/dist-packages/odoo/http.py", line 339, in checked_call

result = self.endpoint(*a, **kw)

File "/usr/lib/python3/dist-packages/odoo/http.py", line 915, in __call__

return self.method(*args, **kw)

File "/usr/lib/python3/dist-packages/odoo/http.py", line 515, in response_wrap

response = f(*args, **kw)

File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 1322, in call_kw

return self._call_kw(model, method, args, kwargs)

File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 1314, in _call_kw

return call_kw(request.env[model], method, args, kwargs)

File "/usr/lib/python3/dist-packages/odoo/api.py", line 383, in call_kw

result = _call_kw_model(method, model, args, kwargs)

File "/usr/lib/python3/dist-packages/odoo/api.py", line 356, in _call_kw_model

result = method(recs, *args, **kwargs)

File "/usr/lib/python3/dist-packages/odoo/models.py", line 1466, in load_views

for [v_id, v_type] in views

File "/usr/lib/python3/dist-packages/odoo/models.py", line 1466, in <dictcomp>

for [v_id, v_type] in views

File "/usr/lib/python3/dist-packages/odoo/addons/mail/models/mail_thread.py", line 410, in fields_view_get

res = super(MailThread, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)

File "/usr/lib/python3/dist-packages/odoo/addons/web/models/models.py", line 206, in fields_view_get

r = super().fields_view_get(view_id, view_type, toolbar, submenu)

File "/usr/lib/python3/dist-packages/odoo/models.py", line 1553, in fields_view_get

xarch, xfields = View.postprocess_and_fields(self._name, etree.fromstring(result['arch']), view_id)

File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_ui_view.py", line 987, in postprocess_and_fields

self.raise_view_error(message, view_id)

File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_ui_view.py", line 614, in raise_view_error

raise ValueError(message)

ValueError: El campo `effective_date` no existe

Contexto del error:

Vista `account.payment.invoice.form`

[view_id: 641, xml_id: account.view_account_payment_invoice_form, model: account.payment, parent_id: 638]

Cash and Bank Balance data not showing in Dashboard 'BANK AND CASH BALANCE'

by

Suresh

on 10/22/20, 2:36 AM

This is to inform you that the module is unable to display data on dashboard in bank and cash area or column. Pls update me the latest code.

Re: Cash and Bank Balance data not showing in Dashboard 'BANK AND CASH BALANCE'

by

Cybrosys Technologies

on 10/22/20, 7:05 AM Author

Thanks for informing,

We will check and update

by

Osama Al Shalabi (oas)

on 10/14/20, 3:23 AM

Hello is the available on enterprise V14?

Re:

by

Cybrosys Technologies

on 10/14/20, 5:03 AM Author

Sorry, No

Trail Balance Missing

by

Bilal Janjua

on 10/13/20, 12:57 AM

Hi, very impressive module, any future plans for Trail Balance ?

Re: Trail Balance Missing

by

Cybrosys Technologies

on 10/13/20, 7:56 AM Author

Hello, Thanks for informing.
We have updated the module with Trial balance.

Issue with multi companies environment with Multi Currency

by

Mostafa Kandil

on 10/3/20, 1:28 PM

The Currency Symbol in the Dashboard Uses the Main company Symbol
even when you are changing the company with deferent Currency Symbol

Re: Issue with multi companies environment with Multi Currency

by

Cybrosys Technologies

(Video) Ksolves #1 Top Selling on Odoo App Store | New Milestone

on 10/5/20, 12:05 AM Author

Thanks for reporting, We will update soon

Videos

1. Getting started | Odoo Accounting
(Odoo)
2. Odoo Point of Sale - Online or offline!
(Odoo)
3. Set up your store | Odoo Point of Sale
(Odoo)
4. Odoo Apps Simplified - Enrich Your Business And Learn What Each App Can Do
(Odoo)
5. How to Download & Install Any Module From Odoo App Store | Odoo Tutorials | Install Odoo Apps
(Cybrosys Technologies)
6. Upload an App to Odoo.sh - Manual Method
(Ray Carnes (Odoo))
Top Articles
Latest Posts
Article information

Author: Carlyn Walter

Last Updated: 06/12/2023

Views: 6033

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Carlyn Walter

Birthday: 1996-01-03

Address: Suite 452 40815 Denyse Extensions, Sengermouth, OR 42374

Phone: +8501809515404

Job: Manufacturing Technician

Hobby: Table tennis, Archery, Vacation, Metal detecting, Yo-yoing, Crocheting, Creative writing

Introduction: My name is Carlyn Walter, I am a lively, glamorous, healthy, clean, powerful, calm, combative person who loves writing and wants to share my knowledge and understanding with you.