Commit Graph

323 Commits

Author SHA1 Message Date
OCA Transbot
f2bf94db1b Update translation files
Updated by Update PO files to match POT (msgmerge) hook in Weblate.
2020-01-08 15:50:20 -05:00
oca-travis
e7bc8de9f5 [UPD] Update account_chart_update.pot 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
9dbff9816d [IMP] account_chart_update: Include field selection
With this option, you can select which fields do you want to compare for updating.

Use case: you have specific accounts in taxes, and you don't want to lose them,
but you want to update their groups through the wizard. Before this, the update
was all or nothing. Now, you have total control!
2020-01-08 15:50:20 -05:00
oca-travis
c211eb960e [UPD] Update account_chart_update.pot 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
2e849a1e30 [FIX] account_chart_update: Handle updated m2m correctly 2020-01-08 15:50:20 -05:00
OCA Git Bot
3a5909cc93 [UPD] README.rst 2020-01-08 15:50:20 -05:00
oca-travis
e8c9b82935 [UPD] Update account_chart_update.pot 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
72940bae06 [MIG] account_chart_update: Additional needed changes 2020-01-08 15:50:20 -05:00
amcor
1ff708e3dd [MIG] account_chart_update: Migration to 11.0 2020-01-08 15:50:20 -05:00
Stéphane Bidoul (ACSONE)
37df7fb1e7 account_chart_update: copy inactive tax templates too
In v10, tax templates have an active flag. It is useful to copy them too, letting the user select which one he wants to activate in it's instance.
2020-01-08 15:50:20 -05:00
Pedro M. Baeza
9906636578 [FIX+IMP] account_chart_update: Major refactoring
* Compare all fields from template

  Not all fields were properly compared with previous code. This means also
  to exclude some of them, but now we have a full and extensible system.

* Optimize cached method
* Generate accounts and fiscal positions using Odoo methods (tax already did)
* README by fragments
* Add tests up to full coverage
2020-01-08 15:50:20 -05:00
Pedro M. Baeza
969579c6ab [FIX] account_chart_update: Don't cache recordsets
When marking methods as ormcache, you can't return recordsets, as they keep
the cursor information, and that cursor can be closed (worker spawn for example)
when you need to access again data.

This is fixed returning IDs instead, and browsing when needed
2020-01-08 15:50:20 -05:00
moutio
bb5cae86ce [FIX] account_chart_update: Limit fiscal position search with same name (#651) 2020-01-08 15:50:20 -05:00
amcor
c97708c4c6 [MIG][ADD] i18n directly from 10.0 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
8e86003b16 [FIX] account_chart_update: Fetch account code digits correctly 2020-01-08 15:50:20 -05:00
Sylvain Van Hoof
f6a4890b9a [MIG] account_chart_update: Migration to 10.0 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
7f8c24a480 [FIX+IMP] account_chart_update: Fix fiscal position mapping + translations + clean authors
As this module has been written from scratch with a totally different technique, I clean the list and update copyrights.
2020-01-08 15:50:20 -05:00
Jairo Llopis
f98bd62d1b [MIG][9.0][account_chart_update] Migrate.
- New-style license headers.
- Remove .pot file.
- Remove tax codes stuff, now removed from v9.
- Refactor methods for search, create, update, delete. Now they are smaller, fitter, happier, more productive.
- Only update fields that have any kind of change on any updated record.
- Place the wizard in the configuration page, instead of its own menu item.
- Display amount of disabled taxes at ending page.
2020-01-08 15:50:20 -05:00
Stéphane Bidoul
1d14a3979d [FIX] account_chart_update:
* Process price_include field
* Detect change in price_include field
2020-01-08 15:50:20 -05:00
PabloCM
fd570180d6 [FIX] Include acc templates from parent CoA templates 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
76ba0ecdf0 [FIX] account_chart_update: Don't write code on account update
As there's a constraint that forbids to write the code of the account
if it has moves, we delete the corresponding entry on update only,
because the method that prepares the values is the same for new and
existing accounts.
2020-01-08 15:50:20 -05:00
Angel Moya
e2ef94d987 [FIX][account-financial-tools] depends key is duplicated 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
6e390a1f12 [FIX] account_chart_update: Call mapping function instead of removed cache. Closes #240 2020-01-08 15:50:20 -05:00
Antonio Espinosa
a802d7f05c [FIX+IMP] account_chart_update: Several things
* Set updated taxes as active
* Check parent_id field in '_is_different_tax' method
* PEP8
* Spanish translation
2020-01-08 15:50:20 -05:00
Pedro M. Baeza
c6b863d7bd [IMP] account_chart_update: Whole refactoring
* Fix calculated field when showing inactives + add field to view
* Migrated to new API.
* Provided hooks for detecting changes and for adding update/create values.
* Purge dead error detection code (not applying).
* Use global mapping dictionaries stored on class instead of passing arguments down to top and viceversa.
* Number fields computed by a function field instead of being computed by hand.
* Use recordsets as indexes instead of ids to avoid repetitive browses.
* Re-enable local cache variables
* README + authors
2020-01-08 15:50:20 -05:00
Stéphane Bidoul
ae1c2b0e8c [FIX+IMP] account_chart_update: Several things
* search on code first to match tax codes

  The tax code code should be more discriminant that the tax code name.

* compare more fields in tax codes
* deletion of tax codes removed from templates

  For tax codes, it make sense to propose deletion, since tax codes
  are normally defined by the tax authority and the user does not
  customize them.

* update accounts on taxes even if an update of the account was not requested

  Useful when the chart of taxes changes but the chart of account
  need not be updated.

* depth-first search of tax codes

  This helps creating parents before children.

* compare more fields in taxes
* add active field on tax code

  Deactivate tax codes which are not in the template.

* deactivate taxes that are not in the template
* multi-company criteria for taxes
* avoid inserting duplicates in presence of inactive taxes or tax codes
2020-01-08 15:50:20 -05:00
Adrien Peiffer
4c05f39a30 [MIG] account_chart_update: Migration to 8.0
* Move out of unported
* Set account_chart_update installable
* value_reference of ir.property is a char
* Use get_by_record method of ir.property
* number digits is returned before assignment in case of property exist but account not
* product_obj isn't used
2020-01-08 15:50:20 -05:00
Nicolas Bessi
df78e131f9 Set all addons to uninstallable 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
5426b4929b [FIX] account_chart_update: Selection of operations to do now is working.
[FIX] account_chart_update: Adapted to work with inherited account chart templates.
[FIX] account_chart_update: Remove required=True for chart_template_id on DB and put on screen to avoid error when removing chart templates.
[FIX] account_chart_update: Change method to compare taxes of fiscal positions to match with the one comparing taxes.
[FIX] account_chart_update: Change method to compare accounts of fiscal positions to match with the one comparing accounts.
[IMP] account_chart_update: Wizard now shows in tree view modification notes.
[IMP] account_chart_update: For new data to be created, it is marked on notes the reason for the creation (just for clarity).
[IMP] account_chart_update: Tabs for operations that are not going to be performed are hidden.
[IMP] account_chart_update: Some PEP8 here and there.
[IMP] account_chart_update: Enhance a little the mapping searches (there's more room to improve).
[IMP] account_chart_update: Now it takes into account name and description for mapping taxes.
2020-01-08 15:50:20 -05:00
Stéphane Bidoul
18cf041b3f [IMP] attempt to match tax code on code if no match on name was found 2020-01-08 15:50:20 -05:00
Yann Papouin
6d56acbb83 FIX: wrong dict passed in _update_accounts 2020-01-08 15:50:20 -05:00
Invitu
0198ce7e74 [IMP] small improvement : calling reopen method in action_init + indentation 2020-01-08 15:50:20 -05:00
Pedro M. Baeza
36ff81dd35 [IMP] account_chart_update: Menu path to avoid needing multi-company permission. 2020-01-08 15:50:20 -05:00
Joaquin Gutierrez
92715ce8c1 [MIG]: account_char_update: Migration to version 7.0
[FIX]: Changed types to orm.Model, orm.TransientModel and orm.AbstractModel.
[FIX]: Fix deletion method for some fields of objects.
[FIX]: Contributions have been written in the standard format of the community.
[FIX]: Changes in the form to work as a real wizard.
[FIX]: Remove 'init_xml' keys, because it's no longer needed in v7.
[FIX]: Rename 'demo_xml' key to the new standard 'demo'.
[FIX]: Change imports calls.
[FIX]: Remove __author__ variables in files, because authors are put on manifest file (__openerp__.py).
[FIX]: Update view definitions to version 7.0
[FIX]: Rename variables to OpenERP standard.
[FIX]: Increased compatibility with standard PEP8.
[IMP]:  User Invitu add the method call _reopen to keep open the wizard.
[MRG]: User Invitu add frech language.
2020-01-08 15:50:20 -05:00
OCA-git-bot
2e9981cf06 [ADD] setup.py 2019-12-30 15:20:05 +00:00
oca-travis
884f33fd08 [UPD] Update account_move_line_purchase_info.pot 2019-12-30 15:05:35 +00:00
OCA-git-bot
2f106bb32d Merge PR #921 into 13.0
Signed-off-by AaronHForgeFlow
2019-12-30 14:56:37 +00:00
Adrià Gil Sorribes
f9b81917c3 [MIG] account_move_line_purchase_info: Migration to 13.0 2019-12-30 15:40:27 +01:00
Adrià Gil Sorribes
270d7e00a3 [IMP] account_move_line_purchase_info: black, isort 2019-12-24 09:09:12 +01:00
Rodrigo Macedo
cc0063cb5d Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (6 of 6 strings)

Translation: account-financial-tools-12.0/account-financial-tools-12.0-account_move_line_purchase_info
Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-12-0/account-financial-tools-12-0-account_move_line_purchase_info/pt_BR/
2019-12-24 09:08:48 +01:00
Pedro Castro Silva
76407b644c Translated using Weblate (Portuguese)
Currently translated at 100.0% (5 of 5 strings)

Translation: account-financial-tools-12.0/account-financial-tools-12.0-account_move_line_purchase_info
Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-12-0/account-financial-tools-12-0-account_move_line_purchase_info/pt/
2019-12-24 09:08:48 +01:00
OCA Transbot
05b4535c2e Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: account-financial-tools-12.0/account-financial-tools-12.0-account_move_line_purchase_info
Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-12-0/account-financial-tools-12-0-account_move_line_purchase_info/
2019-12-24 09:08:48 +01:00
oca-travis
9aca52ddd4 [UPD] Update account_move_line_purchase_info.pot 2019-12-24 09:08:48 +01:00
Jordi Ballester Alomar
424029c4a8 forward port latest changes from 11.0 2019-12-24 09:08:48 +01:00
OCA-git-bot
5878cea9ea [UPD] README.rst 2019-12-24 09:08:48 +01:00
Stéphane Bidoul (ACSONE)
78267c83ab [FIX] bump version account_move_line_purchase_info
To force wheel regeneration, because the
currently published wheel wrongly
depends on odoo12-addon-purchase_stock
which is a standard Odoo module.
2019-12-24 09:08:48 +01:00
Eduardo Aparicio
ef92d3305d Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (5 of 5 strings)

Translation: account-financial-tools-12.0/account-financial-tools-12.0-account_move_line_purchase_info
Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-12-0/account-financial-tools-12-0-account_move_line_purchase_info/pt_BR/
2019-12-24 09:08:48 +01:00
OCA Transbot
816ddf7ccc Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: account-financial-tools-12.0/account-financial-tools-12.0-account_move_line_purchase_info
Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-12-0/account-financial-tools-12-0-account_move_line_purchase_info/
2019-12-24 09:08:48 +01:00
oca-travis
6f51845d5c [UPD] Update account_move_line_purchase_info.pot 2019-12-24 09:08:48 +01:00
OCA-git-bot
4c075e2f63 [UPD] README.rst 2019-12-24 09:08:48 +01:00