maciej-wichowski
maciej-wichowski
Replace non-existent `name` and `Name` attributes in field declarations to `string`. Fixes field labels and log warnings: ``` 2024-09-12 13:49:38,055 570 WARNING x odoo.fields: Field res.config.settings.display_discount_with_tax: unknown parameter 'Name', if...
Correct taxes computation according to fiscal position: * Add `fiscal_position_id` into form view * Add `onchange` method to properly recompute taxes after fiscal position change Somehow associated PR #2416 Fixes...
Backporting a fix from 14.0 migration. This PR is made according to [closed PR](https://github.com/OCA/sale-workflow/pull/2230) and related with issue #2228 , since it appears to be abandoned.
1. Improve `encode_parameters` method, so it processes dict parameters correctly. Here API expects multi-level dict to be expressed as `key[sub1]=val1&key[sub2]=val2`. The method supports only one level sub-dict, which as far...
When executing `route_v8`, `avoid`, `exclude` and `truck` parameters are ignored. 1. Only first key from argument dict is taken from those arguments [[1](https://github.com/abdullahselek/HerePy/blob/a8f1b580482fbd88d9e6660cf17cc4c63407f279/herepy/routing_api.py#L460)], [[2](https://github.com/abdullahselek/HerePy/blob/a8f1b580482fbd88d9e6660cf17cc4c63407f279/herepy/routing_api.py#L466)], [[3](https://github.com/abdullahselek/HerePy/blob/a8f1b580482fbd88d9e6660cf17cc4c63407f279/herepy/routing_api.py#L480)] 2. Arguments are formatted incorrectly....
Based on issue #855 Modules introduced here will extend functionality of `website_sale_hide_price` to fit into wishlist feature. Besides `website_sale_hide_price_wishlist`, I'm introducing `website_sale_stock_hide_price_wishlist`, so "Add to cart" buttons are hidden in...
Code refactoring made with purpose of making the module easier to extend. Since `xlsxwriter` is "write only" library, there was no way to easily change the properties of printed table....
`price` field in `product.pricelist.item` is computed and provides description of applied price rules. The description computation is based on applied formula and options chosen in `compute_price` field. `product_pricelist_supplierinfo` adds new...