Server IP : 127.0.0.2 / Your IP : 18.225.234.109 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/stock_account/views/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <data> <record id="view_inventory_form_inherit" model="ir.ui.view"> <field name="name">stock.inventory.form.inherit</field> <field name="model">stock.inventory</field> <field name="inherit_id" ref="stock.view_inventory_form"/> <field name="arch" type="xml"> <xpath expr="//field[@name='date']" position="after"> <field name="accounting_date"/> </xpath> </field> </record> <record id="view_location_form_inherit" model="ir.ui.view"> <field name="name">stock.location.form.inherit</field> <field name="model">stock.location</field> <field name="inherit_id" ref="stock.view_location_form"/> <field name="arch" type="xml"> <xpath expr="//group[@name='localization']" position="after"> <group string="Accounting Information" attrs="{'invisible':[('usage','not in',('inventory','production'))]}"> <field name="valuation_in_account_id"/> <field name="valuation_out_account_id"/> </group> </xpath> </field> </record> <record id="view_picking_inherit_form2" model="ir.ui.view"> <field name="name">stock.picking.form.inherit</field> <field name="model">stock.picking</field> <field name="inherit_id" ref="stock.view_picking_form"/> <field name="arch" type="xml"> <field name="move_lines" position="attributes"> <attribute name="context">{'address_in_id': partner_id, 'form_view_ref':'stock.view_move_picking_form', 'tree_view_ref':'stock.view_move_picking_tree', 'default_picking_type_id': picking_type_id, 'default_location_id': location_id, 'default_location_dest_id': location_dest_id}</attribute> </field> </field> </record> </data> </odoo>