- Aug 26, 2016
-
-
dut-odoo authored
* Archive isn't working properly because doesn't show elements of last day of the month in the wrong month Change the domain to take the good days.
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Pierre Masereel authored
It was impossible to pass from an archive to another because of the keep_query in the url generated that set multiple times the same argument in the url. Removing this allow to have a 'date_begin' and a 'date_end' corresponding to the selected archive.
-
Martin Trigaux authored
using the --uses-first parameter on msgmerge this time
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
Forward-port of dc975f3b which have been forgotten during previous commit
-
Richard deMeester authored
If a budget line has no analytic account id, the code is intentional about returning a value of 0 for it. It is possible, that in some cases, depending on the order of lines processed, the routine returns the previous value, as it does not initialise an important variable on each iteration of the loop. Closes #13303
-
Thibault Delavallée authored
This reverts commit c34972a2. Please check what you are doing or stop committing in official branches.
-
Jeremy Kersten authored
Add label for usability, didn't understand what was the date field e.g. Fix bug when no priority, 'priority' field was not submitted -> save function crash Fix bug textarea, if title_action is False, not textarea, so no field title_action submitted -> save function crash After this commit, we can click on save and it should work... No priority or 0 => 0 No title or "" => ""
-
Jeremy Kersten authored
/mail/view?model=blog.post&res_id=1 crash in 'res_id': self.id AttributeError: 'blog.post' object has no attribute '_ids'
-
Jeremy Kersten authored
Feedback: 10 is very few
-
Renato Lima authored
Account uses this field from purchase module, but account don't depend of purchase. Already done for sale_ok previously. See #13268 #315 #13271
-
Fabien Pinckaers authored
-
Fabien Pinckaers authored
-
Fabien Pinckaers authored
-
Fabien Pinckaers authored
-
Fabien Pinckaers authored
-
Josse Colpaert authored
-
Josse Colpaert authored
[FIX] mrp: use unit_factor when generating lots in work orders and make sure to generate lots when necessary When (re)generating the stock.move.lots in the workorder, it should use the unit_factor on the move like everywhere else. This makes sure we do well with the explosion of phantom boms too. It is also important that if there is no operation_id given explicitly in the "consumed in operation" on the bom line, that it still generates the necessary stock.move.lots in the last work order. Also, in the work order it is better to set the quantities done already. That way we don't forget to consume them.
-
Dhaval Suthar authored
* When an issue was set in stage that has a rating email template and that the project was set on 'rating when changing state', there was a warning with Failed to render template. There was a small error in a condition that fired exception.
-
Cédric Snauwaert authored
When a reconciliation creating an exchange rate entry was done, the newly account_move_line corresponding to the exchange entry was not given a full_reconcile_id. Also when doing a full reconciliation in different currency, full_reconcile_id was not set on account_partial_reconcile object resulting in problem when trying to unreconcile entries. This is a backward fix of commit: 9b5fed49 and cda132bb
-
- Aug 25, 2016
-
-
Nicolas Martinelli authored
Google made the use of an API key mandatory to use the "Google Static Maps API". The API key field will be created for the upcoming version. opw-686510
-
Christophe Simonis authored
-
Pierre Masereel authored
Due to a syntax error in the domain of product attachement a traceback was given.
-
Christophe Simonis authored
-
Yannick Tivisse authored
Merge branch 'saas-12-expense-fixes-yti' into saas-12
-
Yannick Tivisse authored
Review the subtypes =================== - Add a subtype for the paid expenses - Correct subtypes wording Prevent expense report for several employees ============================================ - Can add lines from every employee, leading to account issues (payable / receivable) Raise an error if you try to report several expenses for different employees Don't track onchanges on journal_id =================================== - Expense Sheet, click on Post Journal Entries: you have 2 produced messages, and one is strange (Journal Entry: * 1 ?) Remove useless message on chatter ================================= - Remove the message to say that the expense report has been validated by ... It's redundant as the visibility tracker already logs this change Remove unused method ==================== - 'refuse_expense_sheets' is declared but never used Log a link to the payment on chatter ==================================== Expense Sheet, click on Register Payment: you have a message containing the payment name (SUPP.OUT/2016/0001). Add a link to the form view. Expense duplication =================== Do not copy 'sheet_id' on duplication. It's wrong and has as secondary effect to duplicate the state too. Expense Report tree view ======================== Display correctly the widget monetary
-
Yannick Tivisse authored
New feature in mail module ========================== Currently, an email can be sent to an alias from: - Everyone - Authenticated Partners - Followers This commit is intended to add another category: Employees The main purpose of this new feature is to allow employees to send an email to an 'expense' alias in order to create automatically their expenses with their mobile phones. Use this new mechanism in hr_expense ==================================== Currenlty, we're overriding message_new to make a security check and create an expense if the sender is an employee or bounce otherwise, which is not the correct way to achieve this. A better way is to use the alias mechanism now that it has been extended to employees too. Don't hardcode email_from ========================= The email_from of the bounce email is hardcoded to "help@odoo.com". I am sure they will be happy to receive all answers from any odoo instance Review the bounce email content =============================== content: Your expense has not been created because your email address is not set on an employee or on a employee's user. Configure your employee's information correctly and try again. -> this is a message for the admin, not an employee or anyone else Now the content is generical for aliase defined for employees.
-
Yannick Tivisse authored
This is simply useless and the open door to spam. The inital goal for this option was to be able to create an expense from any email in the onboarding. It was even commented with 'Don't use this in production' which is another point to remove it. It is wrong because: - In a saas instance, the employee email = the admin email = the email you entered while filling the form. So, if the user sends an email with his phone, the expense will be created. If the user sends an email with another email address then the expense won't be created but he'll receive an automated email explaining that he should register his email address either on it's user information or on it's employee information (professional on employee, private on user for example). - With this modified behavior, if no email address is matching the sender email address the system will create an expense with the-first-employee-linked-to-an-user as employee, which is totally wrong. Furthermore, the guy that sent the email will not see the created expense because it hasn't been assigned to him. - Everyone can create expenses, I don't even imagine how fast we can overload the database with a huge pile of crap
-
Yannick Tivisse authored
-
Xavier Morel authored
Non-required selection fields and incorrectly updated fields (e.g. changed options but didn't fix existing values) trips KanbanSelection badly leading to the entire kanban view failing to appear: the rendering phase does not find the state in its states list and blows up when trying to access the state's class. Fix by adding a fallback default state with an empty class.
-
Martin Trigaux authored
To correct wrong %s translations. Fixes #13281
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Wolfgang Taferner authored
-
Martin Trigaux authored
When a pie chart has no grouping selected, the label was "undefined" (the javascript variable). Replace by the already translated string "Undefined". Fixes #13288
-
- Aug 24, 2016
-
-
Denis Ledoux authored
Exclude purchases invoices from the `invoiced` field of `crm.team`, as this count is meant to sum the invoiced - sales - order of a sales team. opw-686732
-