Can we use product configurator In Custom Module Odoo - odoo

I create a custom module in my Odoo, one of my models is having a relation to product variant or Product.Product model, I want to use product configurator like in the sales_product_line tree. I already trying to use the widget on my field and import the product configurator module And try to make my view code the same as sales_product_line code, I even add the product_configurator javascript but still no luck. Is there any workaround to achieve this.
This is the view that I trying to achieve

As per My knowledge Product Configurator can not use in the custom model, This module is only the foundation for external configuration interfaces such as 'product_configurator_wizard' or 'website_product_configurator'.
This module does not configure custom products
but offers the basis for generating, validating, updating configurable products using configuration interfaces.
Thanks!
Karmdip Joshi

Related

BigCommerce - BluePrint Issue - Product Options

After creating custom product page in Blueprint and adding an option set with over 30 different options, I figured that the scss/js won't be applied to another product even if they use the same custom template, due to the fact that the only way to target each option is by using its ID. The template becomes no longer valid for another product, since the JS is targeting IDs that don't exist for the new product. Did the regular API call with the idea of copy/pasting product option ids from one product to another, but unfortunately the product option IDs are read-only. Any ideas ??? Thank you in advance.

How to display products from external API in prestashop

I want to integrate products from live external api into prestashop 1.6, so user can add them to cart and make orders also.
I found a solution to override the function that call products from Database but the website countaine modules that call products directely from database (it is not solution to override the modules also, because if there is a new ones it hard to do the same work).
I'm waiting for you solutions.
Thank you
In your case I see two solutions:
- You import the products in question in your Prestashop shop
- You change the product classes, Categories, etc ... to no longer query on the database, but on your API
Regards,

How to add custom logic in odoo10 e-commerce module? Which model in odoo10 should I inherit to extend e-commerce cart logic?

I want to add some custom logic into odoo 10 e-commerce module. I know I have to create a new addon for that. But I am not getting from where I should start the module development.
As the developer mode not helping me in website module to show elements properties when I hover over it. So I am not getting the model's name, field name.. What are the starting steps towards this development?
I want to change the logic in web when we add product to the cart I want to serve that product on monthly basis so select 2 dates, and then the regular billing for the same.
You should read the source code of the modules related to website_sale, you could find it online at:
https://github.com/odoo/odoo/tree/11.0/addons

"stock.picking.out" and "stock.picking.in" are missing in Odoo 8

I am using Odoo 8. In order to use Webkit to custom my invoices, I have to install the "Invoice to Picking Relation" module (technical name: picking_invoice_rel). However, when I try to install this module, I discover that the stock.picking.out and stock.picking.in models are missing.
These models were afforded by the stock module in OpenERP 7.
Could someone tell me what to do?
#Zoumourrouda
Yes you are right new WMS in v8 has removed the stock.picking.out and stock.picking.in object that sad part but good part was those both object were _inherits from stock.picking object so you can create sme report on stock.picking object and you an use picking_type_id.code field to check this is supplier or customer or internal picking and create report label according.
and Moreover you can migrate your stock.picking.out and stock.picking.in data on stock.picking table and you wll still have all data. (NOTE" BECAREFULL WHILE DOING MIGRATION TO MESH UP ;))
Thanks

RCP extensions from several plugin's

I have RCP, and 2 products, based on fetures. I have my.project.gui plugin, that have some gui-extensios, like views, perspectives, prefetencePages. etc..
First product have some gui (feature of this product includes my.project.gui). And I want to my second product to have some extended gui. I created plugin, named my.project.gui.extended and added it to my second project feature. Then added some gui-excensions to my.project.gui.extended. But this doest work! I lauch my second product and see only my.project.gui-extensions, and dont see my.project.gui.extended-extensions.
Tried to add my.project.gui.extended to all dependences, but this didnt solve problem.
Is there any things i need to do to make this work? Or I need to this job in some other way?
===================================
Added information:
1st product feature has:
my.product.main1 (plugin with 1st product, application class, etc... has gui in dependences),
my.product.gui,
my.product.shared,
my.product.others1
2nd product feature has:
my.product.main2 (plugin with 2nd product, application class, etc... has gui and gui.extended in dependences),
my.product.gui,
my.product.gui.extended,
my.product.shared,
my.product.others2
type of extention is org.eclipse.ui.preferencePages (2nd product has server preference page, but 1st doesn't)
i think this is not runtime problem.
Solved my problem by adding this extensions to my.product.main2, not to my.product.gui.extended. This is not exectly what i wanted, but it works