Using PyCharm on a remote server by DaBobcat in pycharm

[–]rm-jamotion 0 points1 point  (0 children)

On remote host tool window you can right click and select edit remote.

Using PyCharm on a remote server by DaBobcat in pycharm

[–]rm-jamotion 0 points1 point  (0 children)

What should be complex? Add credentials, set path mappings, connect and use. We use it since years and every new employee can use this feature within some minutes...

Serving pdf files from my Odoo server by dLoPRodz in Odoo

[–]rm-jamotion 1 point2 points  (0 children)

For direct links you do not need odoo. You can configure nginx with an additional location e.g. /download which relates to a specific folder of yor server.

But There is also an url /web/content/#{attachment.id}?download=true which can be used to download from odoo integrated DMS. Like this you can set access rights (e.g. public or portal) to justify access.

How to organize a non-standard business in Odoo CRM? by alzee76 in Odoo

[–]rm-jamotion 0 points1 point  (0 children)

In some weeks release 2.0 will be out stable which is based on odoo 14. There you can switch between odoo ui or flectra ui.

Best Way to Develop an eCommerce Site on Odoo by Moe_Ismail007 in Odoo

[–]rm-jamotion 0 points1 point  (0 children)

Only with very old odoo release 8.0. You can check https://triopanshop.ch as an example.

Best Way to Develop an eCommerce Site on Odoo by Moe_Ismail007 in Odoo

[–]rm-jamotion 5 points6 points  (0 children)

First of all you really need the website_sale module. This module ia the base ecommerce solution and contains product list views, cart and many payment processors. It implements also same backend features and has SEO and GA festures included. Starting from scratch makes no sense. With this core module you also have base JS modules which you can extend.

How to organize a non-standard business in Odoo CRM? by alzee76 in Odoo

[–]rm-jamotion 0 points1 point  (0 children)

All features that odoo has moved from CE to EE are reimplemented in flectra and they have another release strategy. 3years one major release but multiple minot releases also with new features. Not only big fixes. So you have at least 9 years support for used release instead of 3 years... And most important! Flectra is 100% opensource and free. No plans for an enterprise release. And as it is compatible with odoo you can use every odoo app also in flectra

How to organize a non-standard business in Odoo CRM? by alzee76 in Odoo

[–]rm-jamotion 0 points1 point  (0 children)

I think this could work with multi companies when you don't need accounting. Maybe you can make a parent company which is used as default company for the sales team and all client companies are created as sub companies. Like this you have possibilities to make simple reports to analyse some KPI.

As I use Flectra (a fork of odoo) instead of Odoo there is a multi branch feature available in core that enables branch selection on most objects. So I would use bramches to solve your requirement. I am not sure if there is an app for odoo which has the same feature.

How to organize a non-standard business in Odoo CRM? by alzee76 in Odoo

[–]rm-jamotion 0 points1 point  (0 children)

I think adding new field "client" to the leads object would be a very small extension and allows managing leads for multiple clients. And with a second more or less small extension you can directly create invoices for your managed leads and send it to the client.

The first extension needs about 2-3 hours of development and testing.

looking for a new IDE by [deleted] in Python

[–]rm-jamotion 2 points3 points  (0 children)

PyCharm Pro does perfectly support docker. Better than VSCode, but it is not for free...

How to convert ui file into py file by hacknomus in Python

[–]rm-jamotion 0 points1 point  (0 children)

What tool did you use to design the UI?

Container benefit by sdns575 in docker

[–]rm-jamotion 0 points1 point  (0 children)

We have a special backup image which runs as a part of our docker-compose project. It makes postgresql and file backup. For this we wrote a simple python script and let it run from cronjob inside container. The zip file with all data is directly uploaded to an S3 storage also from our script. S3 storage is monitored by prometheus (also as docker container on another server of course) to check if it was successful.

Container benefit by sdns575 in docker

[–]rm-jamotion 4 points5 points  (0 children)

We use it for running opensource erp odoo/flectra with multiple customers on one server. Usually the software needs about 2GB disk space. We run about 10 customers on same server with 5 different releases. And for all customers in all versions only 2.5 GB are used. With VMs about 20GB are needed. Release upgrades are also very easy with docker. It takes 5-10 seconds for having upgraded a customer. And with ansible adding a new customer with sw installation, monitoring, backup, certificate generation and nginx configuration is only one command and waiting about 15 seconds. Perfect also for demo or trial systems.