Ви не можете вибрати більше 25 тем
			Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | <?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="sell_top_ten_wizard_form" model="ir.ui.view">
            <field name="name">sell.top.ten.wizard.form</field>
            <field name="model">sell.top.ten.wizard</field>
            <field name="arch" type="xml">
                <form string="销量前十商品向导">
                    <group>
                        <group>
                            <field name="date_start" required="1"/>
                            <field name="date_end" required="1"/>
                        </group>
                        <group>
                            <field name='warehouse_id'
                            	options="{'no_open': True, 'no_create': True}"/>
                        </group>
                        <footer>
                            <button name="button_ok" type="object" string="确定" class="oe_highlight"/>
                            或者
                            <button string="取消" class="oe_link" special="cancel"/>
                        </footer>
                    </group>
                </form>
            </field>
        </record>
        <record id="sell_top_ten_wizard_action" model="ir.actions.act_window">
            <field name="name">销量前十商品向导</field>
            <field name="res_model">sell.top.ten.wizard</field>
            
            <field name="view_mode">form</field>
            <field name="target">new</field>
        </record>
<!--        <menuitem id="menu_sell_top_ten" name="销量前十商品" action="sell_top_ten_wizard_action"-->
<!--        	parent="menu_sell_report" sequence="7"/>-->
    </data>
</openerp>
 |