Archives
- By thread 1472
-
By date
- August 2019 59
- September 2019 118
- October 2019 165
- November 2019 97
- December 2019 35
- January 2020 58
- February 2020 204
- March 2020 121
- April 2020 172
- May 2020 50
- June 2020 158
- July 2020 85
- August 2020 94
- September 2020 193
- October 2020 277
- November 2020 100
- December 2020 159
- January 2021 38
- February 2021 87
- March 2021 146
- April 2021 73
- May 2021 90
- June 2021 86
- July 2021 123
- August 2021 50
- September 2021 68
- October 2021 66
- November 2021 74
- December 2021 75
- January 2022 98
- February 2022 77
- March 2022 68
- April 2022 31
- May 2022 59
- June 2022 87
- July 2022 141
- August 2022 38
- September 2022 73
- October 2022 152
- November 2022 39
- December 2022 50
- January 2023 93
- February 2023 49
- March 2023 106
- April 2023 47
- May 2023 69
- June 2023 92
- July 2023 64
- August 2023 103
- September 2023 91
- October 2023 101
- November 2023 94
- December 2023 46
- January 2024 75
- February 2024 79
- March 2024 104
- April 2024 63
- May 2024 40
- June 2024 160
- July 2024 80
- August 2024 70
- September 2024 62
- October 2024 121
- November 2024 117
- December 2024 89
- January 2025 59
- February 2025 104
- March 2025 96
- April 2025 107
- May 2025 52
- June 2025 72
- July 2025 60
- August 2025 81
- September 2025 124
- October 2025 63
- November 2025 57
- December 2025 33
- January 2026 63
- February 2026 48
Contributors
contributors@odoo-community.org
-
Advanced(?) use of calendar view in 13.0
Hello,
we use calendar view for displaying project tasks using color="user_id" - standard thing. However we have created an additional field on project.task that is Many2one reference to assistant (a second guy that participates in the task).
Now I would like to achieve these 2 things but no amount of searching helped me in any way:
1) When selecting a user_id checkobox on the right be able to display also tasks where that user is an assistant. Is it possible somehow?
2) Cutomize the content of the entry (task) box. It only shows name, all the configured attributes appear in that popup box tha tappears on the click like this:
Whereas in 12.0 you had all the information inside the box:
Can I achieve something similar? I want to have additional visual information present on the record, not just name.
Thank you very much. Best regards
Radovan Skolnik
by Radovan Skolnik - 12:55 - 1 Dec 2020-
Re: Advanced(?) use of calendar view in 13.0
Remi, I pulled off the first part - great idea. However for the second part it seems to me you are reffering to v12.0 where this was possible. It doesn't seem to work for me in v13.0. If I add any attribute before or after name it only shows in the popup that appears after clicking on task. Best regards Radovan On piatok 4. decembra 2020 19:25:50 CET Rémi CAZENAVE - Le Filament wrote: > Hi Radovan, > > You might be able to do that without having to change JS part. > > 1) You should be able to create a new computer many2many field linking > task with res_users containing both user_id and assistant_id, let's call > it involved_ids > > Then you should be able to add this involved_ids field in the calendar > view (like done on partner_ids in calendar.event) > > > 2) You should add the fields you want in calendar type view > (project.view_task_calendarin that case I guess before or after name > field), in case you also want to update the popup, you may need to add > /readonly_form_view_id/||attribute to your calendar view. > > > We have been implementing quite a few changes on calendar for one of our > customer > (https://sources.le-filament.com/lefilament/cgscop/cgscop_calendar), > together with management of resource > (https://sources.le-filament.com/lefilament/cgscop/cgscop_resource). > This customer also needed a per resource / per user view so we needed to > implement fullcalendar premium library through this module : > https://sources.le-filament.com/lefilament/cgscop/cgscop_fullcalendar > (in case one would like to reuse that, you would need to check the > license at http://fullcalendar.io/scheduler/license since GPL-3 is only > valid for open-source projects) > > Best Regards, > > > Le Filament > Rémi CAZENAVE > ------ > SCOP LE FILAMENT > > Le 01/12/2020 à 12:57, Radovan Skolnik a écrit : > > Hello, > > > > we use calendar view for displaying project tasks using > > color="user_id" - standard thing. However we have created an > > additional field on project.task that is Many2one reference to > > assistant (a second guy that participates in the task). > > > > Now I would like to achieve these 2 things but no amount of searching > > helped me in any way: > > > > 1) When selecting a user_id checkobox on the right be able to display > > also tasks where that user is an assistant. Is it possible somehow? > > > > 2) Cutomize the content of the entry (task) box. It only shows name, > > all the configured attributes appear in that popup box tha tappears on > > the click like this: > > > > Whereas in 12.0 you had all the information inside the box: > > > > Can I achieve something similar? I want to have additional visual > > information present on the record, not just name. > > > > Thank you very much. Best regards > > > > Radovan Skolnik > > > > _______________________________________________ > > Mailing-List: https://odoo-community.org/groups/contributors-15 > > Post to: mailto:contributors@odoo-community.org > > Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 03:06 - 8 Dec 2020 -
Re: Advanced(?) use of calendar view in 13.0
Hi Radovan,
You might be able to do that without having to change JS part.
1) You should be able to create a new computer many2many field linking task with res_users containing both user_id and assistant_id, let's call it involved_ids
Then you should be able to add this involved_ids field in the calendar view (like done on partner_ids in calendar.event)
2) You should add the fields you want in calendar type view (project.view_task_calendar in that case I guess before or after name field), in case you also want to update the popup, you may need to add readonly_form_view_id
attribute to your calendar view.
We have been implementing quite a few changes on calendar for one of our customer (https://sources.le-filament.com/lefilament/cgscop/cgscop_calendar), together with management of resource (https://sources.le-filament.com/lefilament/cgscop/cgscop_resource). This customer also needed a per resource / per user view so we needed to implement fullcalendar premium library through this module : https://sources.le-filament.com/lefilament/cgscop/cgscop_fullcalendar (in case one would like to reuse that, you would need to check the license at http://fullcalendar.io/scheduler/license since GPL-3 is only valid for open-source projects)
Best Regards,

Rémi CAZENAVE
------
SCOP LE FILAMENTLe 01/12/2020 à 12:57, Radovan Skolnik a écrit :
Hello,
we use calendar view for displaying project tasks using color="user_id" - standard thing. However we have created an additional field on project.task that is Many2one reference to assistant (a second guy that participates in the task).
Now I would like to achieve these 2 things but no amount of searching helped me in any way:
1) When selecting a user_id checkobox on the right be able to display also tasks where that user is an assistant. Is it possible somehow?
2) Cutomize the content of the entry (task) box. It only shows name, all the configured attributes appear in that popup box tha tappears on the click like this:
Whereas in 12.0 you had all the information inside the box:
Can I achieve something similar? I want to have additional visual information present on the record, not just name.
Thank you very much. Best regards
Radovan Skolnik
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Rémi Cazenave - 07:26 - 4 Dec 2020 -
Re: Advanced(?) use of calendar view in 13.0
Axel,sure, i started looking into it but wanted to know if somebody did something like that or get some pointers.Best regardsRadovanSent via BlackBerry Hub+ Inbox for AndroidFrom: aekroft@gmail.comSent: 4 December 2020 18:02To: contributors@odoo-community.orgReply to: contributors@odoo-community.orgSubject: Re: Advanced(?) use of calendar view in 13.0
RadovanNothing is impossible, it could be done but you will need to have some custom development in place to make the described behavior working. I haven't seen anything already done in that way but it wouldn't take too long to get it working if you know how to move with the Odoo JS extensions and have a little deep knowledge of how Odoo JS Framework worksBest RegardsMsc. Axel Mendoza PupoOn Fri, Dec 4, 2020 at 4:36 AM Radovan Skolnik <radovan@skolnik.info> wrote:No ideas for this? Is it impossible or am I asking really stupid question here and answer is obvious? Any alternatives - for example using web_timeline view? Thank you. Best regards Radovan On utorok 1. decembra 2020 12:54:22 CET Radovan Skolnik wrote: > Hello, > > we use calendar view for displaying project tasks using color="user_id" - > standard thing. However we have created an additional field on
project.task > that is Many2one reference to assistant (a second guy that participates in > the task). > > Now I would like to achieve these 2 things but no amount of searching helped > me in any way: > > 1) When selecting a user_id checkobox on the right be able to display also > tasks where that user is an assistant. Is it possible somehow? > > 2) Cutomize the content of the entry (task) box. It only shows name, all the > configured attributes appear in that popup box tha tappears on the click > like this: > > Whereas in 12.0 you had all the information inside the box: > > > Can I achieve something similar? I want to have additional visual > information present on the record, not just name. > > Thank you very much. Best regards > > Radovan Skolnik _______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 06:16 - 4 Dec 2020 -
Re: Advanced(?) use of calendar view in 13.0
RadovanNothing is impossible, it could be done but you will need to have some custom development in place to make the described behavior working. I haven't seen anything already done in that way but it wouldn't take too long to get it working if you know how to move with the Odoo JS extensions and have a little deep knowledge of how Odoo JS Framework worksBest RegardsMsc. Axel Mendoza PupoOn Fri, Dec 4, 2020 at 4:36 AM Radovan Skolnik <radovan@skolnik.info> wrote:No ideas for this? Is it impossible or am I asking really stupid question here and answer is obvious? Any alternatives - for example using web_timeline view? Thank you. Best regards Radovan On utorok 1. decembra 2020 12:54:22 CET Radovan Skolnik wrote: > Hello, > > we use calendar view for displaying project tasks using color="user_id" - > standard thing. However we have created an additional field on project.task > that is Many2one reference to assistant (a second guy that participates in > the task). > > Now I would like to achieve these 2 things but no amount of searching helped > me in any way: > > 1) When selecting a user_id checkobox on the right be able to display also > tasks where that user is an assistant. Is it possible somehow? > > 2) Cutomize the content of the entry (task) box. It only shows name, all the > configured attributes appear in that popup box tha tappears on the click > like this: > > Whereas in 12.0 you had all the information inside the box: > > > Can I achieve something similar? I want to have additional visual > information present on the record, not just name. > > Thank you very much. Best regards > > Radovan Skolnik
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Axel Mendoza - 06:01 - 4 Dec 2020 -
Re: Advanced(?) use of calendar view in 13.0
No ideas for this? Is it impossible or am I asking really stupid question here and answer is obvious? Any alternatives - for example using web_timeline view? Thank you. Best regards Radovan On utorok 1. decembra 2020 12:54:22 CET Radovan Skolnik wrote: > Hello, > > we use calendar view for displaying project tasks using color="user_id" - > standard thing. However we have created an additional field on project.task > that is Many2one reference to assistant (a second guy that participates in > the task). > > Now I would like to achieve these 2 things but no amount of searching helped > me in any way: > > 1) When selecting a user_id checkobox on the right be able to display also > tasks where that user is an assistant. Is it possible somehow? > > 2) Cutomize the content of the entry (task) box. It only shows name, all the > configured attributes appear in that popup box tha tappears on the click > like this: > > Whereas in 12.0 you had all the information inside the box: > > > Can I achieve something similar? I want to have additional visual > information present on the record, not just name. > > Thank you very much. Best regards > > Radovan Skolnik
by Radovan Skolnik - 10:35 - 4 Dec 2020
-
-
Mail cc
Hi all,AFAIK there isn't a generic approach to send mail with CC instead of A, or I miss something?The use case would be something like: if a mail is sent to 1 recipient, go with A. If there are multiple recipients, 1 go with A and the other with CC.So an 'integrated' logic, without user intervention (except to optionally change the A recipient, or something other).Thanks in advance!Sergio Corato
by Sergio Corato - 10:46 - 1 Dec 2020-
Re: Mail cc
On Wed, 17 Mar 2021 at 11:17, Lorenzo Battistini <elbaddy@gmail.com> wrote:I am interested!On Sun, 27 Dec 2020 at 22:47, Rafael Blasco <rblasco@rbnpro.com> wrote:Hello,
I would recommend as best approach this one: https://github.com/sygel-technology/sy-server-backend/tree/12.0/mail_show_follower
I’m sure Valentin can propose this module to OCA if there is interest.
Regards,
Rafael
De: Sergio Corato <sergiocorato@gmail.com>
Enviado el: martes, 1 de diciembre de 2020 10:47
Para: Contributors <contributors@odoo-community.org>
Asunto: Mail ccHi all,
AFAIK there isn't a generic approach to send mail with CC instead of A, or I miss something?
The use case would be something like: if a mail is sent to 1 recipient, go with A. If there are multiple recipients, 1 go with A and the other with CC.
So an 'integrated' logic, without user intervention (except to optionally change the A recipient, or something other).
Thanks in advance!
Sergio Corato
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Lorenzo Battistini
https://github.com/eLBati
--Lorenzo Battistini
https://github.com/eLBati
by Lorenzo Battistini. - 03:40 - 18 May 2021 -
Re: Mail cc
I am interested!On Sun, 27 Dec 2020 at 22:47, Rafael Blasco <rblasco@rbnpro.com> wrote:Hello,
I would recommend as best approach this one: https://github.com/sygel-technology/sy-server-backend/tree/12.0/mail_show_follower
I’m sure Valentin can propose this module to OCA if there is interest.
Regards,
Rafael
De: Sergio Corato <sergiocorato@gmail.com>
Enviado el: martes, 1 de diciembre de 2020 10:47
Para: Contributors <contributors@odoo-community.org>
Asunto: Mail ccHi all,
AFAIK there isn't a generic approach to send mail with CC instead of A, or I miss something?
The use case would be something like: if a mail is sent to 1 recipient, go with A. If there are multiple recipients, 1 go with A and the other with CC.
So an 'integrated' logic, without user intervention (except to optionally change the A recipient, or something other).
Thanks in advance!
Sergio Corato
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Lorenzo Battistini
https://github.com/eLBati
by Lorenzo Battistini. - 11:21 - 17 Mar 2021 -
RE: Mail cc
Hello,
I would recommend as best approach this one: https://github.com/sygel-technology/sy-server-backend/tree/12.0/mail_show_follower
I’m sure Valentin can propose this module to OCA if there is interest.
Regards,
Rafael
De: Sergio Corato <sergiocorato@gmail.com>
Enviado el: martes, 1 de diciembre de 2020 10:47
Para: Contributors <contributors@odoo-community.org>
Asunto: Mail ccHi all,
AFAIK there isn't a generic approach to send mail with CC instead of A, or I miss something?
The use case would be something like: if a mail is sent to 1 recipient, go with A. If there are multiple recipients, 1 go with A and the other with CC.
So an 'integrated' logic, without user intervention (except to optionally change the A recipient, or something other).
Thanks in advance!
Sergio Corato
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Rafael Blasco (Moduon) - 10:46 - 27 Dec 2020 -
Re: Mail cc
Thanks all!@Vincent: this is the worst problem, it should never happen@Raphaël: simple and direct approach, I'll try it!Sergio CoratoIl giorno mar 1 dic 2020 alle ore 15:41 Raphaël Reverdy <raphael.reverdy@akretion.com> ha scritto:Hi,You can have a look to this experimental module in v10 https://github.com/akretion/odoo-usability/tree/10.0-ADD-mail_single_send_several_recipients/mail_single_send_several_recipientsRegardsLe mar. 1 déc. 2020 à 12:02, Antonio M. Vigliotti (gmail) <antoniomaria.vigliotti@gmail.com> a écrit :I agree.
Il 01/12/20 10:47, Sergio Corato ha scritto:
Hi all,
AFAIK there isn't a generic approach to send mail with CC instead of A, or I miss something?
The use case would be something like: if a mail is sent to 1 recipient, go with A. If there are multiple recipients, 1 go with A and the other with CC.
So an 'integrated' logic, without user intervention (except to optionally change the A recipient, or something other).
Thanks in advance!
Sergio Corato
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Sergio Corato - 08:51 - 2 Dec 2020 -
Re: Mail cc
Hi,You can have a look to this experimental module in v10 https://github.com/akretion/odoo-usability/tree/10.0-ADD-mail_single_send_several_recipients/mail_single_send_several_recipientsRegardsLe mar. 1 déc. 2020 à 12:02, Antonio M. Vigliotti (gmail) <antoniomaria.vigliotti@gmail.com> a écrit :I agree.
Il 01/12/20 10:47, Sergio Corato ha scritto:
Hi all,
AFAIK there isn't a generic approach to send mail with CC instead of A, or I miss something?
The use case would be something like: if a mail is sent to 1 recipient, go with A. If there are multiple recipients, 1 go with A and the other with CC.
So an 'integrated' logic, without user intervention (except to optionally change the A recipient, or something other).
Thanks in advance!
Sergio Corato
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Raphaël Reverdy - 03:41 - 1 Dec 2020
-
-
Decrease invoiced quantities on Sale Order when credit note validated
Dear all,
I just discovered that when creating a credit note on an invoice generated from a sale order, the invoiced quantities would not decrease on sale order.
Therefore if I need to invoice these again, I need to artificially increase delivered or ordered quantities (depending on product invoicing policy configuration), causing side effects on sales analysis.
Has any of you find a way to workaround this issue ?
This problem seems to be present up to v12, not anymore on v13 and v14.
I have found https://github.com/odoo/odoo/issues/37549 on this topic but without much feedback.
Thank you,
Best Regards,
--

Rémi CAZENAVE
------
SCOP LE FILAMENT
by Rémi Cazenave - 03:06 - 25 Nov 2020-
Re: Decrease invoiced quantities on Sale Order when credit note validated
Hi,If the credit comes from the sale then in general the sale is affected. Otherwise if it is created from the invoice it isn't.It is too problematic to do any other way IMO. Especially if stock is involved. I mean generally, if you follow a basic guideline for Sales depending on policy that Invoiced means Ordered = Invoiced or Delivered > 0 and Delivered = Invoiced then the relevant Credits and Invoices can always be created from the Sale using Create Invoice button there is no need and in fact it is detrimental for the Invoice Refund button to affect the sale..From memory the Credit Note options are something like.Draft Refund - very often these should have no effect on invoiced qty as they can be simply price adjustments.Modify - well now you have 2 problems. Because also the newly created invoice also won't affect the sale. If it is just a price adjustment similar to above then it won't matter.Cancel - I just can't think of a reasonable use case to reduce the sale invoiced quantity without also having to affect stock. In any case Cancel is just shorthand for Create Draft Refund -> Validate.If I double invoiced something and need to issue a credit note, and the sale invoiced quantities are wrong then Create Invoice in sale is the correct method.If goods were returned, then create refund in the return picking wizard will decrement the delivered quantities and again Create Invoice.On Thu, Nov 26, 2020 at 11:17 PM Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:I would say that it's decreased if you select option 2 or 3 of the credit note, but not on option 1 (draft refund).Regards._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Graeme Gellatly - 01:26 - 30 Nov 2020 -
Re: Decrease invoiced quantities on Sale Order when credit note validated
Thanks Pedro,
that's also what I would have expected but none of the option lead to a decrease of invoiced quantities on sale order...
I think this is probably because account_invoice_line(s) created on credit note from original invoice do not copy all related fields and in particular do not keep the link with sale_order_lines.But still I would need to workaround this behaviour !
Has anyone solved this ? (on Odoo version 12.0 or previous ones)

Rémi CAZENAVE
------
SCOP LE FILAMENT
06.87.23.26.04
remi@le-filament.comLe 26/11/2020 à 11:17, Pedro M. Baeza (Tecnativa) a écrit :
I would say that it's decreased if you select option 2 or 3 of the credit note, but not on option 1 (draft refund).
Regards.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Rémi Cazenave - 12:31 - 26 Nov 2020 -
Re: Decrease invoiced quantities on Sale Order when credit note validated
I would say that it's decreased if you select option 2 or 3 of the credit note, but not on option 1 (draft refund).Regards.
by Pedro M. Baeza - 11:16 - 26 Nov 2020
-
-
OCA rental solution and rental vertical repository request
Hello everybody, this year we have been busy implementing a complete rental solution based on Odoo CE v12 and lots of OCA modules for a German customer. It is already in production use since July. We explicitly agreed on contributing all the code to the OCA, but due to COVID-19 restrictions and several personal complications this work was considerably delayed. We already asked in March this year for a repository to check-in all the code directly at OCA, but IIRC there was not much interest back then. Ben Brich was also involved in the design and implementation of parts of the code, and Frederik Kramer should know about it, too. The solution we have has been designed for a German customer business renting large machines and vehicles, but it should be useful for other lines of business as well. Considerable efforts have been invested to make it really useful from the pragmatic point of view of the customer. There is a short presentation video at Youtube: --> https://www.youtube.com/watch?v=CzO5NqgJWD0 Currently we've got 31 modules for rental extensions and 3 for shipment extensions based on a module that was present on Odoo v8: rental_base/ rental_contract/ rental_contract_insurance/ rental_contract_month/ rental_contract_toll_collect/ rental_forward_shipment_plan/ rental_loan/ rental_menu_crm/ rental_offday/ rental_pricelist/ rental_product_instance/ rental_product_instance_appointment/ rental_product_instance_repair/ rental_product_insurance/ rental_product_pack/ rental_product_set/ rental_product_variant/ rental_purchase_order_type/ rental_quality_control/ rental_repair/ rental_reporting/ rental_routing/ rental_sale/ rental_timeline/ rental_timeline_offday/ rental_timeline_product_instance/ rental_timeline_product_instance_appointment/ rental_timeline_product_variant/ rental_timeline_repair/ rental_timeline_transport/ rental_toll_collect/ shipment_plan/ shipment_plan_rental/ shipment_plan_sale/ Base for the work is the module sale_rental from the sale-workflow repository; it has been renamed in our code as rental_sale with some slight modifications in order to avoid conflicts when using code from both repositories. All other rental modules above are new. We've synchronized the code to a Github repository now at https://github.com/elego/rental-vertical/tree/v12 where you can inspect it. It is still missing some documentation and the test coverage is only at 73% so there is still room for improvements. We're going to continue to work on that, but would also like your opinions an comments on everything. We're using the v12 branch as internal integration branch there and could merge from there to an 'official' 12.0 branch now and then. The structure of everything should be according to the OCA conventions as far as we know and understand them; some adaptations may of course be necessary. Please let us know how to proceed with contributing this code to the OCA. I think it should be fit at least for an alpha-status in a new repo. Greetings from Berlin, Olaf -- Olaf Wagner -- elego Software Solutions GmbH -- http://www.elegosoft.com Gustav-Meyer-Allee 25 / Gebäude 12, 13355 Berlin, Germany Geschäftsführer: Olaf Wagner | Sitz: Berlin Handelregister: Amtsgericht Charlottenburg HRB 77719 | USt-IdNr: DE163214194
by Olaf Wagner <wagner@elegosoft.com> - 12:46 - 24 Nov 2020-
Re: OCA rental solution and rental vertical repository request
Olaf,I think something has been miscommunicated. Talk to Frederik, but as far as I knew if not approved, it was already way down that track. Better to pick that up than restart. I think the main issue was just resolving a conflict with the existing repository.On Wed, 25 Nov 2020, 12:47 am Olaf Wagner, <wagner@elegosoft.com> wrote:Hello everybody, this year we have been busy implementing a complete rental solution based on Odoo CE v12 and lots of OCA modules for a German customer. It is already in production use since July. We explicitly agreed on contributing all the code to the OCA, but due to COVID-19 restrictions and several personal complications this work was considerably delayed. We already asked in March this year for a repository to check-in all the code directly at OCA, but IIRC there was not much interest back then. Ben Brich was also involved in the design and implementation of parts of the code, and Frederik Kramer should know about it, too. The solution we have has been designed for a German customer business renting large machines and vehicles, but it should be useful for other lines of business as well. Considerable efforts have been invested to make it really useful from the pragmatic point of view of the customer. There is a short presentation video at Youtube: --> https://www.youtube.com/watch?v=CzO5NqgJWD0 Currently we've got 31 modules for rental extensions and 3 for shipment extensions based on a module that was present on Odoo v8: rental_base/ rental_contract/ rental_contract_insurance/ rental_contract_month/ rental_contract_toll_collect/ rental_forward_shipment_plan/ rental_loan/ rental_menu_crm/ rental_offday/ rental_pricelist/ rental_product_instance/ rental_product_instance_appointment/ rental_product_instance_repair/ rental_product_insurance/ rental_product_pack/ rental_product_set/ rental_product_variant/ rental_purchase_order_type/ rental_quality_control/ rental_repair/ rental_reporting/ rental_routing/ rental_sale/ rental_timeline/ rental_timeline_offday/ rental_timeline_product_instance/ rental_timeline_product_instance_appointment/ rental_timeline_product_variant/ rental_timeline_repair/ rental_timeline_transport/ rental_toll_collect/ shipment_plan/ shipment_plan_rental/ shipment_plan_sale/ Base for the work is the module sale_rental from the sale-workflow repository; it has been renamed in our code as rental_sale with some slight modifications in order to avoid conflicts when using code from both repositories. All other rental modules above are new. We've synchronized the code to a Github repository now at https://github.com/elego/rental-vertical/tree/v12 where you can inspect it. It is still missing some documentation and the test coverage is only at 73% so there is still room for improvements. We're going to continue to work on that, but would also like your opinions an comments on everything. We're using the v12 branch as internal integration branch there and could merge from there to an 'official' 12.0 branch now and then. The structure of everything should be according to the OCA conventions as far as we know and understand them; some adaptations may of course be necessary. Please let us know how to proceed with contributing this code to the OCA. I think it should be fit at least for an alpha-status in a new repo. Greetings from Berlin, Olaf -- Olaf Wagner -- elego Software Solutions GmbH -- http://www.elegosoft.com Gustav-Meyer-Allee 25 / Gebäude 12, 13355 Berlin, Germany Geschäftsführer: Olaf Wagner | Sitz: Berlin Handelregister: Amtsgericht Charlottenburg HRB 77719 | USt-IdNr: DE163214194
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Graeme Gellatly - 07:41 - 24 Nov 2020
-
-
OCA Board Member/Financial Auditors campaign extension - DATES
Hello OCA Contributors,--
I just wanted to let you know the Board Member and Financial Auditor campaigns have been extended, here are the new timelines:- Applications close on Friday 27th November
- Voting commences Sunday 29th November
- Voting closes Monday 7th December
- Announcement of new Board members and Financial Auditors Tuesday 8th December
- New Board mandate commences 1st January 2021
If you did want to apply as a Financial Auditor the link is below:Please get in touch with any questions,
Warm regards,
RebeccaRebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 12:16 - 24 Nov 2020 -
How-to for alias and catchall with multicompanies
Hi community,We want to configure and use the catchall and aliases in multi-companies with a Odoo CE v12.
I searched in https://github.com/OCA/multi-company and https://www.odoo-code-search.com/ without success (or I searched badly ;-)
Do you know addons or advice to set and use it as well with multi multi-companies context:
- Company "ABC" , a domain name "ABC.com" and a catchall like "catchall@ABC.com" with specific user and incoming server settings in Odoo,
- Company "XYZ" and domain name "XYZ.com" and a catchall like "catchall@XYZ.com" with specific user and incoming server settings in Odoo
By default, the 'mail.catchall' key in ir.config_parameter seems ignore multicompanies.
Thank your for your help and advices!
Have a nice day ;-)
Bruno Joliveau - Architecte applications - PrésidentNUMIGI SOLUTIONS INC.(514) 317-7944Longueuil, Québec, Canada
by Bruno Joliveau - 12:41 - 22 Nov 2020-
Re: How-to for alias and catchall with multicompanies
Hello BrunoWe worked 3 days about this module with tests.Don’t hesitate to call me if you want ;)Have a nice day.
—
Sébastien LANGE Directeur / CEO Subteno IT Tél.: +33 (0)2 33 31 22 10 Adresse: 27 Avenue Jean Mantelet, 61000 Alençon Web: www.subteno-it.com Mail: sla@subteno-it.com Le 23 nov. 2020 à 00:17, Bruno Joliveau <bruno.joliveau@numigi.com> a écrit :
Thank you @Ricardo for the link to forum. My issue mainly based on ingoing email ;-)@Sebastien : Do you know the ETA about your module?Have a nive day!PS: I share you first snow falls from Canada ;-) All best!
Bruno Joliveau - Architecte applications - PrésidentNUMIGI SOLUTIONS INC.(514) 317-7944Longueuil, Québec, CanadaLe dim. 22 nov. 2020 à 14:22, Ricardo Gross <rwgross@gmail.com> a écrit :Hi
I asked a similar question on the forum last year and received the following solution as an answer: https://www.odoo.com/de_DE/forum/hilfe-1/multi-email-servers-154379
BR
Ricardo Gross
Von: "Sébastien LANGE (Subteno IT)"
Gesendet: Sonntag, 22. November 2020 11:27
An: Contributors
Betreff: Re: How-to for alias and catchall with multicompaniesHello Bruno,
I created a module to do that but in Odoo Enterprise 12.0. This module is not in production but after validate by my customer, we could push to GitHub if we want.
Have a nice day,
—

Sébastien LANGE
Directeur / CEO
Subteno IT
Tél.:
+33 (0)2 33 31 22 10
Adresse:
Web:
Mail:
Le 22 nov. 2020 à 00:42, Bruno Joliveau <bruno.joliveau@numigi.com> a écrit :
Hi community,
We want to configure and use the catchall and aliases in multi-companies with a Odoo CE v12.
I searched in https://github.com/OCA/multi-company and https://www.odoo-code-search.com/ without success (or I searched badly ;-)
Do you know addons or advice to set and use it as well with multi multi-companies context:
- Company "ABC" , a domain name "ABC.com" and a catchall like "catchall@ABC.com" with specific user and incoming server settings in Odoo,
- Company "XYZ" and domain name "XYZ.com" and a catchall like "catchall@XYZ.com" with specific user and incoming server settings in Odoo
By default, the 'mail.catchall' key in ir.config_parameter seems ignore multicompanies.
Thank your for your help and advices!
Have a nice day ;-)
Bruno Joliveau - Architecte applications - Président
NUMIGI SOLUTIONS INC.
(514) 317-7944
Longueuil, Québec, Canada
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by "Sébastien LANGE (Subteno IT)" <sla@subteno-group.com> - 07:16 - 23 Nov 2020 -
Re: How-to for alias and catchall with multicompanies
Thank you @Ricardo for the link to forum. My issue mainly based on ingoing email ;-)@Sebastien : Do you know the ETA about your module?Have a nive day!PS: I share you first snow falls from Canada ;-) All best!
Bruno Joliveau - Architecte applications - PrésidentNUMIGI SOLUTIONS INC.(514) 317-7944Longueuil, Québec, CanadaLe dim. 22 nov. 2020 à 14:22, Ricardo Gross <rwgross@gmail.com> a écrit :Hi
I asked a similar question on the forum last year and received the following solution as an answer: https://www.odoo.com/de_DE/forum/hilfe-1/multi-email-servers-154379
BR
Ricardo Gross
Von: "Sébastien LANGE (Subteno IT)"
Gesendet: Sonntag, 22. November 2020 11:27
An: Contributors
Betreff: Re: How-to for alias and catchall with multicompaniesHello Bruno,
I created a module to do that but in Odoo Enterprise 12.0. This module is not in production but after validate by my customer, we could push to GitHub if we want.
Have a nice day,
—

Sébastien LANGE
Directeur / CEO
Subteno IT
Tél.:
+33 (0)2 33 31 22 10
Adresse:
Web:
Mail:
Le 22 nov. 2020 à 00:42, Bruno Joliveau <bruno.joliveau@numigi.com> a écrit :
Hi community,
We want to configure and use the catchall and aliases in multi-companies with a Odoo CE v12.
I searched in https://github.com/OCA/multi-company and https://www.odoo-code-search.com/ without success (or I searched badly ;-)
Do you know addons or advice to set and use it as well with multi multi-companies context:
- Company "ABC" , a domain name "ABC.com" and a catchall like "catchall@ABC.com" with specific user and incoming server settings in Odoo,
- Company "XYZ" and domain name "XYZ.com" and a catchall like "catchall@XYZ.com" with specific user and incoming server settings in Odoo
By default, the 'mail.catchall' key in ir.config_parameter seems ignore multicompanies.
Thank your for your help and advices!
Have a nice day ;-)
Bruno Joliveau - Architecte applications - Président
NUMIGI SOLUTIONS INC.
(514) 317-7944
Longueuil, Québec, Canada
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Bruno Joliveau - 12:15 - 23 Nov 2020 -
AW: How-to for alias and catchall with multicompanies
Hi
I asked a similar question on the forum last year and received the following solution as an answer: https://www.odoo.com/de_DE/forum/hilfe-1/multi-email-servers-154379
BR
Ricardo Gross
Von: "Sébastien LANGE (Subteno IT)"
Gesendet: Sonntag, 22. November 2020 11:27
An: Contributors
Betreff: Re: How-to for alias and catchall with multicompaniesHello Bruno,
I created a module to do that but in Odoo Enterprise 12.0. This module is not in production but after validate by my customer, we could push to GitHub if we want.
Have a nice day,
—

Sébastien LANGE
Directeur / CEO
Subteno IT
Tél.:
+33 (0)2 33 31 22 10
Adresse:
Web:
Mail:
Le 22 nov. 2020 à 00:42, Bruno Joliveau <bruno.joliveau@numigi.com> a écrit :
Hi community,
We want to configure and use the catchall and aliases in multi-companies with a Odoo CE v12.
I searched in https://github.com/OCA/multi-company and https://www.odoo-code-search.com/ without success (or I searched badly ;-)
Do you know addons or advice to set and use it as well with multi multi-companies context:
- Company "ABC" , a domain name "ABC.com" and a catchall like "catchall@ABC.com" with specific user and incoming server settings in Odoo,
- Company "XYZ" and domain name "XYZ.com" and a catchall like "catchall@XYZ.com" with specific user and incoming server settings in Odoo
By default, the 'mail.catchall' key in ir.config_parameter seems ignore multicompanies.
Thank your for your help and advices!
Have a nice day ;-)
Bruno Joliveau - Architecte applications - Président
NUMIGI SOLUTIONS INC.
(514) 317-7944
Longueuil, Québec, Canada
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Ricardo Gross - 08:20 - 22 Nov 2020 -
Re: How-to for alias and catchall with multicompanies
Hello Bruno,I created a module to do that but in Odoo Enterprise 12.0. This module is not in production but after validate by my customer, we could push to GitHub if we want.Have a nice day,—
Sébastien LANGE Directeur / CEO Subteno IT Tél.: +33 (0)2 33 31 22 10 Adresse: 27 Avenue Jean Mantelet, 61000 Alençon Web: www.subteno-it.com Mail: sla@subteno-it.com Le 22 nov. 2020 à 00:42, Bruno Joliveau <bruno.joliveau@numigi.com> a écrit :Hi community,We want to configure and use the catchall and aliases in multi-companies with a Odoo CE v12.
I searched in https://github.com/OCA/multi-company and https://www.odoo-code-search.com/ without success (or I searched badly ;-)
Do you know addons or advice to set and use it as well with multi multi-companies context:
- Company "ABC" , a domain name "ABC.com" and a catchall like "catchall@ABC.com" with specific user and incoming server settings in Odoo,
- Company "XYZ" and domain name "XYZ.com" and a catchall like "catchall@XYZ.com" with specific user and incoming server settings in Odoo
By default, the 'mail.catchall' key in ir.config_parameter seems ignore multicompanies.
Thank your for your help and advices!
Have a nice day ;-)
Bruno Joliveau - Architecte applications - PrésidentNUMIGI SOLUTIONS INC.(514) 317-7944Longueuil, Québec, Canada_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by "\"Sébastien LANGE (Subteno IT)\"" <sla@subteno-group.com> - 11:25 - 22 Nov 2020
-
-
[26699] Open Source Shift Management
Hi folks, while looking for something pragmatic in terms of Open Source shift management, i recently came across https://edgeryders.eu/t/list-open-source-software-for-resource-scheduling-and-booking/6629 Even though i know Odoo has HR functions, i didn't really took that into consideration. Now that the aforementioned source mentions Odoo as well, i thought, ok lets give it a try. Unfortunately, i got reaffirmend why i haven't had Odoo in mind in the first place. This is because the suggested Odoo app "planning" is of course EE (as the GANTT chart view as well). I did a quick research on the app store (apps.odoo.com) as well as our own ( https://www.odoo-code-search.com/). I found out that many apps do exist with the suite OpenHRMS by Cybrosys being he most prominent of those. Of course i also gave the OCA repositories a glance and found that at least the GANTT functions (of course also EE) are somewhat replacable by CE OCA code of project_timeline. My question: Does anybody believe or know if shift management can be done with only Standard Odoo CE and OCA code and has any suggestions what modules to look at? Is anybody aware of any attempt of a community member working on this or am i really hooked and need to go for EE to fulfull this requirement / develop all from scratch ;-) Thank for any suitable hint on the matter in advance. Best Frederik -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH An der Eisenbahn 1 21224 Rosengarten Phone: +49 4105 56156-12 Fax: +49 4105 56156-10 Mobil: +49 179 3901819 Email: frederik.kramer@initos.com Web: www.initos.com Geschäftsführung: Dr.-Ing. Frederik Kramer & Dipl.-Ing. (FH) Torsten Francke Sitz der Gesellschaft: Rosengarten – Klecken Amtsgericht Tostedt, HRB 205226 Steuer-Nr: 15/200/53247 USt-IdNr.: DE815580155
by Frederik Kramer. - 03:01 - 20 Nov 2020-
Re: [26699] Open Source Shift Management
Dear All:Everything we do is open source, accessible for anybody who enters into and honors our bidirectional joint partner agreement.CampToCamp, which we perceive the source of OCA, did sign up, btw.Frederik, I think you got a copy that I gave you personally. If you cant find it I am happy to resend.And yes, therefore we do think this - and other information about itiseasy.business - shall belong into this community list.Thanks for all who have looked into it already, we are grateful for the resonance over the last month. And we welcome anyone who is happily wanting to give it a try.All the best, JoeVon: "frederik kramer" <frederik.kramer@initos.com>
An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
Gesendet: Freitag, 20. November 2020 16:21:45
Betreff: Re: [26699] Open Source Shift ManagementHi Joe, thanks for the hint. As this is for a public municipality in Eastern Germany and mainly to organise their shifts during he Corona pandemics, they would like to have it full Open Source. Is your solution Open Source and if yes where can i review / download the code ? If this is not or not fully Open Source please still consider DM me as this would certainly not be of general interest on the OCA mailing list then but probably still for the municipality at stake Best and have a nice weekend Frederik Am Freitag, den 20.11.2020, 15:07 +0000 schrieb Joerg Lorenz: > Hi Frederik > > you might consider itiseasy.business for this task. We have a long > standing track record of hr with odoo. And as of 2020 we now have a > much extensive hr and shift management in place, ranging into all > different areas of the product, wheter it is projects, timesheets, > attendance, and manufacturing. > > If you are ready for a demo, let me know, but you are also free to > look into https://www.itis.de/itis-easy-business > > Thanks, Joe > > > > Von: "frederik kramer" <frederik.kramer@initos.com> > An: "Odoo Community Association, (OCA) Contributors" < > contributors@odoo-community.org> > Gesendet: Freitag, 20. November 2020 15:02:46 > Betreff: [26699] Open Source Shift Management > > Hi folks, > > while looking for something pragmatic in terms of Open Source shift > management, i recently came across > > https://edgeryders.eu/t/list-open-source-software-for-resource-scheduling-and-booking/6629 > > Even though i know Odoo has HR functions, i didn't really took that > into consideration. Now that the aforementioned source mentions Odoo > as > well, i thought, ok lets give it a try. > > Unfortunately, i got reaffirmend why i haven't had Odoo in mind in > the > first place. This is because the suggested Odoo app "planning" is of > course EE (as the GANTT chart view as well). I did a quick research > on > the app store (apps.odoo.com) as well as our own ( > https://www.odoo-code-search.com/). I found out that many apps do > exist > with the suite OpenHRMS by Cybrosys being he most prominent of > those. > > Of course i also gave the OCA repositories a glance and found that at > least the GANTT functions (of course also EE) are somewhat replacable > by CE OCA code of project_timeline. > > My question: Does anybody believe or know if shift management can be > done with only Standard Odoo CE and OCA code and has any suggestions > what modules to look at? Is anybody aware of any attempt of a > community > member working on this or am i really hooked and need to go for EE to > fulfull this requirement / develop all from scratch ;-) > > Thank for any suitable hint on the matter in advance. > > Best Frederik > > > -- > Dr.-Ing. Frederik Kramer > Geschäftsführer > > initOS GmbH > An der Eisenbahn 1 > 21224 Rosengarten > > Phone: +49 4105 56156-12 > Fax: +49 4105 56156-10 > Mobil: +49 179 3901819 > > Email: frederik.kramer@initos.com > Web: www.initos.com > > Geschäftsführung: > Dr.-Ing. Frederik Kramer & Dipl.-Ing. (FH) Torsten Francke > > Sitz der Gesellschaft: Rosengarten – Klecken > Amtsgericht Tostedt, HRB 205226 > Steuer-Nr: 15/200/53247 > USt-IdNr.: DE815580155 > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH An der Eisenbahn 1 21224 Rosengarten Phone: +49 4105 56156-12 Fax: +49 4105 56156-10 Mobil: +49 179 3901819 Email: frederik.kramer@initos.com Web: www.initos.com Geschäftsführung: Dr.-Ing. Frederik Kramer & Dipl.-Ing. (FH) Torsten Francke Sitz der Gesellschaft: Rosengarten – Klecken Amtsgericht Tostedt, HRB 205226 Steuer-Nr: 15/200/53247 USt-IdNr.: DE815580155
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Joerg Lorenz. - 01:31 - 24 Nov 2020 -
Re: [26699] Open Source Shift Management
Hi Joe, thanks for the hint. As this is for a public municipality in Eastern Germany and mainly to organise their shifts during he Corona pandemics, they would like to have it full Open Source. Is your solution Open Source and if yes where can i review / download the code ? If this is not or not fully Open Source please still consider DM me as this would certainly not be of general interest on the OCA mailing list then but probably still for the municipality at stake Best and have a nice weekend Frederik Am Freitag, den 20.11.2020, 15:07 +0000 schrieb Joerg Lorenz: > Hi Frederik > > you might consider itiseasy.business for this task. We have a long > standing track record of hr with odoo. And as of 2020 we now have a > much extensive hr and shift management in place, ranging into all > different areas of the product, wheter it is projects, timesheets, > attendance, and manufacturing. > > If you are ready for a demo, let me know, but you are also free to > look into https://www.itis.de/itis-easy-business > > Thanks, Joe > > > > Von: "frederik kramer" <frederik.kramer@initos.com> > An: "Odoo Community Association, (OCA) Contributors" < > contributors@odoo-community.org> > Gesendet: Freitag, 20. November 2020 15:02:46 > Betreff: [26699] Open Source Shift Management > > Hi folks, > > while looking for something pragmatic in terms of Open Source shift > management, i recently came across > > https://edgeryders.eu/t/list-open-source-software-for-resource-scheduling-and-booking/6629 > > Even though i know Odoo has HR functions, i didn't really took that > into consideration. Now that the aforementioned source mentions Odoo > as > well, i thought, ok lets give it a try. > > Unfortunately, i got reaffirmend why i haven't had Odoo in mind in > the > first place. This is because the suggested Odoo app "planning" is of > course EE (as the GANTT chart view as well). I did a quick research > on > the app store (apps.odoo.com) as well as our own ( > https://www.odoo-code-search.com/). I found out that many apps do > exist > with the suite OpenHRMS by Cybrosys being he most prominent of > those. > > Of course i also gave the OCA repositories a glance and found that at > least the GANTT functions (of course also EE) are somewhat replacable > by CE OCA code of project_timeline. > > My question: Does anybody believe or know if shift management can be > done with only Standard Odoo CE and OCA code and has any suggestions > what modules to look at? Is anybody aware of any attempt of a > community > member working on this or am i really hooked and need to go for EE to > fulfull this requirement / develop all from scratch ;-) > > Thank for any suitable hint on the matter in advance. > > Best Frederik > > > -- > Dr.-Ing. Frederik Kramer > Geschäftsführer > > initOS GmbH > An der Eisenbahn 1 > 21224 Rosengarten > > Phone: +49 4105 56156-12 > Fax: +49 4105 56156-10 > Mobil: +49 179 3901819 > > Email: frederik.kramer@initos.com > Web: www.initos.com > > Geschäftsführung: > Dr.-Ing. Frederik Kramer & Dipl.-Ing. (FH) Torsten Francke > > Sitz der Gesellschaft: Rosengarten – Klecken > Amtsgericht Tostedt, HRB 205226 > Steuer-Nr: 15/200/53247 > USt-IdNr.: DE815580155 > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH An der Eisenbahn 1 21224 Rosengarten Phone: +49 4105 56156-12 Fax: +49 4105 56156-10 Mobil: +49 179 3901819 Email: frederik.kramer@initos.com Web: www.initos.com Geschäftsführung: Dr.-Ing. Frederik Kramer & Dipl.-Ing. (FH) Torsten Francke Sitz der Gesellschaft: Rosengarten – Klecken Amtsgericht Tostedt, HRB 205226 Steuer-Nr: 15/200/53247 USt-IdNr.: DE815580155
by Frederik Kramer. - 04:21 - 20 Nov 2020 -
Re: [26699] Open Source Shift Management
Hi Frederikyou might consider itiseasy.business for this task. We have a long standing track record of hr with odoo. And as of 2020 we now have a much extensive hr and shift management in place, ranging into all different areas of the product, wheter it is projects, timesheets, attendance, and manufacturing.If you are ready for a demo, let me know, but you are also free to look into https://www.itis.de/itis-easy-businessThanks, JoeVon: "frederik kramer" <frederik.kramer@initos.com>
An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
Gesendet: Freitag, 20. November 2020 15:02:46
Betreff: [26699] Open Source Shift ManagementHi folks, while looking for something pragmatic in terms of Open Source shift management, i recently came across https://edgeryders.eu/t/list-open-source-software-for-resource-scheduling-and-booking/6629 Even though i know Odoo has HR functions, i didn't really took that into consideration. Now that the aforementioned source mentions Odoo as well, i thought, ok lets give it a try. Unfortunately, i got reaffirmend why i haven't had Odoo in mind in the first place. This is because the suggested Odoo app "planning" is of course EE (as the GANTT chart view as well). I did a quick research on the app store (apps.odoo.com) as well as our own ( https://www.odoo-code-search.com/). I found out that many apps do exist with the suite OpenHRMS by Cybrosys being he most prominent of those. Of course i also gave the OCA repositories a glance and found that at least the GANTT functions (of course also EE) are somewhat replacable by CE OCA code of project_timeline. My question: Does anybody believe or know if shift management can be done with only Standard Odoo CE and OCA code and has any suggestions what modules to look at? Is anybody aware of any attempt of a community member working on this or am i really hooked and need to go for EE to fulfull this requirement / develop all from scratch ;-) Thank for any suitable hint on the matter in advance. Best Frederik -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH An der Eisenbahn 1 21224 Rosengarten Phone: +49 4105 56156-12 Fax: +49 4105 56156-10 Mobil: +49 179 3901819 Email: frederik.kramer@initos.com Web: www.initos.com Geschäftsführung: Dr.-Ing. Frederik Kramer & Dipl.-Ing. (FH) Torsten Francke Sitz der Gesellschaft: Rosengarten – Klecken Amtsgericht Tostedt, HRB 205226 Steuer-Nr: 15/200/53247 USt-IdNr.: DE815580155_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Joerg Lorenz. - 04:06 - 20 Nov 2020
-
-
Product Safety Datasheet
Hello contributors,I wrote a module to fill in the safety data sheets following the 16 points of the European Commission Regulation. I thought maybe it might be useful to someone.Any feedback or help would be appreciated.Ciao,Alberto
by Alberto Carollo - 01:01 - 19 Nov 2020-
Re: Product Safety Datasheet
Hi Alberto,Thanks for your contribution.Seems it's a generic subject.Maybe it could go towards OCA.As I have seen, you may split your models.py file by models.Otherwise an idea not sure that it's relevant but you could use this modulebecause information of this kind is quite related to Product Information Management.It could avoid to manage some too many additional modulesodoo-pim will join OCA in next weeks
Le jeu. 19 nov. 2020 à 13:01, Alberto Carollo <baba75@gmail.com> a écrit :Hello contributors,I wrote a module to fill in the safety data sheets following the 16 points of the European Commission Regulation. I thought maybe it might be useful to someone.Any feedback or help would be appreciated.Ciao,Alberto
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by David BEAL - 02:40 - 24 Nov 2020
-
-
Financial Auditors Campaign - closes this Friday
Hello OCA Contributors,
Just a reminder if you would like to apply in the Financial Auditors Campaign you have until this Friday, 20th November.- The application survey is here.
- you do not need to be an OCA member or delegate to apply as a Financial Auditor
- the role is basically to perform the annual financial audit on the OCA accounts
- ideally there are 3 auditors each year to work together
- we currently have 2 applicants
Any questions, please get in touch.
Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 02:05 - 19 Nov 2020 - The application survey is here.
-
GitHub discussions
GitHub is adding a very interesting new feature: discussions, which we can consider similar to forums, and it brings the feature for filling the current gap when someone fills a question in issues (which I especially hate as some of you know, hehe, as it's not the proper feature for handling that). It even includes an option for converting an issue into a discussion:Unfortunately, it's still in a closed beta needing an invitation. We (Tecnativa) have asked for inclusion in https://github.com/github/feedback/discussions/24#discussioncomment-119862, and we are already trying it out in https://github.com/Tecnativa/doodba/discussions.It's worth considering its usage across OCA and maybe ask for beta testing in some of our repos. Some of the actions to perform will be:- Think in a general way to sort this section.- Add a possible FAQ.- Change the OCA website documentation for referring to this.- Change the OCA README template for redirecting to this section.Regards.
by Pedro M. Baeza - 11:40 - 18 Nov 2020-
Re: GitHub discussions
+1El mié., 18 de nov. de 2020 a la(s) 05:57, Yves Goldberg (yves@ygol.com) escribió:+1--Yves Goldberg------- Original message -----From: Juan DCG <juandcg314@gmail.com>To: Contributors <contributors@odoo-community.org>Subject: Re: GitHub discussionsDate: Wednesday, November 18, 2020 13:51+1El mié., 18 nov. 2020 a las 12:22, Alexey Pelykh (<alexey.pelykh@gmail.com>) escribió:+1On 18 Nov 2020, at 11:41, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:GitHub is adding a very interesting new feature: discussions, which we can consider similar to forums, and it brings the feature for filling the current gap when someone fills a question in issues (which I especially hate as some of you know, hehe, as it's not the proper feature for handling that). It even includes an option for converting an issue into a discussion:Unfortunately, it's still in a closed beta needing an invitation. We (Tecnativa) have asked for inclusion in https://github.com/github/feedback/discussions/24#discussioncomment-119862, and we are already trying it out in https://github.com/Tecnativa/doodba/discussions.It's worth considering its usage across OCA and maybe ask for beta testing in some of our repos. Some of the actions to perform will be:- Think in a general way to sort this section.- Add a possible FAQ.- Change the OCA website documentation for referring to this.- Change the OCA README template for redirecting to this section.Regards._______________________________________________Mailing-List: https://odoo-community.org/groups/contributors-15Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________Mailing-List: https://odoo-community.org/groups/contributors-15Post to: mailto:contributors@odoo-community.orgUnsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________Mailing-List: https://odoo-community.org/groups/contributors-15Post to: mailto:contributors@odoo-community.orgUnsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jesús Alan Ramos Rodriguez - 04:36 - 18 Nov 2020 -
Re: GitHub discussions
+1--Yves Goldberg------- Original message -----From: Juan DCG <juandcg314@gmail.com>To: Contributors <contributors@odoo-community.org>Subject: Re: GitHub discussionsDate: Wednesday, November 18, 2020 13:51+1El mié., 18 nov. 2020 a las 12:22, Alexey Pelykh (<alexey.pelykh@gmail.com>) escribió:+1On 18 Nov 2020, at 11:41, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:GitHub is adding a very interesting new feature: discussions, which we can consider similar to forums, and it brings the feature for filling the current gap when someone fills a question in issues (which I especially hate as some of you know, hehe, as it's not the proper feature for handling that). It even includes an option for converting an issue into a discussion:Unfortunately, it's still in a closed beta needing an invitation. We (Tecnativa) have asked for inclusion in https://github.com/github/feedback/discussions/24#discussioncomment-119862, and we are already trying it out in https://github.com/Tecnativa/doodba/discussions.It's worth considering its usage across OCA and maybe ask for beta testing in some of our repos. Some of the actions to perform will be:- Think in a general way to sort this section.- Add a possible FAQ.- Change the OCA website documentation for referring to this.- Change the OCA README template for redirecting to this section.Regards._______________________________________________Mailing-List: https://odoo-community.org/groups/contributors-15Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________Mailing-List: https://odoo-community.org/groups/contributors-15Post to: mailto:contributors@odoo-community.orgUnsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________Mailing-List: https://odoo-community.org/groups/contributors-15Post to: mailto:contributors@odoo-community.orgUnsubscribe: https://odoo-community.org/groups?unsubscribe
by Yves Goldberg - 12:56 - 18 Nov 2020 -
Re: GitHub discussions
+1El mié., 18 nov. 2020 a las 12:22, Alexey Pelykh (<alexey.pelykh@gmail.com>) escribió:+1On 18 Nov 2020, at 11:41, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:GitHub is adding a very interesting new feature: discussions, which we can consider similar to forums, and it brings the feature for filling the current gap when someone fills a question in issues (which I especially hate as some of you know, hehe, as it's not the proper feature for handling that). It even includes an option for converting an issue into a discussion:Unfortunately, it's still in a closed beta needing an invitation. We (Tecnativa) have asked for inclusion in https://github.com/github/feedback/discussions/24#discussioncomment-119862, and we are already trying it out in https://github.com/Tecnativa/doodba/discussions.It's worth considering its usage across OCA and maybe ask for beta testing in some of our repos. Some of the actions to perform will be:- Think in a general way to sort this section.- Add a possible FAQ.- Change the OCA website documentation for referring to this.- Change the OCA README template for redirecting to this section.Regards._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Juan Del Castillo Gómez - 12:50 - 18 Nov 2020 -
Re: GitHub discussions
+1On 18 Nov 2020, at 11:41, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:GitHub is adding a very interesting new feature: discussions, which we can consider similar to forums, and it brings the feature for filling the current gap when someone fills a question in issues (which I especially hate as some of you know, hehe, as it's not the proper feature for handling that). It even includes an option for converting an issue into a discussion:Unfortunately, it's still in a closed beta needing an invitation. We (Tecnativa) have asked for inclusion in https://github.com/github/feedback/discussions/24#discussioncomment-119862, and we are already trying it out in https://github.com/Tecnativa/doodba/discussions.It's worth considering its usage across OCA and maybe ask for beta testing in some of our repos. Some of the actions to perform will be:- Think in a general way to sort this section.- Add a possible FAQ.- Change the OCA website documentation for referring to this.- Change the OCA README template for redirecting to this section.Regards._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Alexey Pelykh - 12:21 - 18 Nov 2020
-
-
Sort Kanban by Drag'n Drop like in TreeView
Dear Contributors, I have a simple Kanban view without columns (see attached screenshot) I know you can sort items based of field values (e.g. `sequence` field) using `default_order` attribute for `kanban` tag. I was wondering if there is a possiblity to change order dynamically using drag'n drop of items like in tree view. Background: Users may add as much images as they like to the model, but only some of them are used for reports and exports. I would like to allow them easily to choose which ones, by allowing them to prioritize order and only use the Nth first ones. Thanks, Peter
by Pete Hahn - 09:56 - 18 Nov 2020-
Re: Sort Kanban by Drag'n Drop like in TreeView
Hi Peter,interesting, we actually have a very similar case for quality control.Users can take a lot of pictures, but would select few to print in a quality report. We did this entirely in odoo enterprise, using the document module.- Images to be printed are manually dragged into a specific workspace, and the qweb report will print only images in this workspace.Cheers,DominiqueOn Wed, 18 Nov 2020 at 17:02, Peter Hahn <peter.hahn@initos.com> wrote:Dear Contributors, I have a simple Kanban view without columns (see attached screenshot) I know you can sort items based of field values (e.g. `sequence` field) using `default_order` attribute for `kanban` tag. I was wondering if there is a possiblity to change order dynamically using drag'n drop of items like in tree view. Background: Users may add as much images as they like to the model, but only some of them are used for reports and exports. I would like to allow them easily to choose which ones, by allowing them to prioritize order and only use the Nth first ones. Thanks, Peter
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by dominique.k - 10:31 - 18 Nov 2020
-
-
Analytic distribution / Analytic tags - Impact on journal items
Hello everyone,I'm currently facing an issue with the analytic distribution functionality of Odoo. I would like to share it with you as some may have faced the same issue recently and may be able to help. I'm working on Odoo V12, but the same situation occurs on different versions as well.When checking the 'Analytic Distribution' box on an analytic tag, this analytic tag can be used to allocate a certain percentage of an expense or an income on several analytic accounts.Example: On the picture below, the 'Analytic distribution key 1' analytic tag will allocate 50% of the expense/income on the 'Administrative' analytic account and the remaining 50% on the 'Commercial & Marketing' analytic account.When validating a simple vendor bill of 100 euros with this 'Analytic distribution key 1' selected, Odoo is generating a journal entry with three journal items: payable account, tax account and an expense account (100 euros) which is linked to the 'Analytic distribution key 1' analytic tag. My two analytic accounts (Administrative + Commercial & Marketing) don't appear here.Besides that, Odoo is also generating two analytic items in the 'Accounting --> Analytic items' menu to divide the total amount of the expense (100 euros) according to the distribution key (50% for both analytic accounts). These analytic lines can also be found in the 'Analytic Lines tab' on the expense journal item.My problem is that this breakdown on both analytic accounts doesn't appear in the journal items/entries, it only appears in the analytic items. This makes reporting based on journal items much more complicated (ex: Mis Report to generate a P&L by analytic account).I would rather prefer that the breakdown on both analytic accounts applies directly on the journal entry. Hence, instead of having one expense journal item (100 euros) related to the analytic tag, we would have two expense journal items (50 euros each),both related to their analytic account (Administrative or Commercial&Marketing). This would probably make things much easier.Any thoughts on this?Does this 'problem' sound familiar for some of you? Has anyone ever found a solution for this?Thank you very much for your help,Regards,Guillaume Vandamme--Guillaume Vandamme
Business AnalystPhone : +32 2 888 31 31
Mobile : +32 475 49 88 27Email : guillaume.vandamme@acsone.euAcsone sa/nvWaterloo Atrium | 167, Drève Richelle | B-1410 Waterloo
by Guillaume Vandamme - 01:55 - 17 Nov 2020-
Re: Analytic distribution / Analytic tags - Impact on journal items
Hi, sure! Propose to OCA and rename without any problems.I agree with Dominique that it's a little dangerous approach and also not compatible for v13+.So, maybe the split can be done on the invoice itself (account.invoice for v12- account.move for v13+). The split could be done manually with a button or automatically when posting. That way it won't be harmful at all, the problems would be:* no easy way to return to the previous state (lines not splitted)* maybe users don't want to see invoice lines splitted.On Wed, Nov 18, 2020 at 12:46 PM Dominique k <dominique.k@elico-corp.com.sg> wrote:hmm... i can see a problem with this method: not compatible with v13, where the invoice model is merged with journal entry model:migrating a database with this module may be... complicated.beside, having a journal entry where the lines do not match the invoice lines seems risky to me, for example when you want to do your tax reporting.my 2 cents,regards--On Wed, 18 Nov 2020 at 10:42 PM, Vandamme, Guillaume <guillaume.vandamme@acsone.eu> wrote:Hello Juan José,Excellent, this is exactly what I was looking for. Many thanks!Do you accept that we propose this module to OCA?The name of the module should be changed though, as the name account_analytic_distribution is already used for another module.It could be changed to something like account_analytic_distribution_move_linesThanks,GuillaumeOn Tue, 17 Nov 2020 at 17:01, Juan José Scarafía (ADHOC) <scarafia.juanjose@gmail.com> wrote:Hi Guillaume,We have the same needs and think similar to you.Before the existence of analytic tags (and analytic tags distributions) we have this module "account_analytic_distribution" that works this way:* on an invoice you choose the "distribution analytic account" on each line (it is a normal analytic account with distribution lines as the new analytic tags of odoo)* when validating the invoice, the account.move was created but account.move.line where splitted if you're using analytic distributionThat way, the distribution works for analytic and accounting reports.We haven't migrated or found an approach for v13+ yet. On v13, with the removal of account.invoice, I was thinking in something similar but perhaps more "manual" on the invoice, a button to split lines, but you won't have a way to go back to the distribution.On Tue, Nov 17, 2020 at 9:57 AM Vandamme, Guillaume <guillaume.vandamme@acsone.eu> wrote:Hello everyone,I'm currently facing an issue with the analytic distribution functionality of Odoo. I would like to share it with you as some may have faced the same issue recently and may be able to help. I'm working on Odoo V12, but the same situation occurs on different versions as well.When checking the 'Analytic Distribution' box on an analytic tag, this analytic tag can be used to allocate a certain percentage of an expense or an income on several analytic accounts.Example: On the picture below, the 'Analytic distribution key 1' analytic tag will allocate 50% of the expense/income on the 'Administrative' analytic account and the remaining 50% on the 'Commercial & Marketing' analytic account.When validating a simple vendor bill of 100 euros with this 'Analytic distribution key 1' selected, Odoo is generating a journal entry with three journal items: payable account, tax account and an expense account (100 euros) which is linked to the 'Analytic distribution key 1' analytic tag. My two analytic accounts (Administrative + Commercial & Marketing) don't appear here.Besides that, Odoo is also generating two analytic items in the 'Accounting --> Analytic items' menu to divide the total amount of the expense (100 euros) according to the distribution key (50% for both analytic accounts). These analytic lines can also be found in the 'Analytic Lines tab' on the expense journal item.My problem is that this breakdown on both analytic accounts doesn't appear in the journal items/entries, it only appears in the analytic items. This makes reporting based on journal items much more complicated (ex: Mis Report to generate a P&L by analytic account).I would rather prefer that the breakdown on both analytic accounts applies directly on the journal entry. Hence, instead of having one expense journal item (100 euros) related to the analytic tag, we would have two expense journal items (50 euros each),both related to their analytic account (Administrative or Commercial&Marketing). This would probably make things much easier.Any thoughts on this?Does this 'problem' sound familiar for some of you? Has anyone ever found a solution for this?Thank you very much for your help,Regards,Guillaume Vandamme--Guillaume Vandamme
Business AnalystPhone : +32 2 888 31 31
Mobile : +32 475 49 88 27Email : guillaume.vandamme@acsone.euAcsone sa/nv_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Guillaume Vandamme
Business AnalystPhone : +32 2 888 31 31
Mobile : +32 475 49 88 27Email : guillaume.vandamme@acsone.euAcsone sa/nv_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
Dominique KON-SUN-TACK [Project Manager]Odoo Gold Partner, best Odoo Partner 2014 for APACMobile: + 65 8502 2399Skype: dominique_elicoWebsite: www.elico-corp.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Juan José Scarafía - 10:30 - 19 Nov 2020 -
Re: Analytic distribution / Analytic tags - Impact on journal items
hmm... i can see a problem with this method: not compatible with v13, where the invoice model is merged with journal entry model:migrating a database with this module may be... complicated.beside, having a journal entry where the lines do not match the invoice lines seems risky to me, for example when you want to do your tax reporting.my 2 cents,regards--On Wed, 18 Nov 2020 at 10:42 PM, Vandamme, Guillaume <guillaume.vandamme@acsone.eu> wrote:Hello Juan José,Excellent, this is exactly what I was looking for. Many thanks!Do you accept that we propose this module to OCA?The name of the module should be changed though, as the name account_analytic_distribution is already used for another module.It could be changed to something like account_analytic_distribution_move_linesThanks,GuillaumeOn Tue, 17 Nov 2020 at 17:01, Juan José Scarafía (ADHOC) <scarafia.juanjose@gmail.com> wrote:Hi Guillaume,We have the same needs and think similar to you.Before the existence of analytic tags (and analytic tags distributions) we have this module "account_analytic_distribution" that works this way:* on an invoice you choose the "distribution analytic account" on each line (it is a normal analytic account with distribution lines as the new analytic tags of odoo)* when validating the invoice, the account.move was created but account.move.line where splitted if you're using analytic distributionThat way, the distribution works for analytic and accounting reports.We haven't migrated or found an approach for v13+ yet. On v13, with the removal of account.invoice, I was thinking in something similar but perhaps more "manual" on the invoice, a button to split lines, but you won't have a way to go back to the distribution.On Tue, Nov 17, 2020 at 9:57 AM Vandamme, Guillaume <guillaume.vandamme@acsone.eu> wrote:Hello everyone,I'm currently facing an issue with the analytic distribution functionality of Odoo. I would like to share it with you as some may have faced the same issue recently and may be able to help. I'm working on Odoo V12, but the same situation occurs on different versions as well.When checking the 'Analytic Distribution' box on an analytic tag, this analytic tag can be used to allocate a certain percentage of an expense or an income on several analytic accounts.Example: On the picture below, the 'Analytic distribution key 1' analytic tag will allocate 50% of the expense/income on the 'Administrative' analytic account and the remaining 50% on the 'Commercial & Marketing' analytic account.When validating a simple vendor bill of 100 euros with this 'Analytic distribution key 1' selected, Odoo is generating a journal entry with three journal items: payable account, tax account and an expense account (100 euros) which is linked to the 'Analytic distribution key 1' analytic tag. My two analytic accounts (Administrative + Commercial & Marketing) don't appear here.Besides that, Odoo is also generating two analytic items in the 'Accounting --> Analytic items' menu to divide the total amount of the expense (100 euros) according to the distribution key (50% for both analytic accounts). These analytic lines can also be found in the 'Analytic Lines tab' on the expense journal item.My problem is that this breakdown on both analytic accounts doesn't appear in the journal items/entries, it only appears in the analytic items. This makes reporting based on journal items much more complicated (ex: Mis Report to generate a P&L by analytic account).I would rather prefer that the breakdown on both analytic accounts applies directly on the journal entry. Hence, instead of having one expense journal item (100 euros) related to the analytic tag, we would have two expense journal items (50 euros each),both related to their analytic account (Administrative or Commercial&Marketing). This would probably make things much easier.Any thoughts on this?Does this 'problem' sound familiar for some of you? Has anyone ever found a solution for this?Thank you very much for your help,Regards,Guillaume Vandamme--Guillaume Vandamme
Business AnalystPhone : +32 2 888 31 31
Mobile : +32 475 49 88 27Email : guillaume.vandamme@acsone.euAcsone sa/nv_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Guillaume Vandamme
Business AnalystPhone : +32 2 888 31 31
Mobile : +32 475 49 88 27Email : guillaume.vandamme@acsone.euAcsone sa/nv_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
Dominique KON-SUN-TACK [Project Manager]Odoo Gold Partner, best Odoo Partner 2014 for APACMobile: + 65 8502 2399Skype: dominique_elicoWebsite: www.elico-corp.com
by dominique.k - 04:46 - 18 Nov 2020 -
Re: Analytic distribution / Analytic tags - Impact on journal items
Hello Juan José,Excellent, this is exactly what I was looking for. Many thanks!Do you accept that we propose this module to OCA?The name of the module should be changed though, as the name account_analytic_distribution is already used for another module.It could be changed to something like account_analytic_distribution_move_linesThanks,GuillaumeOn Tue, 17 Nov 2020 at 17:01, Juan José Scarafía (ADHOC) <scarafia.juanjose@gmail.com> wrote:Hi Guillaume,We have the same needs and think similar to you.Before the existence of analytic tags (and analytic tags distributions) we have this module "account_analytic_distribution" that works this way:* on an invoice you choose the "distribution analytic account" on each line (it is a normal analytic account with distribution lines as the new analytic tags of odoo)* when validating the invoice, the account.move was created but account.move.line where splitted if you're using analytic distributionThat way, the distribution works for analytic and accounting reports.We haven't migrated or found an approach for v13+ yet. On v13, with the removal of account.invoice, I was thinking in something similar but perhaps more "manual" on the invoice, a button to split lines, but you won't have a way to go back to the distribution.On Tue, Nov 17, 2020 at 9:57 AM Vandamme, Guillaume <guillaume.vandamme@acsone.eu> wrote:Hello everyone,I'm currently facing an issue with the analytic distribution functionality of Odoo. I would like to share it with you as some may have faced the same issue recently and may be able to help. I'm working on Odoo V12, but the same situation occurs on different versions as well.When checking the 'Analytic Distribution' box on an analytic tag, this analytic tag can be used to allocate a certain percentage of an expense or an income on several analytic accounts.Example: On the picture below, the 'Analytic distribution key 1' analytic tag will allocate 50% of the expense/income on the 'Administrative' analytic account and the remaining 50% on the 'Commercial & Marketing' analytic account.When validating a simple vendor bill of 100 euros with this 'Analytic distribution key 1' selected, Odoo is generating a journal entry with three journal items: payable account, tax account and an expense account (100 euros) which is linked to the 'Analytic distribution key 1' analytic tag. My two analytic accounts (Administrative + Commercial & Marketing) don't appear here.Besides that, Odoo is also generating two analytic items in the 'Accounting --> Analytic items' menu to divide the total amount of the expense (100 euros) according to the distribution key (50% for both analytic accounts). These analytic lines can also be found in the 'Analytic Lines tab' on the expense journal item.My problem is that this breakdown on both analytic accounts doesn't appear in the journal items/entries, it only appears in the analytic items. This makes reporting based on journal items much more complicated (ex: Mis Report to generate a P&L by analytic account).I would rather prefer that the breakdown on both analytic accounts applies directly on the journal entry. Hence, instead of having one expense journal item (100 euros) related to the analytic tag, we would have two expense journal items (50 euros each),both related to their analytic account (Administrative or Commercial&Marketing). This would probably make things much easier.Any thoughts on this?Does this 'problem' sound familiar for some of you? Has anyone ever found a solution for this?Thank you very much for your help,Regards,Guillaume Vandamme--Guillaume Vandamme
Business AnalystPhone : +32 2 888 31 31
Mobile : +32 475 49 88 27Email : guillaume.vandamme@acsone.euAcsone sa/nvWaterloo Atrium | 167, Drève Richelle | B-1410 Waterloo_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Guillaume Vandamme
Business AnalystPhone : +32 2 888 31 31
Mobile : +32 475 49 88 27Email : guillaume.vandamme@acsone.euAcsone sa/nvWaterloo Atrium | 167, Drève Richelle | B-1410 Waterloo
by Guillaume Vandamme - 03:41 - 18 Nov 2020 -
Re: Analytic distribution / Analytic tags - Impact on journal items
Hi Guillaume,We have the same needs and think similar to you.Before the existence of analytic tags (and analytic tags distributions) we have this module "account_analytic_distribution" that works this way:* on an invoice you choose the "distribution analytic account" on each line (it is a normal analytic account with distribution lines as the new analytic tags of odoo)* when validating the invoice, the account.move was created but account.move.line where splitted if you're using analytic distributionThat way, the distribution works for analytic and accounting reports.We haven't migrated or found an approach for v13+ yet. On v13, with the removal of account.invoice, I was thinking in something similar but perhaps more "manual" on the invoice, a button to split lines, but you won't have a way to go back to the distribution.On Tue, Nov 17, 2020 at 9:57 AM Vandamme, Guillaume <guillaume.vandamme@acsone.eu> wrote:Hello everyone,I'm currently facing an issue with the analytic distribution functionality of Odoo. I would like to share it with you as some may have faced the same issue recently and may be able to help. I'm working on Odoo V12, but the same situation occurs on different versions as well.When checking the 'Analytic Distribution' box on an analytic tag, this analytic tag can be used to allocate a certain percentage of an expense or an income on several analytic accounts.Example: On the picture below, the 'Analytic distribution key 1' analytic tag will allocate 50% of the expense/income on the 'Administrative' analytic account and the remaining 50% on the 'Commercial & Marketing' analytic account.When validating a simple vendor bill of 100 euros with this 'Analytic distribution key 1' selected, Odoo is generating a journal entry with three journal items: payable account, tax account and an expense account (100 euros) which is linked to the 'Analytic distribution key 1' analytic tag. My two analytic accounts (Administrative + Commercial & Marketing) don't appear here.Besides that, Odoo is also generating two analytic items in the 'Accounting --> Analytic items' menu to divide the total amount of the expense (100 euros) according to the distribution key (50% for both analytic accounts). These analytic lines can also be found in the 'Analytic Lines tab' on the expense journal item.My problem is that this breakdown on both analytic accounts doesn't appear in the journal items/entries, it only appears in the analytic items. This makes reporting based on journal items much more complicated (ex: Mis Report to generate a P&L by analytic account).I would rather prefer that the breakdown on both analytic accounts applies directly on the journal entry. Hence, instead of having one expense journal item (100 euros) related to the analytic tag, we would have two expense journal items (50 euros each),both related to their analytic account (Administrative or Commercial&Marketing). This would probably make things much easier.Any thoughts on this?Does this 'problem' sound familiar for some of you? Has anyone ever found a solution for this?Thank you very much for your help,Regards,Guillaume Vandamme--Guillaume Vandamme
Business AnalystPhone : +32 2 888 31 31
Mobile : +32 475 49 88 27Email : guillaume.vandamme@acsone.euAcsone sa/nvWaterloo Atrium | 167, Drève Richelle | B-1410 Waterloo_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Juan José Scarafía - 05:00 - 17 Nov 2020
-
-
Multiple files (images) upload
Dear Contributors, on a custom model we needed to have multiple images attached in a separate notebook page. We solved this using a kanban widget on a simple model, that contains the image as binary field. The drawback is, that you need to add each image one by one since you need to create new records of the containing model used for the kanban view to add images. The customer is asking for the possibility to add images by a multi select file dialog. Afaik this isn’t possible in odoo, since there is always exactly one binary field per image, so I would need something to create several records in one go. The only widget I know that is capable of doing this is the one used for adding attachments to forms (marked red in the screenshot below). Do you have any hints how to realize something like this? There seams to be nothing ready made available for this on the net. Thanks. Regards, Peter
by Pete Hahn - 11:20 - 17 Nov 2020-
Re: Multiple files (images) upload
Thanks a lot for this hint. I went another way since we already have our own storage model for this and I didn’t had the time to change too much. I made a simple Wizard using `FieldMany2ManyBinaryMultiFiles` widget. Neverless, thanks for the hint to this interesting repo I didn’t knew of before. Am 17.11.20 um 11:32 schrieb Roussel, Denis: > Hi Peter, > You can look into https://github.com/OCA/storage [1] to manage images the way you want. > And you can review this https://github.com/OCA/storage/pull/48 [2] that allows to handle multi image upload. > Best regards,
by Pete Hahn - 09:51 - 18 Nov 2020 -
Re: Multiple files (images) upload
Hi Peter,You can look into https://github.com/OCA/storage to manage images the way you want.And you can review this https://github.com/OCA/storage/pull/48 that allows to handle multi image upload.Best regards,On Tue, Nov 17, 2020 at 11:22 AM Peter Hahn <peter.hahn@initos.com> wrote:Dear Contributors, on a custom model we needed to have multiple images attached in a separate notebook page. We solved this using a kanban widget on a simple model, that contains the image as binary field. The drawback is, that you need to add each image one by one since you need to create new records of the containing model used for the kanban view to add images. The customer is asking for the possibility to add images by a multi select file dialog. Afaik this isn’t possible in odoo, since there is always exactly one binary field per image, so I would need something to create several records in one go. The only widget I know that is capable of doing this is the one used for adding attachments to forms (marked red in the screenshot below). Do you have any hints how to realize something like this? There seams to be nothing ready made available for this on the net. Thanks. Regards, Peter
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--__________________________________________
Denis Roussel
Software Engineer
Acsone SA, Succursale de Liège (Val Benoît)
Tel : +32 2 888 31 49
Fax : +32 2 888 31 59
Gsm : +32 472 22 00 57Acsone sa/nv
Boulevard de la Woluwe 56 Woluwedal | B-1200 Brussels | BelgiumQuai Banning, 6 (Val Benoît) | B-4000 Liège | Belgium
Zone Industrielle 22 | L-8287 Kehlen | Luxembourg
by Denis Roussel. - 11:30 - 17 Nov 2020
-
-
OCA 2021 RFQs - now open for quoting
Dear OCA Contributors,
I hope this finds you all well.
We have published the 2021 RFQs:You'll also notice a new page on the website about OpenUpgrade 14.0 and how funding is distributed for this particular project. If you are interested in sponsoring the OCA you can also send us an email.--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 09:10 - 16 Nov 2020 -
Module to print Product Labels
Hi all,We have a requirement to print product labels with barcodes/info:- Configure label size, margin, padding (similar config than https://github.com/OCA/partner-contact/tree/12.0/partner_label, but with the possibility of saving/reusing label layouts)- Configure fields to print // label template- Select number of labels per product to printDo you know if there's any module like this in OCA?Best,Iván Todorovich
by Iván Todorovich - 02:56 - 16 Nov 2020-
Re: Module to print Product Labels
Thanks Sylvain!I'll check it outIván TodorovichEl lun., 16 nov. 2020 a las 16:02, Sylvain LE GAL (<sylvain.legal@grap.coop>) escribió:Hi Ivan,At GRAP, we use a module, named product_print_category, available at the GRAP incubator repository. Basically,- you create many print categories with specific qweb template- you affect the print categories to the products- then, when a field is changed on a product, the product is marked as "to print"Maybe not exactly what are you looking for, but well, maybe it can help !kind regards.GRAP - Service informatique (Groupement Régional Alimentaire de Proximité)Site Web | FramaSphere | Facebook
3 Grande rue des Feuillants, 69001 Lyon
Standard : (+33) 09.72.32.33.17Service Informatique : (+33) 09.73.79.64.40Astreinte Informatique : (+33) 06.81.85.61.43Member of the OCA (Odoo Community Association)Le lun. 16 nov. 2020 à 15:42, Iván Todorovich <ivan.todorovich@gmail.com> a écrit :Hi Kiril,Thanks for your reply! I'll check that out.We're not using a thermal printer, though. We need to print labels using a standard printer + self-adhesive labels.Best,Iván TodorovichEl lun., 16 nov. 2020 a las 11:32, Kiril Vangelovski (<kiril@lambda-is.com>) escribió:For Zebra printer labels (ZPL) check:
https://github.com/OCA/report-print-send/tree/12.0/printer_zpl2
On 16.11.20 14:57, Iván Todorovich wrote:
Hi all,
We have a requirement to print product labels with barcodes/info:
- Configure label size, margin, padding (similar config than https://github.com/OCA/partner-contact/tree/12.0/partner_label, but with the possibility of saving/reusing label layouts)
- Configure fields to print // label template
- Select number of labels per product to print
Do you know if there's any module like this in OCA?
Best,
Iván Todorovich_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Iván Todorovich - 01:10 - 17 Nov 2020 -
Re: Module to print Product Labels
Hi Ivan,At GRAP, we use a module, named product_print_category, available at the GRAP incubator repository. Basically,- you create many print categories with specific qweb template- you affect the print categories to the products- then, when a field is changed on a product, the product is marked as "to print"Maybe not exactly what are you looking for, but well, maybe it can help !kind regards.GRAP - Service informatique (Groupement Régional Alimentaire de Proximité)Site Web | FramaSphere | Facebook
3 Grande rue des Feuillants, 69001 Lyon
Standard : (+33) 09.72.32.33.17Service Informatique : (+33) 09.73.79.64.40Astreinte Informatique : (+33) 06.81.85.61.43Member of the OCA (Odoo Community Association)Le lun. 16 nov. 2020 à 15:42, Iván Todorovich <ivan.todorovich@gmail.com> a écrit :Hi Kiril,Thanks for your reply! I'll check that out.We're not using a thermal printer, though. We need to print labels using a standard printer + self-adhesive labels.Best,Iván TodorovichEl lun., 16 nov. 2020 a las 11:32, Kiril Vangelovski (<kiril@lambda-is.com>) escribió:For Zebra printer labels (ZPL) check:
https://github.com/OCA/report-print-send/tree/12.0/printer_zpl2
On 16.11.20 14:57, Iván Todorovich wrote:
Hi all,
We have a requirement to print product labels with barcodes/info:
- Configure label size, margin, padding (similar config than https://github.com/OCA/partner-contact/tree/12.0/partner_label, but with the possibility of saving/reusing label layouts)
- Configure fields to print // label template
- Select number of labels per product to print
Do you know if there's any module like this in OCA?
Best,
Iván Todorovich_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Sylvain LE GAL - 08:00 - 16 Nov 2020 -
Re: Module to print Product Labels
Hi Kiril,Thanks for your reply! I'll check that out.We're not using a thermal printer, though. We need to print labels using a standard printer + self-adhesive labels.Best,Iván TodorovichEl lun., 16 nov. 2020 a las 11:32, Kiril Vangelovski (<kiril@lambda-is.com>) escribió:For Zebra printer labels (ZPL) check:
https://github.com/OCA/report-print-send/tree/12.0/printer_zpl2
On 16.11.20 14:57, Iván Todorovich wrote:
Hi all,
We have a requirement to print product labels with barcodes/info:
- Configure label size, margin, padding (similar config than https://github.com/OCA/partner-contact/tree/12.0/partner_label, but with the possibility of saving/reusing label layouts)
- Configure fields to print // label template
- Select number of labels per product to print
Do you know if there's any module like this in OCA?
Best,
Iván Todorovich_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Iván Todorovich - 03:40 - 16 Nov 2020 -
Re: Module to print Product Labels
For Zebra printer labels (ZPL) check:
https://github.com/OCA/report-print-send/tree/12.0/printer_zpl2
On 16.11.20 14:57, Iván Todorovich wrote:
Hi all,
We have a requirement to print product labels with barcodes/info:
- Configure label size, margin, padding (similar config than https://github.com/OCA/partner-contact/tree/12.0/partner_label, but with the possibility of saving/reusing label layouts)
- Configure fields to print // label template
- Select number of labels per product to print
Do you know if there's any module like this in OCA?
Best,
Iván Todorovich_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
by Kiril Vangelovski - 03:31 - 16 Nov 2020
-
-
How to propagate custom info/note from Sale Order Line to Purchase Order Line using MTO
Hello, for our customers we offer standard products but also one-off custom-made stuff that we order from our suppliers. These are for example special tables with individual dimensions for each project. So we have a "template" product (not in the Odoo meaning) that we put into Sale Order and in the special SOL field we specify the dimensions. Now if the customer accepts the offer, Purchase Order is automatically created as we have MTO setup. We do not group POs nor POLs, so each SOL gets its own POL. Now how would I be able to propagate contents of that special SOL field into its apropriate POL? Or should I use any other approach? Thank you very much. Best regards Radovan Skolnik
by Radovan Skolnik - 03:35 - 13 Nov 2020-
Re: How to propagate custom info/note from Sale Order Line to Purchase Order Line using MTO
I was trying this direction. But somehow the second procurement that was creating PO(L)s didn't have those - only the first one creating the move. But will try again. Best regards Radovan On piatok 13. novembra 2020 16:32:10 CET Christian Zöllner wrote: > Hi, for Odoo 12 (maybe for later versions too) you can propagate your > sales order line values by extending > sale.order.line._prepare_procurement_values() Later on - i won't get into > detail ;-) - those values should end up in > purchase.order.line._update_purchase_order_line(). That should be enough > to get values from sales order lines through procurement to purchase order > lines. Best Regards Christian Von: *"Radovan Skolnik" > <radovan@skolnik.info> An: *"Odoo Community Association, (OCA) > Contributors" <contributors@odoo-community.org> Gesendet: *Freitag, 13. > November 2020 15:37:00 Betreff: *How to propagate custom info/note from > Sale Order Line to Purchase Order Line using MTO Hello, for our > customers we offer standard products but also one-off custom-made stuff > that we order from our suppliers. These are for example special tables with > individual dimensions for each project. > So we have a "template" product (not in the Odoo meaning) that we put into > Sale Order and in the special SOL field we specify the dimensions. Now if > the customer accepts the offer, Purchase Order is automatically created as > we have MTO setup. We do not group POs nor POLs, so each SOL gets its own > POL. Now how would I be able to propagate contents of that special SOL > field into its apropriate POL? Or should I use any other approach? > Thank you very much. Best regards > Radovan Skolnik > > > _______________________________________________ Mailing-List: > https://odoo-community.org/groups/contributors-15 [1] Post to: > mailto:contributors@odoo-community.org Unsubscribe: > https://odoo-community.org/groups?unsubscribe [2] -- Christian Zöllner > E-Mail: c.zoellner@intero-technologies.de Intero Technologies GmbH > Heinrich-Heine-Ring 76 D - 18435 Stralsund Tel: +49 (0) 3831 – 44 55 7 - 0 > Fax: +49 (0) 3831 – 44 55 7 - 79 Internet: www.intero-technologies.de > Intero Technologies GmbH • Firmensitz: Heinrich-Heine-Ring 76, 18435 > Stralsund , Deutschland • Registergericht: Amtsgericht Stralsund, HRB 7076 > • Geschäftsführer: Frank Löffler, Lars Lifson • USt-Ident.Nr. DE 251251697 > This eMail and its content is dedicated to the intended recipient only. If > you have received it in error please contact the sender immediately by fax > or return eMail. Please then delete the eMail and any copies of it. > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 [3] > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe [4] > > > > [1] https://odoo-community.org/groups/contributors-15 > [2] https://odoo-community.org/groups?unsubscribe > [3] https://odoo-community.org/groups/contributors-15 > [4] https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 06:06 - 14 Nov 2020 -
Re: How to propagate custom info/note from Sale Order Line to Purchase Order Line using MTO
In a way yes. This is already done (at least partially) by sale_stock, purchase_stock, sale_purchase. But in this scenario PO(L)s are created by stock rules that are created in between (not using dropshipping). So the PO(L)s are created from these stock rules and not directly from SO(L)s. Maybe there is a link between I do not know. So far I like Pedro's idea the best but have to investigate how and if this would work in my scenario. Best regards Radovan On piatok 13. novembra 2020 16:12:29 CET Yann Papouin wrote: > You want create a link between a POL and SOL to access your specific SOL > fields for each POL ? > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 [1] > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe [2] > > > > [1] https://odoo-community.org/groups/contributors-15 > [2] https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 06:06 - 14 Nov 2020 -
Re: How to propagate custom info/note from Sale Order Line to Purchase Order Line using MTO
Thanx Ivan, will have a look and adapt if needed. Best regards Radovan On piatok 13. novembra 2020 16:12:26 CET Iván Todorovich wrote: > Forgot to mention that’s 12.0 > Le ven. 13 nov. 2020 à 12:00, Iván Todorovich < ivan.todorovich@gmail.com > [1] > a écrit : Hi Radovan, > We've done something similar like this: > class PurchaseOrderLine(models.Model): > _inherit = 'purchase.order.line' > def _merge_in_existing_line( > self, product_id, product_qty, product_uom, > location_id, name, origin, values): > """ Avoid merging lines if they have different names """ > line_name = ', '.join(values['move_dest_ids'].mapped('name')) > if self.name [2] != line_name: > return False > return super()._merge_in_existing_line( > product_id, product_qty, product_uom, location_id, > name, origin, values) > > class StockRule(models.Model): > _inherit = 'stock.rule' > def _make_po_get_domain(self, values, partner): > """ We want to create one purchase order per origin """ > res = super(StockRule, self)._make_po_get_domain(values, partner) > if 'move_dest_ids' in values: > origin = ', '.join(values['move_dest_ids'].mapped('origin')) > res += (('origin', '=', origin),) > return res > def _prepare_purchase_order_line( > self, product_id, product_qty, product_uom, > values, po, partner): > """ Replace the name with the name in the destination movement, > this way we translate custom attribute values """ > res = super()._prepare_purchase_order_line( > product_id, product_qty, product_uom, values, po, partner) > # Copy name from move_ids, if available > if 'move_dest_ids' in values: > name = ', '.join(values['move_dest_ids'].mapped('name')) > if name: > res.update({'name': name}) > # Copy name from sale order (needed for dropshipping) > elif 'sale_line_id' in values: > sol_id = self.env['sale.order.line'].browse(values['sale_line_id']) > if sol_id: > res.update({'name': sol_id.name [3] }) > return res > Best, > * Iván Todorovich * > El vie., 13 nov. 2020 a las 11:58, Radovan Skolnik (< radovan@skolnik.info > [4] >) escribió: Hello Daniel, > but isn't this used for Services only? I have tried it but it never gets > called with Products. With Products the flow goes through Procurements. > Best regards > Radovan > > On piatok 13. novembra 2020 15:46:48 CET Daniel Reis wrote: > > Hello, > > > > You can extend the "_purchase_service_prepare_order_values" method, > > originally declared at addons/sale_purchase/models/sale_order.py. > > That prepares the data used to create the POL. > > > > Thanks > > Daniel > > > > On 13/11/2020 14:37, Radovan Skolnik > > wrote: > > > > > > Hello, > > for our customers we offer standard products but also one-off custom-made > > stuff that we order from our suppliers. These are for example special > > tables with individual dimensions for each project. > > So we have a "template" product (not in the Odoo meaning) that we put into > > Sale Order and in the special SOL field we specify the dimensions. Now if > > the customer accepts the offer, Purchase Order is automatically created as > > we have MTO setup. We do not group POs nor POLs, so each SOL gets its own > > POL. Now how would I be able to propagate contents of that special SOL > > field into its apropriate POL? Or should I use any other approach? > > Thank you very much. Best regards > > Radovan Skolnik > > > > > > _______________________________________________ > > Mailing-List: https://odoo-community.org/groups/contributors-15 [5] [1] > > Post to: mailto: contributors@odoo-community.org [6] [2] > > Unsubscribe: https://odoo-community.org/groups?unsubscribe [7] [3] > > > > > > > > > > _______________________________________________ > > Mailing-List: https://odoo-community.org/groups/contributors-15 [8] [4] > > Post to: mailto: contributors@odoo-community.org [9] > > Unsubscribe: https://odoo-community.org/groups?unsubscribe [10] [5] > > > > > > > > [1] https://odoo-community.org/groups/contributors-15 [11] > > [2] mailto: contributors@odoo-community.org [12] > > [3] https://odoo-community.org/groups?unsubscribe [13] > > [4] https://odoo-community.org/groups/contributors-15 [14] > > [5] https://odoo-community.org/groups?unsubscribe [15] > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 [16] > Post to: mailto: contributors@odoo-community.org [17] > Unsubscribe: https://odoo-community.org/groups?unsubscribe [18] > > -- > > * Iván Todorovich * > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 [19] > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe [20] > > > > [1] mailto:ivan.todorovich@gmail.com > [2] http://self.name > [3] http://sol_id.name > [4] mailto:radovan@skolnik.info > [5] https://odoo-community.org/groups/contributors-15 > [6] mailto:contributors@odoo-community.org > [7] https://odoo-community.org/groups?unsubscribe > [8] https://odoo-community.org/groups/contributors-15 > [9] mailto:contributors@odoo-community.org > [10] https://odoo-community.org/groups?unsubscribe > [11] https://odoo-community.org/groups/contributors-15 > [12] mailto:contributors@odoo-community.org > [13] https://odoo-community.org/groups?unsubscribe > [14] https://odoo-community.org/groups/contributors-15 > [15] https://odoo-community.org/groups?unsubscribe > [16] https://odoo-community.org/groups/contributors-15 > [17] mailto:contributors@odoo-community.org > [18] https://odoo-community.org/groups?unsubscribe > [19] https://odoo-community.org/groups/contributors-15 > [20] https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 05:55 - 14 Nov 2020 -
Re: How to propagate custom info/note from Sale Order Line to Purchase Order Line using MTO
Hi,for Odoo 12 (maybe for later versions too) you can propagate your sales order line values by extending sale.order.line._prepare_procurement_values()Later on - i won't get into detail ;-) - those values should end up in purchase.order.line._update_purchase_order_line().That should be enough to get values from sales order lines through procurement to purchase order lines.Best RegardsChristianVon: "Radovan Skolnik" <radovan@skolnik.info>
An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
Gesendet: Freitag, 13. November 2020 15:37:00
Betreff: How to propagate custom info/note from Sale Order Line to Purchase Order Line using MTOHello, for our customers we offer standard products but also one-off custom-made stuff that we order from our suppliers. These are for example special tables with individual dimensions for each project. So we have a "template" product (not in the Odoo meaning) that we put into Sale Order and in the special SOL field we specify the dimensions. Now if the customer accepts the offer, Purchase Order is automatically created as we have MTO setup. We do not group POs nor POLs, so each SOL gets its own POL. Now how would I be able to propagate contents of that special SOL field into its apropriate POL? Or should I use any other approach? Thank you very much. Best regards Radovan Skolnik
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Christian Zöllner
E-Mail: c.zoellner@intero-technologies.de
Intero Technologies GmbH
Heinrich-Heine-Ring 76
D - 18435 Stralsund
Tel: +49 (0) 3831 – 44 55 7 - 0
Fax: +49 (0) 3831 – 44 55 7 - 79
Internet: www.intero-technologies.de
Intero Technologies GmbH • Firmensitz: Heinrich-Heine-Ring 76, 18435 Stralsund , Deutschland • Registergericht: Amtsgericht Stralsund, HRB 7076 • Geschäftsführer: Frank Löffler, Lars Lifson • USt-Ident.Nr. DE 251251697
This eMail and its content is dedicated to the intended recipient only. If you have received it in error please contact the sender immediately by fax or return eMail. Please then delete the eMail and any copies of it.
by Christian Zöllner - 04:31 - 13 Nov 2020 -
Re: How to propagate custom info/note from Sale Order Line to Purchase Order Line using MTO
You want create a link between a POL and SOL to access your specific SOL fields for each POL ?
by Yann Papouin - 04:11 - 13 Nov 2020
-
-
UBL EDI - DespatchAdvice aka Delivery Order
Hi all,Is there some initiatives or plan to implements this flow in OdooAlso describe here:I suppose that is near of https://github.com/OCA/edi/blob/12.0/base_ubl/data/xsd-2.1/maindoc/UBL-ReceiptAdvice-2.1.xsdThanks a lotConsultantOdoo Intégration / Développement
by David BEAL - 02:36 - 12 Nov 2020-
Re: UBL EDI - DespatchAdvice aka Delivery Order
Hello guys,In case you are interested I'm working on a GS1 integration for Inbound and Outbound flows.Bests,On Mon, Nov 16, 2020 at 7:02 PM David Beal <david.beal@akretion.com> wrote:Hi Laurent,Thanks a lot for this feedback. I have to convince my client to use this format in v12.The use case concerns an external warehouse without Odoo.It sends goods for my customer and could send back a DespatchAdvice for each delivery.I have to reconcile this document with Odoo delivery orders.Le ven. 13 nov. 2020 à 17:16, Mignon, Laurent <laurent.mignon@acsone.eu> a écrit :Hi David,We plan to implement this process for Odoo 10 in the next few weeks...Regards,Laurent MignonOn Thu, Nov 12, 2020 at 2:37 PM David Beal <david.beal@akretion.com> wrote:Hi all,Is there some initiatives or plan to implements this flow in OdooAlso describe here:I suppose that is near of https://github.com/OCA/edi/blob/12.0/base_ubl/data/xsd-2.1/maindoc/UBL-ReceiptAdvice-2.1.xsdThanks a lotConsultantOdoo Intégration / Développement_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, Freelance in love with open source.
by Simone Orsi. - 07:45 - 17 Nov 2020 -
Re: UBL EDI - DespatchAdvice aka Delivery Order
Hi Laurent,Thanks a lot for this feedback. I have to convince my client to use this format in v12.The use case concerns an external warehouse without Odoo.It sends goods for my customer and could send back a DespatchAdvice for each delivery.I have to reconcile this document with Odoo delivery orders.Le ven. 13 nov. 2020 à 17:16, Mignon, Laurent <laurent.mignon@acsone.eu> a écrit :Hi David,We plan to implement this process for Odoo 10 in the next few weeks...Regards,Laurent MignonOn Thu, Nov 12, 2020 at 2:37 PM David Beal <david.beal@akretion.com> wrote:Hi all,Is there some initiatives or plan to implements this flow in OdooAlso describe here:I suppose that is near of https://github.com/OCA/edi/blob/12.0/base_ubl/data/xsd-2.1/maindoc/UBL-ReceiptAdvice-2.1.xsdThanks a lotConsultantOdoo Intégration / Développement_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by David BEAL - 07:00 - 16 Nov 2020 -
Re: UBL EDI - DespatchAdvice aka Delivery Order
Hi David,We plan to implement this process for Odoo 10 in the next few weeks...Regards,Laurent MignonOn Thu, Nov 12, 2020 at 2:37 PM David Beal <david.beal@akretion.com> wrote:Hi all,Is there some initiatives or plan to implements this flow in OdooAlso describe here:I suppose that is near of https://github.com/OCA/edi/blob/12.0/base_ubl/data/xsd-2.1/maindoc/UBL-ReceiptAdvice-2.1.xsdThanks a lotConsultantOdoo Intégration / Développement_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Laurent Mignon - 05:15 - 13 Nov 2020
-
-
Odoo-test-helper
Hi AllI would like to share odoo-test-helper in OCA.It's a python lib compatible with odoo V8 to V14 (also work with current master) that help you to test abstract module by loading testing odoo class without creating testing-moduleIt was done by several OCA contributor- Laurent Mignon <laurent.mignon@acsone.eu>
- Simone Orsi <simone.orsi@camptocamp.com>
- Sébastien BEAU <sebastien.beau@akretion.com>
You can see example in the readme here : https://github.com/akretion/odoo-test-helperIt's already used in several OCA repo.If you are ok, I can change the owner of the repo and then we should re-configure pypi automatic deploy
by Sébastien Beau - 11:36 - 9 Nov 2020-
-
Re: Odoo-test-helper
Well, the question was "shall we move odoo-test-helper to OCA" and the answer is here now ;)On Tue, Dec 7, 2021 at 11:41 AM Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:I have lost context and don't remember it. Can you repeat the question with full context?Regards._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source.
by Simone Orsi. - 11:46 - 7 Dec 2021 -
Re: Odoo-test-helper
I have lost context and don't remember it. Can you repeat the question with full context?Regards.
by Pedro M. Baeza - 11:40 - 7 Dec 2021 -
Re: Odoo-test-helper
Hi all,getting back to this after quite some time...Can we do the switch?Cheers,S.On Mon, Nov 9, 2020 at 12:24 PM Simone Orsi <simahawk@gmail.com> wrote:On Mon, Nov 9, 2020 at 11:46 AM Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:It's useful indeed, thanks. Note that a similar technique was already used in modules like `base_multi_company`: https://github.com/OCA/multi-company/blob/12.0/base_multi_company/tests/test_multi_company_abstract.py#L19yeah but this approach - which we used several times in different ways in different contexts - turned out to not be 100% reliable regarding registry cleanup, especially when registering extensions of existing models.I think this should be included in https://github.com/OCA/oca-de# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
corators (and maybe change its name to ocalib or similar), or convert it to a decorator over a class. If we split a lot the number of helpers libraries across OCA, it would be impossible to follow them. Having grouped in one library, will help the discovering and also to join efforts in the maintenance.Probably it's better to keep it separated, at least for now. Also, handling releases for a narrower scope will be easier.Regards._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, Freelance in love with open source.
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source.
by Simone Orsi. - 11:00 - 7 Dec 2021 -
Re: Odoo-test-helper
On Mon, Nov 9, 2020 at 11:46 AM Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:It's useful indeed, thanks. Note that a similar technique was already used in modules like `base_multi_company`: https://github.com/OCA/multi-company/blob/12.0/base_multi_company/tests/test_multi_company_abstract.py#L19yeah but this approach - which we used several times in different ways in different contexts - turned out to not be 100% reliable regarding registry cleanup, especially when registering extensions of existing models.I think this should be included in https://github.com/OCA/oca-de# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
corators (and maybe change its name to ocalib or similar), or convert it to a decorator over a class. If we split a lot the number of helpers libraries across OCA, it would be impossible to follow them. Having grouped in one library, will help the discovering and also to join efforts in the maintenance.Probably it's better to keep it separated, at least for now. Also, handling releases for a narrower scope will be easier.Regards._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, Freelance in love with open source.
by Simone Orsi. - 12:26 - 9 Nov 2020
-
OCA 2020 Delegate Election Results plus Financial Auditors Campaign NOW OPEN
Dear OCA Contributors,
I wanted to share with you the new 2020 Delegates from the election we have just run:- Alexandre Díaz
- Bhavesh Odedra
- Carlos Daudén Calvete
- Marcos Méndez Quintero
- Mihai-Adrian Fekete
- Raphaël Reverdy
- Raphaël Valyi
- Renato Lima
- Souheil Bejaoui
- Wolfgang Hall
Thank you to all the Members that applied. It is great to see motivation and enthusiasm within the group and certainly helps to keep an active and engaged community.
As a Contributor if you aren't already a Member and would like to become one you can purchase your membership online here.To let you know we have also opened the Board Member and Financial Auditor Campaigns.
Only Delegates can apply to become Board Members (this includes our new Delegates) but you do not need to be a Member or Delegate to apply to become a Financial Auditor. The application survey is here. This campaign will close on Friday 20th November, 2020.
Any questions, please let me know.
Warm regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 09:11 - 9 Nov 2020-
Re: OCA 2020 Delegate Election Results plus Financial Auditors Campaign NOW OPEN
Congratulations for allLe lun. 9 nov. 2020 à 09:12, Rebecca Gellatly <rebecca@o4sb.com> a écrit :
Dear OCA Contributors,
I wanted to share with you the new 2020 Delegates from the election we have just run:- Alexandre Díaz
- Bhavesh Odedra
- Carlos Daudén Calvete
- Marcos Méndez Quintero
- Mihai-Adrian Fekete
- Raphaël Reverdy
- Raphaël Valyi
- Renato Lima
- Souheil Bejaoui
- Wolfgang Hall
Thank you to all the Members that applied. It is great to see motivation and enthusiasm within the group and certainly helps to keep an active and engaged community.
As a Contributor if you aren't already a Member and would like to become one you can purchase your membership online here.To let you know we have also opened the Board Member and Financial Auditor Campaigns.
Only Delegates can apply to become Board Members (this includes our new Delegates) but you do not need to be a Member or Delegate to apply to become a Financial Auditor. The application survey is here. This campaign will close on Friday 20th November, 2020.
Any questions, please let me know.
Warm regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by David BEAL - 09:31 - 9 Nov 2020
-
Advanced(?) QWeb question using customize_show and active
Hello,
I am working on extending website_sale_hide_empty_category so that recursively empty directories will be hidden in website_sale. However I encountered an issue here. Let me explain. In website_sale the list of categories is rendered using template products_categories which in calls recursive template website_sale.categories_recursive. See here. There is a template option_collapse_products_categories that enables collapsing this list of categories - see here. That works in a way that it replaces a t-call to website_sale.categories_recursive in products_categories with t-call to website_sale.option_collapse_categories_recursive.
Now the original approach was to create 2 templates with customize_show that would extend and alter behaviour of website_sale.categories_recursive and website_sale.option_collapse_categories_recursive (to cover both collapsed and non-collapsed rendering). Like this:
<template
inherit_id="website_sale.categories_recursive" id="hide_categories_recursive" active="True"
customize_show="True" name="Hide Empty Category list"
>
<xpath expr="//t[@t-name='website_sale.categories_recursive']" position="attributes">
<attribute name="t-if">c.has_product_recursive</attribute>
</xpath>
</template>
<template
inherit_id="website_sale.option_collapse_categories_recursive" id="hide_categories_collapse_recursive" active="True"
customize_show="True" name="Hide Empty Category in Collapsible list"
>
<xpath expr="//t[@t-name='website_sale.option_collapse_categories_recursive']" position="attributes">
<attribute name="t-if">c.has_product_recursive</attribute>
</xpath>
</template>
However this does not work - the customize option is never shown for website_sale.option_collapse_categories_recursive. My guess is the rendering engine skips that because on parsing the templates it cannot find any instance where website_sale.option_collapse_categories_recursive would be used. Even if you activate option for it, the option for the website_sale.categories_recursive is still rendered.
There would be no issue if both templates would be active - because only one of them would be in effect. But then I'd need a way to activate them both upon one radio button (customize_show). Is there a way to do that? I have tried template inside a template. Not working. Or is there a way to set a variable in one template that would be visible in other templates? I'd create a helper template with customize_show that would set the variable that would be included in condition of both the above templates.
Thank you very much. Best regards
Radovan Skolnik
by Radovan Skolnik - 12:10 - 5 Nov 2020



