You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | <?xml version='1.0' encoding='utf-8'?>
<odoo>
    <data>
        <record id='non_active_report_wizard_form' model='ir.ui.view'>
            <field name='name'>non.active.report.wizard.form</field>
            <field name='model'>non.active.report.wizard</field>
            <field name='arch' type='xml'>
                <form string='库龄报表'>
                    <group>
                        <group>
                            <field name='warehouse_id'/>
                        </group>
                        <group>
                            <field name="first_stage_day" />
                            <field name="second_stage_day"/>
                            <field name='third_stage_day'/>
                        </group>
                    </group>
                    <footer>
                        <button name='open_non_active_report' string='确定' type='object' class='oe_highlight'/>
                        或者
                        <button string='取消' class='oe_link' special='cancel'/>
                    </footer>
                </form>
            </field>
        </record>
        <record id='non_active_report_list' model='ir.ui.view'>
            <field name='name'>non.active.report.list</field>
            <field name='model'>non.active.report</field>
            <field name='arch' type='xml'>
                <list string='库龄报表'>
                  <field name="warehouse_id" optional="show"/>
                  <field name="goods_id" optional="show"/>
                    <field name="attribute_id" optional="show"/>
                    <field name="latest_move_date" optional="show"/>
                    <field name="latest_move_qty" optional="show"/>
                  <field name="first_stage_day_qty"  optional="show"/>
                  <field name="second_stage_day_qty" optional="show"/>
                  <field name="third_stage_day_qty" optional="show"/>
                  <field name="four_stage_day_qty" optional="show"/>
                  <field name="subtotal" optional="show"/>
                </list>
            </field>
        </record>
    </data>
</odoo>
 |