我们正在为企业使用Odoo 12软件。
我们要复制产品页面上“添加到购物车”按钮的行为。 因此,我们想在其他页面上添加一个按钮,然后当您单击该按钮时,将产品添加到购物车并重定向到购物车。 产品已硬编码到该按钮。
这是产品页面模板上使用的表单:
<form t-if="product._is_add_to_cart_possible()" action="/shop/cart/update" method="POST">
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
<div class="js_product js_main_product">
<t t-placeholder="select">
<input type="hidden" class="product_id" name="product_id" t-att-value="product_variant.id"/>
<input type="hidden" class="product_template_id" name="product_template_id" t-att-value="product.id"/>
<t t-if="first_possible_combination" t-call="sale.variants">
<t t-set="ul_class" t-value="'flex-column'"/>
<t t-set="parent_combination" t-value="None"/>
</t>
<t t-else="">
<ul class="d-none js_add_cart_variants" t-att-data-attribute_exclusions="{'exclusions: []'}"/>
</t>
</t>
<t t-call="website_sale.product_price"/>
<p t-if="True" class="css_not_available_msg alert alert-warning">This combination does not exist.</p>
<a role="button" id="add_to_cart" class="btn btn-primary btn-lg mt8 js_check_product a-submit" href="#">Add to Cart</a>
</div>
</form>
我们的产品信息:product.id = 135
和product_template.id = 83
。
我发现,使用/web/content/.../.../web.assets_frontend.js
调用负责添加到购物车的javascript。这是一个很大的文件,但您可以在此处查看示例:file。
我应该在哪个自定义页面上添加哪个qweb / form / js / ...以便将产品添加到购物车中?
感谢您的帮助,我已经坚持了很长时间!
修改: 正如@Philippe Pageau指出的那样,我可以使用一些代码来获取正确的产品。我尝试使用此代码(我能想到的最简单的表单版本)与表单一起实现它:
<t t-set="products" t-value="request.env['product.product'].search([['id', '=', 135]])"/>
<t t-foreach="products" t-as="product">
<form action="/shop/cart/update" method="POST">
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
<input type="hidden" class="product_id" name="product_id" value="135"/>
<input type="hidden" class="product_template_id" name="product_template_id" value="83"/>
<a role="button" id="add_to_cart" class="btn btn-primary btn-lg mt8 js_check_product a-submit" href="#">Add to Cart</a>
</form>
</t>
但这无能为力,我想念什么?
Edit2 :
由于@Adan Cortes,我们现在已经走得更远了,但是仍然有1个问题。
现在,当用户单击按钮时,产品将以特定数量添加到购物车中。
现在这是我的代码:
<t t-set="products" t-value="request.env['product.product'].search([['id', '=', 135]])"/>
<t t-foreach="products" t-as="product">
<div id="product_detail" class="oe_website_sale">
<form action="/shop/cart/update" method="POST">
<h4 t-esc="product.name"/>
<h6 t-esc="product.price"/>
<input class="form-control" data-min="1" name="add_qty" value="1"/>
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
<input type="hidden" class="product_id" name="product_id" value="135"/>
<a role="button" id="add_to_cart" class="btn btn-primary btn-lg mt8 js_check_product a-submit" href="#">Add to Cart</a>
</form>
</div>
</t>
但这是我最后的问题:
此代码未显示产品价格。 <h6 t-esc="product.price"/>
显示0.00
。那么如何显示价格?
最后是否可以仅使用1个按钮和表格一次添加多个产品?
答案 0 :(得分:2)
以下代码有效:
<div id="product_detail" class="oe_website_sale">
<form action="/shop/cart/update" method="POST">
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>
<input type="hidden" class="product_id" name="product_id" value="135"/>
<a role="button" id="add_to_cart" class="btn btn-primary btn-lg mt8 js_check_product a-submit" href="#">Add to Cart</a>
</form>
</div>
但是请注意,使用数据库ID会使您的模块在其他地方无法使用。您最好使用xmlids。
您缺少的相关JavaScript位于:
<path_to_v12>/addons/website_sale/static/src/js/website_sale.js
135 sAnimations.registry.WebsiteSale = sAnimations.Class.extend(ProductConfiguratorMixin, {
136 selector: '.oe_website_sale',
137 read_events: {
138 'change form .js_product:first input[name="add_qty"]': '_onChangeAddQuantity',
139 'mouseup .js_publish': '_onMouseupPublish',
140 'touchend .js_publish': '_onMouseupPublish',
141 'change .oe_cart input.js_quantity[data-product-id]': '_onChangeCartQuantity',
142 'click .oe_cart a.js_add_suggested_products': '_onClickSuggestedProduct',
143 'click a.js_add_cart_json': '_onClickAddCartJSON',
144 'click .a-submit': '_onClickSubmit',
145 'change form.js_attributes input, form.js_attributes select': '_onChangeAttribute',
146 'mouseup form.js_add_cart_json label': '_onMouseupAddCartLabel',
147 'touchend form.js_add_cart_json label': '_onMouseupAddCartLabel',
148 'click .show_coupon': '_onClickShowCoupon',
149 'submit .o_website_sale_search': '_onSubmitSaleSearch',
150 'change select[name="country_id"]': '_onChangeCountry',
151 'change #shipping_use_same': '_onChangeShippingUseSame',
152 'click .toggle_summary': '_onToggleSummary',
153 'click input.js_product_change': 'onChangeVariant',
154 'change .js_main_product [data-attribute_exclusions]': 'onChangeVariant',
155 },
和<path_to_v12>/addons/website_sale/static/src/js/website_sale_tracking.js
5 sAnimations.registry.websiteSaleTracking = sAnimations.Class.extend({
6 selector: '.oe_website_sale',
7 read_events: {
8 'click form[action="/shop/cart/update"] a.a-submit': '_onAddProductIntoCart',
9 'click a[href="/shop/checkout"]': '_onCheckoutStart',
10 'click div.oe_cart a[href^="/web?redirect"][href$="/shop/checkout"]': '_onCustomerSignin',
11 'click form[action="/shop/confirm_order"] a.a-submit': '_onOrder',
12 'click form[target="_self"] button[type=submit]': '_onOrderPayment',
13 },
编辑后添加
表单数据由以下控制器处理和调度:
<path_to_v12>/addons/website_sale/controllers/main.py
414 @http.route(['/shop/cart/update'], type='http', auth="public", methods=['POST'], website=True, csrf=False)
415 def cart_update(self, product_id, add_qty=1, set_qty=0, **kw):
416 """This route is called when adding a product to cart (no options)."""
418 sale_order = request.website.sale_get_order(force_create=True)
419 if sale_order.state != 'draft':
420 request.session['sale_order_id'] = None
421 sale_order = request.website.sale_get_order(force_create=True)
422
423 product_custom_attribute_values = None
424 if kw.get('product_custom_attribute_values'):
425 product_custom_attribute_values = json.loads(kw.get('product_custom_attribute_values'))
426
427 no_variant_attribute_values = None
428 if kw.get('no_variant_attribute_values'):
429 no_variant_attribute_values = json.loads(kw.get('no_variant_attribute_values'))
430
431 sale_order._cart_update(
432 product_id=int(product_id),
433 add_qty=add_qty,
434 set_qty=set_qty,
435 product_custom_attribute_values=product_custom_attribute_values,
436 no_variant_attribute_values=no_variant_attribute_values
437 )
438 return request.redirect("/shop/cart")
答案 1 :(得分:0)
据我了解,您需要索取产品,因为它不仅要索要产品,还索要模板。
我为我的采购订单页面提取了所有产品。 因此,这就是我创建产品变量的方法。
<t t-set="products" t-value="request.env['product.product'].search([])/>
<t t-foreach="products" t-as="product">
<!-- your code here -->
</t>
要搜索特定产品
.search(['id', '=', yourId])
请注意,即使指定ID,它也会返回一个数组