Commit Graph

461 Commits

Author SHA1 Message Date
Enric Tobella
c468ff1b6f Translated using Weblate (Spanish)
Currently translated at 98.0% (98 of 100 strings)

Translation: contract-11.0/contract-11.0-contract
Translate-URL: https://translation.odoo-community.org/projects/contract-11-0/contract-11-0-contract/es/
2020-07-13 17:02:57 +02:00
OCA Git Bot
63bb8a0383 [UPD] README.rst 2020-07-13 17:02:57 +02:00
Axel-G
b35141e861 Translated using Weblate (German)
Currently translated at 75.0% (75 of 100 strings)

Translation: contract-11.0/contract-11.0-contract
Translate-URL: https://translation.odoo-community.org/projects/contract-11-0/contract-11-0-contract/de/
2020-07-13 17:02:57 +02:00
oca-travis
f5345ca13d [UPD] Update contract.pot 2020-07-13 17:02:57 +02:00
mreficent
55d74ded63 [IMP] Make sure it works for sale and purchase contracts 2020-07-13 17:02:57 +02:00
Stefan Becker
f9cd8e8d61 [IMP] Add type to analytic account / contract 2020-07-13 17:02:57 +02:00
Axel-G
d5c29ef6e5 Translated using Weblate (German)
Currently translated at 53.0% (53 of 100 strings)

Translation: contract-11.0/contract-11.0-contract
Translate-URL: https://translation.odoo-community.org/projects/contract-11-0/contract-11-0-contract/de/
2020-07-13 17:02:57 +02:00
Roel Adriaans
9c970ffb1f Translated using Weblate (Dutch)
Currently translated at 96.0% (96 of 100 strings)

Translation: contract-11.0/contract-11.0-contract
Translate-URL: https://translation.odoo-community.org/projects/contract-11-0/contract-11-0-contract/nl/
2020-07-13 17:02:57 +02:00
Roel Adriaans
3500a8a9ec [IMP] Fix README.rst
Runbot URL in old README.rst pointed to 10.0 runbot,
fixed by upgrading template
2020-07-13 17:02:57 +02:00
oca-travis
1b64c0aac2 [UPD] Update contract.pot 2020-07-13 17:02:57 +02:00
Dmytro Katyukha
2a66630ce3 Rename account_analytic_*_line files
In previous commit changed inheritance order of
'account.analytic.*.line' models, thus classes and models were renamed.

This commit only renames files to temporary names.

This commit does not change file contents.
2020-07-13 17:02:57 +02:00
Dmytro Katyukha
663ca0dc2f [FIX] analytic invoice/contract lines inheritance
Bug description
---------------

`account.analytic.contract.line` inherits
`account.analytic.invoice.line`

`account.analytic.invoice.line` defines field `analytic_account_id`:
   - comodel='account.analytic.account'

`account.analytic.contract.line` redefines field `analytic_account_id`:
   - comodel='account.analytic.contract'

On attempt to extend `account.analytic.invoice.line` model adding
field that depends on `analytic_account_id.date_start`
Odoo fails to update, because it adds this field to
`account.analytic.contract.line` through inheritance,
and `account.analytic.contract` model have no this field.

What is done
------------

Change inheritance order:
- `account.analytic.invoice.line` inherits
`account.analytic.contract.line`
- no file renames at this stage (this wil be done in next commit)
2020-07-13 17:02:57 +02:00
Jon Erik Ceberio
791285d30c [IMP] contract: possible error in migration if the column does not exist 2020-07-13 17:02:57 +02:00
oca-travis
de0f5a461d [UPD] Update contract.pot 2020-07-13 17:02:57 +02:00
Carlos Dauden
a424795318 [FIX] contract: Custom values overwrited by xml, missed noupdate 2020-07-13 17:02:57 +02:00
OCA Transbot
507c7cc01d OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
953a9b12d2 [IMP] contract_variable_quantity: Recompute price when changing qty
If you have contract lines with automatic price and your pricelist
contains different prices per quantity, the price is not changed
when computing quantity.

This PR fixes this.
2020-07-13 17:02:57 +02:00
OCA Transbot
79e8619681 OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Carlos Dauden
416a05a259 [IMP] contract: Add extend existing invoice possibility 2020-07-13 17:02:57 +02:00
Levent Karakaş
edf06e1c8d [FIX] contract: Let billing users have access rights for contracts (#159) 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
b0778770c7 [IMP] contract: Automatic prices for lines 2020-07-13 17:02:57 +02:00
OCA Transbot
33f25e346a OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Carlos Dauden
96ac0aff95 [IMP+FIX] contract: Several things:
* [IMP] Add computed dates from/to period invoiced (#140)
* [IMP] Improve partner contract smartbutton
* [FIX] Onchange contract template raise error
* [FIX] Invalid pricelist name
2020-07-13 17:02:57 +02:00
OCA Transbot
01c0349524 OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
90796defb4 [FIX] contract: Correct references in the contract report 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
6f8364affe [FIX+IMP] contract: Real fix to company_id missing + improvements
* company_id was empty because an onchange, not inheritance nor visibility
* Added multi-company group to company_id fields
* Added multi-company access rule to contract templates
* Fix double %% in XML dates that was causing an error
* When creating a contract, recurring_invoices is set by default
2020-07-13 17:02:57 +02:00
Gustavo Orozco H
7443ce4fe6 [10.0][FIX] Correct domain attribute in field journal_id (#120)
* Correct domain attribute in field journal_id

Original domain includes unknown value company_id. Throws error when selecting the journal.

* Corregidos errores detectados por Lint

* Refactoring, DRY

* [FIX] Add missing field company_id to account_analytic_contract

* Small refactoring for company_id field
2020-07-13 17:02:57 +02:00
OCA Transbot
1765309c8e OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
f29a7152b2 [10.0][FIX+IMP] contract: Improve usability and don't fail on wrong data (#130)
* [FIX+IMP] contract: Improve usability and don't fail on wrong data

* Cron create invoices masked for avoiding silent errors
* New constraints for assuring data consistency
* UI helps for entering consistent data
* Spanish translation
* Remove double company_id field on form
2020-07-13 17:02:57 +02:00
OCA Transbot
a6c93ae1d7 OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
29ee016eae [IMP] contract: Menu position 2020-07-13 17:02:57 +02:00
Fekete Mihai
602be97a4d [MIG] contract: Migration to version 11.0 2020-07-13 17:02:57 +02:00
Pedro Castro Silva
03cf1336ba [IMP] contract: Add display sequence on contract lines (#119) 2020-07-13 17:02:57 +02:00
Carlos Dauden
c2f64438ac [IMP] contract: Module contract improvements (#107) 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
92d86a1a5a [FIX] contract: fix views assignment + improvement on tests + copyright in headers
**Be totally deterministic about which views to use**

Having a primary view that is not explicitly declared to be uses and w/o priority
makes Odoo to choose between one of them randomly (well, not exactly, but kind of),
so we put here which views to use.

I have also put tree view as primary and put a large priority for not being
selected on other actions that don't have this explicit views.

A friendly name in views is also assigned.

**Improvements in tests**

* Use SavepointCase for making the setup only once for all tests
* Make them inheritable, creating a base class with only the setup,
  so that it can be inherited without the need of executing all tests
  contained here each time you inherit it, and adding other class
  in the same module that inherits from the base class that actually
  performs the tests.
* Removed duplicated test method
2020-07-13 17:02:57 +02:00
Dave Lasley
55b57e7d23 [FIX] contract: Template lines handling (#92)
Update contract template lines handling to fix #80, and fix #59 #100
2020-07-13 17:02:57 +02:00
OCA Transbot
6a0e987711 OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
cubells
87fc4f1b66 [IMP][10.0] contract: Add report + send by mail (#86)
* [IMP][9.0] contract: Add report + send by mail

* Update translation and rename contract report

* Changes requested and translation updated
2020-07-13 17:02:57 +02:00
Dave Lasley
037c24a1a2 [FIX] contract: Operator issue in price get
* Add a default date in the instance that an analytic account doesn’t exist (templates) - fixes #68
2020-07-13 17:02:57 +02:00
OCA Transbot
5c1a916458 OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Andrea
6271435803 Add 'Date of Next Invoice' in contract list view 2020-07-13 17:02:57 +02:00
Dave Lasley
051c2b7550 [IMP][10.0] contract: Add templating (#42)
Add template functionality for contracts
2020-07-13 17:02:57 +02:00
OCA Transbot
fd369531f0 OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
27ce8702ad [MIG] contract: Migration to version 10.0 2020-07-13 17:02:57 +02:00
Carlos Dauden
fc00f8e531 [IMP] contract: Add past receipt type. Fix yearly. Add month last day 2020-07-13 17:02:57 +02:00
OCA Transbot
ced0659900 OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Pedro M. Baeza
55eddbeecc [IMP+FIX] contract: Better README + category + assign contract unconditionally 2020-07-13 17:02:57 +02:00
carlosdauden
ee4393e3be [9.0][IMP] contract: Get default invoice contact. (#32) 2020-07-13 17:02:57 +02:00
OCA Transbot
bc6d39c6f8 OCA Transbot updated translations from Transifex 2020-07-13 17:02:57 +02:00
Carlos Incaser
08ffee2c82 [MIG] contract: from v7 to v9 improving features
* Tests added
* Filters added.
* Add _id/_ids in old property fields
* Translations
2020-07-13 17:02:57 +02:00