跳至內容
選單
此問題已被標幟
2 回覆
2076 瀏覽次數

hello everyone

I have created a form on a website page so that users can enter their product information, after submitting the form I want to save all the information as a new product. How do I do that?


頭像
捨棄
最佳答案

 Hi
You can add a controller to do that

1.In website form add the action and method as post-

action="/create/product" method="POST" 


2.Add a controller
@http.route('/create/product', type="http", auth="public", website=True) 
 def create_product(self, **kw): 
request.env['product.patient'].sudo().create(kw)


Make sure that the fields in the website form is same as product,otherwise add them as a dict instead of kw

頭像
捨棄
最佳答案

Hello, 

it is very simple with the help of Studio. You can go to the inventory => Products. Then click on the studio icon and go the website tab. Then click on the form and prepare the form in the website. 



頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
8月 25
132
2
6月 25
1677
0
3月 25
1549
0
2月 25
1191
3
8月 24
5889