Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
6157 Lượt xem
<record id="act_product_pos_sale" model="ir.actions.act_window">
            <field name="name">POS Product Sale1</field>
            <field name="res_model">product.product</field>
            <field name="view_id" ref="product.product_product_tree_view"/>
        </record>

        <record model="ir.ui.view" id="product_form_pos_sale_button">
            <field name="name">product.product.sale.pos.order</field>
            <field name="model">product.product</field>
            <field name="inherit_id" ref="product.product_normal_form_view"/>
            <field name="arch" type="xml">
                <div name="button_box" position="inside">
                    <button class="oe_stat_button" name="action_view_pos_product"
                        type="object" icon="fa-usd">
                        <field string="POS" name="pos_product_order_total" widget="statinfo" />
                    </button>
                </div>
            </field>
        </record>


class ProductProduct(models.Model):
    _inherit = 'product.product'

 @api.multi
    def action_view_pos_product(self):
        OrderLine = self.env['pos.order.line']
        action = self.env.ref('sale.act_product_pos_sale')
        # action['domain'] = [('product_id', 'in', products.ids)]
        # action['context'] = {'': ,}
        return action


In Product form view there is Button Sale. When you activate it shows tree view with all sale orders for this product. My goal is to make the same button but it has to show all pos orders that was made with this product.

i tried something like this but i know it's total garbage. If someone could explain to me how it works i will be more then grateful

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,

you could do something like this:


        <record model="ir.ui.view" id="product_form_pos_sale_button">
            <field name="name">product.product.sale.pos.order</field>
            <field name="model">product.product</field>
            <field name="inherit_id" ref="product.product_normal_form_view"/>
            <field name="arch" type="xml">
                <div name="button_box" position="inside">
                    <button class="oe_stat_button" name="open_pos_orders" icon="fa-book" type="object">
                 </div>
            </field>
     </record>
@api.multi
def open_pos_orders(self):
self.ensure_one()
pos_orders = self.env['pos.order.line'].search([('product_id', '=', self.id)]).mapped('order_id')

return {
'type': 'ir.actions.act_window',
'name': _('POS orders'),
'res_model': 'pos.order',
'view_mode': 'tree,form',
'domain': [('id', 'in', pos_orders.ids)],
}

            
Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 3 23
2539
0
thg 5 19
3207
1
thg 8 25
942
1
thg 7 25
1189
3
thg 7 25
4099