Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How do I customize only Incoming Shipments Move lines in 7's Warehouse ?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
warehouseshipmentincomingmove_lines
7051 Vistes
Avatar
Stan Goldbraithe

Hey Everyone, So, I have been trying to make a change to the incoming shipments form only in the warehouse module. Basically, I am overloading the stock_view.xml inside my own module. I thought it would be a simple case of jst overloading the stock.action_picking_tree4 and the view.

However, I can either have the move_lines show the extra field (supplier_code) in all subitems for the 'Receive/Deliver By Orders' or else none of them. XML Code is below;

Regards S.

<record id="stock_view_move_picking2_in_tree" model="ir.ui.view">
    <field name="name">stock.move.in.tree</field>
    <field name="model">stock.move.in</field>
        <field eval="4" name="priority"/>
    <field name="arch" type="xml">
            <tree colors="grey:scrapped == True" string="Stock Moves">
                <field name="product_id" on_change="onchange_product_id(product_id,location_id,location_dest_id,parent.partner_id)"/>
                <field name="supplier_code"/>
                <field name="product_qty" on_change="onchange_quantity(product_id, product_qty, product_uom, product_uos)"/>
                <field name="product_uom" string="Unit of Measure" groups="product.group_uom"/>
                <field name="product_uos" groups="product.group_uos"/>
                <field name="location_id" groups="stock.group_locations" invisible="1"/>
                <field name="picking_id" invisible="1" />
                <field name="create_date" invisible="1" />
                <field name="date_expected" invisible="1" />
                <button name="%(stock.move_scrap)d"
                   string="Scrap Products" type="action"
                   icon="terp-gtk-jump-to-ltr" context="{'scrap': True}"
                   states="draft,waiting,confirmed,assigned"
                   groups="base.group_user"/>
                <field name="scrapped" invisible="1"/>
                <field name="prodlot_id" groups="stock.group_production_lot"/>
                <button
                   name="%(stock.track_line)d"
                   string="Split in Serial Number"
                   groups="stock.group_production_lot"
                   type="action" icon="gtk-justify-fill"
                   states="draft,waiting,confirmed,assigned"/>
                 <field groups="stock.group_tracking_lot" name="tracking_id"/>
                 <button name="setlast_tracking" string="Put in current pack" type="object"
                    attrs="{'invisible': [('tracking_id','<>',False)]}"
                    icon="terp-accessories-archiver"
                    groups="stock.group_tracking_lot"
                    states="draft,assigned,confirmed"/>
                 <button name="%(stock.split_into)d" string="Put in a new pack" type="action"
                    groups="product.group_stock_packaging"
                    icon="terp-accessories-archiver+"
                    states="draft,assigned,confirmed"/>
                  <field name="location_dest_id" groups="stock.group_locations"/>
                  <field name="state"/>
            </tree>
        </field>
</record>

<record id="stock_view_move_picking2_in_form" model="ir.ui.view">
    <field name="model">stock.move</field>
    <field name="inherit_id" ref="stock.view_move_form"/>
    <field name="arch" type="xml">
         <field name="product_id" position="replace">
           <field name="product_id" on_change="onchange_product_id(product_id,location_id,location_dest_id,parent.partner_id)"/>
         </field>
         <xpath expr="//field[@name='product_id']" position="after">
           <field name="supplier_code" readonly="1"/>
         </xpath>
    </field>
</record>

<record id="stock_view_picking2_in_form" model="ir.ui.view">
        <field name="name">stock.picking.form</field>
        <field name="model">stock.picking</field>
        <field eval="12" name="priority"/>
        <field name="arch" type="xml">
            <form string="Internal Picking List" version="7.0">
            <header>
                <button name="draft_force_assign" states="draft" string="Confirm" type="object" class="oe_highlight" groups="base.group_user"/>
                <button name="draft_validate" states="draft" string="Confirm & Transfer" type="object" class="oe_highlight" groups="base.group_user"/>
                <!-- <button name="action_assign" states="confirmed" string="Check Availability" type="object"/> -->
                <button name="force_assign" states="confirmed" string="Force Availability" type="object" class="oe_highlight" groups="base.group_user"/>
                <button name="action_process" states="assigned" string="Confirm & Transfer" groups="stock.group_stock_user" type="object" class="oe_highlight"/>
                <button name="%(stock.action_stock_invoice_onshipping)d" string="Create Invoice/Refund"  attrs="{'invisible': ['|','|',('state','<>','done'),('invoice_state','=','invoiced'),('invoice_state','=','none')]}"  type="action" class="oe_highlight" groups="base.group_user"/>
                <button name="%(stock.act_stock_return_picking)d" string="Reverse Transfer" states="done" type="action" groups="base.group_user"/>
                <button name="button_cancel" states="assigned,confirmed,draft" string="Cancel Transfer" groups="base.group_user"/>
                <field name="state" widget="statusbar" statusbar_visible="draft,assigned,done" statusbar_colors='{"shipping_except":"red","invoice_except":"red","waiting_date":"blue"}'/>
            </header>
            <sheet>
                <h1>
                    <field name="name" class="oe_inline" attrs="{'invisible': [('name','=','/')]}" readonly="1"/>
                </h1>
                <group>
                    <group>
                        <field name="partner_id" on_change="onchange_partner_in(partner_id)"/>
                        <field name="backorder_id" readonly="1" attrs="{'invisible': [('backorder_id','=',False)]}"/>
                        <field name="invoice_state" string="Invoice Control" groups="account.group_account_invoice" attrs="{'invisible':[('invoice_state', '=', 'none')]}"/>
                        <field name="stock_journal_id" widget="selection" groups="account.group_account_user"/>
                        <field name="project_id"/>
                        <field name="inventory_code"/>
                        <field name="x_sitename"/>
                    </group>
                    <group>
                        <field name="date"/>
                        <field name="min_date" readonly="1" attrs="{'invisible': [('min_date','=',False)]}"/>
                        <field name="origin" placeholder="e.g. PO0032" class="oe_inline"/>
                    </group>
                </group>
                <notebook>
                    <page string="Products">
                        <field name="move_lines" context="{'address_in_id': partner_id, 'picking_type': 'in', 'form_view_ref':'stock_view_move_picking2_in_form', 'tree_view_ref':'stock_view_move_picking2_in_tree'}"/>
                        <field name="note" placeholder="Add an internal note..." class="oe_inline"/>
                    </page>
                    <page string="Additional Info">
                        <group>
                            <group>
                                <field name="move_type"/>
                                <field name="type" invisible="1"/>
                                <field name="auto_picking" groups="base.group_user"/>
                            </group>
                            <group>
                                <field name="company_id" groups="base.group_multi_company" widget="selection"/>
                                <field name="date_done" groups="base.group_no_one"/>
                            </group>
                        </group>
                    </page>
                </notebook>
            </sheet>
            </form>
        </field>
</record>

    <record id="stock.action_picking_tree4" model="ir.actions.act_window">
        <field name="name">Incoming Shipments</field>
        <field name="res_model">stock.picking.in</field>
        <field name="type">ir.actions.act_window</field>
        <field name="view_type">form</field>
        <field name="view_mode">tree,form,calendar</field>
        <field name="view_id" ref="stock_view_picking2_in_form"/>
        <field name="domain">[('type','=','in')]</field>
        <field name="context">{'contact_display': 'partner_address', 'default_type': 'in'}</field>
        <field name="help" type="html">
          <p class="oe_view_nocontent_create">
            Click to create an incoming shipment.
          </p><p>
            The Incoming Shipments is the list of all orders you will
            receive from your suppliers. An incoming shipment contains a
            list of products to be received according to the original
            purchase order.
          </p>
        </field>
    </record>
0
Avatar
Descartar
Stan Goldbraithe
Autor

other questions were removed. I was getting 504's from the gateway on posting :(

Simplify it!

Sorry, it's opened again

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
How do I customize only Incoming Shipments Move lines in 7's Warehouse ?
warehouse shipment incoming move_lines
Avatar
0
de març 15
4838
How to change Incoming Shipment Scheduled Date field for all products?
shipment incoming
Avatar
0
de març 15
6227
How to disable auto received in incoming shipment after user click confirm in Purchase Order?
shipment incoming
Avatar
Avatar
1
de març 15
5604
How do I customize only the Incoming Stock Move Line?
stock warehouse customize incoming move_lines
Avatar
0
de març 15
9185
How to merge incoming shipments ?
merge shipment incoming
Avatar
Avatar
1
de març 15
7462
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now