<?xml version="1.0" encoding="UTF-8"?>
<odoo>
    <data>
        <!-- STOCK.LANDED.COST -->
        <record id='view_stock_landed_cost_form' model='ir.ui.view'>
            <field name="name">stock.landed.cost.form</field>
            <field name="model">stock.landed.cost</field>
            <field name="arch" type="xml">
                <form string="Landed Costs">
                    <header>
                        <button name="button_validate" string="Validate" states="draft" class="oe_highlight" type="object"/>
                        <button name="button_cancel" string="Cancel" states="draft" type="object"/>
                        <field name="state" widget="statusbar" statusbar_visible="draft,done"/>
                    </header>
                    <sheet>
                        <div class="oe_title">
                            <label for="name" class="oe_edit_only"/>
                            <h1>
                                <field name="name" placeholder="Landed Cost Name"/>
                            </h1>
                        </div>
                        <group>
                            <group>
                                <field name="date"/>
                                <field name="picking_ids" widget="many2many_tags" options="{'no_create_edit': True}" domain="[('state', '=', 'done'), ('picking_type_code', '!=', 'internal')]"/>
                            </group>
                            <group>
                                <field name="account_journal_id"/>
                                <field name="account_move_id"/>
                            </group>
                        </group>

                        <separator string="Cost Lines"/>
                        <p class="oe_grey">
                            Landed cost are computed based on the purchase unit of measure.
                        </p>
                        <field name="cost_lines">
                            <form string="Cost Lines">
                                <group>
                                    <group>
                                        <field name="product_id"
                                            domain="[('landed_cost_ok', '=', True)]"
                                            context="{'default_landed_cost_ok': True, 'form_view_ref':'stock_landed_costs.view_stock_landed_cost_type_form'}"/>
                                        <field name="price_unit"/>
                                    </group>
                                    <group>
                                        <field name="split_method"/>
                                        <field name="account_id"/>
                                    </group>
                                </group>
                                <label for="name"/>
                                <field name="name"/>
                            </form>
                            <tree string="Cost Lines" editable="bottom">
                                <field name="product_id"
                                    domain="[('landed_cost_ok', '=', True)]"
                                    context="{'default_landed_cost_ok': True, 'default_type': 'service',  'form_view_ref':'stock_landed_costs.view_stock_landed_cost_type_form'}"/>
                                <field name="name"/>
                                <field name="account_id"/>
                                <field name="split_method"/>
                                <field name="price_unit"/>
                            </tree>
                        </field>
                        <group class="oe_subtotal_footer oe_right">
                            <field name="amount_total" widget="monetary"/>
                            <button colspan="2" name="compute_landed_cost" string="Compute" type="object" class="oe_right btn-secondary" states='draft'/>
                        </group>

                        <div class="oe_clear"/>
                        <separator string="Valuation Adjustments"/>
                        <field name="valuation_adjustment_lines">
                            <form string="Valuation Adjustments">
                                <group>
                                    <group>
                                        <field name="product_id"/>
                                        <field name="quantity"/>
                                    </group>
                                    <group>
                                        <field name="former_cost"/>
                                        <field name="additional_landed_cost"/>
                                    </group>
                                </group>
                            </form>
                            <tree string="Valuation Adjustments" editable="bottom" create="0">
                                <field name="cost_line_id" readonly="1"/>
                                <field name="product_id" readonly="1"/>
                                <field name="weight" readonly="1"/>
                                <field name="volume" readonly="1"/>
                                <field name="quantity" readonly="1"/>
                                <field name="former_cost_per_unit" readonly="1" widget="monetary"/>
                                <field name="former_cost" readonly="1"/>
                                <field name="additional_landed_cost"/>
                            </tree>
                        </field>
                    </sheet>
                    <div class="oe_chatter">
                        <field name="message_follower_ids" widget="mail_followers"/>
                        <field name="message_ids" widget="mail_thread"/>
                    </div>
                </form>
            </field>
        </record>

        <record id='view_stock_landed_cost_tree' model='ir.ui.view'>
            <field name="name">stock.landed.cost.tree</field>
            <field name="model">stock.landed.cost</field>
            <field name="arch" type="xml">
                <tree string="Landed Costs">
                    <field name="name"/>
                    <field name="date"/>
                    <field name="state"/>
                </tree>
            </field>
        </record>

        <record id='stock_landed_cost_view_kanban' model='ir.ui.view'>
            <field name="name">stock.landed.cost.kanban</field>
            <field name="model">stock.landed.cost</field>
            <field name="arch" type="xml">
                <kanban class="o_kanban_mobile">
                    <field name="name"/>
                    <field name="date"/>
                    <field name="state"/>
                    <field name="account_journal_id"/>
                    <templates>
                        <t t-name="kanban-box">
                            <div class="oe_kanban_global_click">
                                <div class="row mb4">
                                    <strong class="col-6">
                                        <span t-esc="record.name.value"/>
                                    </strong>
                                    <div class="col-6">
                                        <span class="float-right badge badge-secondary">
                                            <field name="state"/>
                                        </span>
                                    </div>
                                    <div class="col-6">
                                        <i class="fa fa-clock-o" title="Date" role="img" aria-label="Date"/><span t-esc="record.date.value"/>
                                    </div>
                                    <div class="col-6 text-right">
                                        <field name="account_journal_id"/>
                                    </div>
                                </div>
                            </div>
                        </t>
                    </templates>
                </kanban>
            </field>
        </record>

        <record id="view_stock_landed_cost_search" model="ir.ui.view">
            <field name="name">stock.landed.cost.search</field>
            <field name="model">stock.landed.cost</field>
            <field name="arch" type="xml">
                <search string="Landed Costs">
                    <field name="name" string="Name"/>
                    <field name="date"/>
                    <separator/>
                    <filter string="Draft" name="draft" domain="[('state','=','draft')]"/>
                    <filter string="Done" name="done" domain="[('state','=','done')]"/>
                    <group expand="0" string="Group By">
                        <filter string="Date" name="group_by_month" context="{'group_by': 'date'}"/>
                        <filter string="Status" name="status" context="{'group_by': 'state'}"/>
                    </group>
                </search>
            </field>
        </record>

        <record id='action_stock_landed_cost' model='ir.actions.act_window'>
            <field name="name">Landed Costs</field>
            <field name="res_model">stock.landed.cost</field>
            <field name="view_type">form</field>
            <field name="view_mode">tree,form,kanban</field>
            <field name="context">{}</field>
            <field name="help" type="html">
                <p class="o_view_nocontent_smiling_face">
                    Create a new landed cost
                </p>
            </field>
        </record>

        <menuitem action="action_stock_landed_cost" name="Landed Costs" parent="stock.menu_stock_warehouse_mgmt" id="menu_stock_landed_cost" sequence="115"/>

        <!-- STOCK.LANDED.COST.TYPE -->
        <record id="view_stock_landed_cost_type_form" model="ir.ui.view">
            <field name="name">stock.landed.cost.type.form</field>
            <field name="model">product.product</field>
            <field name="priority">25</field>
            <field name="arch" type="xml">
                <form string="Landed Costs">
                    <sheet>
                        <div class="oe_button_box" name="button_box">
                            <button name="toggle_active" type="object" groups="base.group_user" class="oe_stat_button" icon="fa-archive">
                                <field name="active" widget="boolean_button" options='{"terminology": "archive"}'/>
                            </button>
                        </div>
                        <field name="image_medium" widget="image" class="oe_avatar"/>
                        <div class="oe_title">
                            <div class="oe_edit_only">
                                <label for="name" name='label_name' string="Product Name"/>
                            </div>
                            <h1>
                                <field name="name"/>
                            </h1>
                            <label for="categ_id" class="oe_edit_only"/>
                            <h2>
                                <field name="categ_id"/>
                            </h2>
                        </div>
                        <notebook>
                            <page string="Information">
                                <group>
                                    <group>
                                        <field name="split_method"/>
                                        <field name="standard_price"/>
                                        <field name="property_account_expense_id" domain="[('internal_type','=','other'),('deprecated', '=', False)]"/>
                                    </group>
                                    <group>
                                        <field name="company_id" groups="base.group_multi_company" options="{'no_create': True}"/>
                                        <field name="type"/>
                                    </group>
                                </group>
                                <field name="description" placeholder="describe the product characteristics..."/>
                            </page>
                        </notebook>
                    </sheet>
                    <div class="oe_chatter">
                        <field name="message_follower_ids" widget="mail_followers"/>
                        <field name="message_ids" widget="mail_thread"/>
                    </div>
                </form>
            </field>
        </record>

        <record id="stock_landed_cost_tree_view" model="ir.ui.view">
            <field name="name">product.product.tree</field>
            <field name="model">product.product</field>
            <field name="arch" type="xml">
                <tree string="Products">
                    <field name="name" string="Landed Cost Type"/>
                    <field name="split_method"/>
                    <field name="standard_price"/>
                </tree>
            </field>
        </record>

        <record id="stock_landed_cost_type_action" model="ir.actions.act_window">
            <field name="name">Landed Cost Types</field>
            <field name="type">ir.actions.act_window</field>
            <field name="res_model">product.product</field>
            <field name="domain">[('landed_cost_ok','=',True)]</field>
            <field name="view_type">form</field>
            <field name="view_mode">tree,form</field>
            <field name="context">{'default_landed_cost_ok': True, 'default_type': 'service'}</field>
            <field name="search_view_id" ref="product.product_search_form_view"/>
            <field name="help" type="html">
              <p class="o_view_nocontent_smiling_face">
                Define a new kind of landed cost
              </p>
            </field>
        </record>

        <record id="stock_landed_cost_type_action1" model="ir.actions.act_window.view">
           <field eval="1" name="sequence"/>
           <field name="view_mode">tree</field>
           <field name="view_id" ref="stock_landed_cost_tree_view"/>
           <field name="act_window_id" ref="stock_landed_cost_type_action"/>
        </record>

        <record id="stock_landed_cost_type_action2" model="ir.actions.act_window.view">
           <field eval="2" name="sequence"/>
           <field name="view_mode">form</field>
           <field name="view_id" ref="view_stock_landed_cost_type_form"/>
           <field name="act_window_id" ref="stock_landed_cost_type_action"/>
        </record>

	<menuitem action="stock_landed_cost_type_action" name="Landed Cost Types" parent="stock.menu_product_in_config_stock" id="menu_stock_landed_cost_type" sequence="3"/>

    </data>
</odoo>
