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 to create an Invoice In Restaurant Management Module

Subscriure's

Get notified when there's activity on this post

This question has been flagged
invoice
3541 Vistes
Avatar
Kapil More


Hi,

I am creating the module for Restaurant Management. I added the tabs like Table Booking, Orders, Kitchen Order Ticket(KOT)

where, Orders are taken and KOT is generated.

Now, I want to generate Invoice after generating KOT. I just want the value of TOTAL (amount_total) field on Orders tab should get invoiced and the TOTAL gets added. After that, It should creates Invoice on clicking the Generate Invoice Button.

Here is my code,

hotel_restaurant.py -------------------------------------------------------------------

class hotel_restaurant_order(osv.Model):

        def _sub_total(self, cr, uid, ids, field_name, arg, context=None):

        res = {}

        for sale in self.browse(cr, uid, ids, context=context):

            res[sale.id] = sum(line.price_subtotal for line in sale.order_list)

        return res

        def _total(self, cr, uid, ids, field_name, arg, context=None):

        res = {}

        for line in self.browse(cr, uid, ids, context=context):

        res[line.id] = line.amount_subtotal + (line.amount_subtotal * line.tax) / 100

        return res

        def generate_kot(self, cr, uid, ids, part):

        order_tickets_obj = self.pool.get('hotel.restaurant.kitchen.order.tickets')

        restaurant_order_list_obj = self.pool.get('hotel.restaurant.order.list')

        for order in self.browse(cr, uid, ids):

        table_ids = [x.id for x in order.table_no]

        kot_data = order_tickets_obj.create(cr, uid, {

        'orderno':order.order_no,

        'kot_date':order.o_date,

        'room_no':order.room_no.name,

        'w_name':order.waiter_name.name,

        'tableno':[(6, 0, table_ids)],

        })

        for order_line in order.order_list:

        o_line = {

        'kot_order_list':kot_data,

        'name':order_line.name.id,

        'item_qty':order_line.item_qty,

}

        restaurant_order_list_obj.create(cr, uid, o_line)

        return True


hotel_restaurant_view.xml------------------------------------------------------------------------

<!--

==============================

Table Order

==============================

-->

    <record model="ir.ui.view" id="view_hotel_restaurant_order_form">

        <field name="name">hotel_restaurant_order.form</field>

        <field name="model">hotel.restaurant.order</field>

        <field name="arch" type="xml">

            <form string="Order" version="7.0">

            <header>

                <button string="Generate KOT" name="generate_kot" type="object" icon="gtk-go-forward"/>

            </header>

            <sheet>

                <h1>

                    <label string="Table Order" colspan="4" />

                    <field name="order_no" colspan="4"/>

                </h1>

                <group>

                <group>

                    <field name="o_date" />

                </group>

                    <group colspan="2" col="4">

                    <field name="room_no"/>

                    <field name="waiter_name"/>

                    </group>

                    <newline/>

                   <separator colspan='4' string='Table List'/>

                    <field name="table_no" colspan="4" nolabel='1'/>

                    <newline/>

                   <separator colspan='4' string='Order List'/>

                    <field name="order_list" colspan="4" nolabel='1'>

                    <form string="Order List">

                   <group>

                   <field name="name" on_change="on_change_item_name(name)"/>

                   <field name="item_qty"/>

                <field name="item_rate"/>

                </group>

            </form>

            <tree string="Order List">

                <field name="name" />

                <field name="item_qty"/>

                <field name="item_rate"/>

                <field name="price_subtotal"/>

            </tree>

        </field>

    </group>    

<newline/>

         <group col="2" class="oe_subtotal_footer oe_right">

            <field name="amount_subtotal" widget="monetary"/>

            <field name="tax" widget='monetary'/>    

            <div class="oe_subtotal_footer_separator oe_inline">

            <label for="amount_total" />

            </div>

            <field name="amount_total" nolabel="1" widget='monetary'/>

        </group>

    <div class="oe_clear"/>

        </sheet>

     </form>

    </field>

</record>

    <record model="ir.ui.view" id="view_hotel_restaurant_order_tree">

    <field name="name">hotel_restaurant_order.tree</field>

    <field name="model">hotel.restaurant.order</field>

    <field name="arch" type="xml">

    <tree string="Order">

    <field name="order_no"/>

    <field name="o_date"/>

    <field name="table_no"/>

    <field name="room_no"/>

    <field name="waiter_name"/>

    <field name="order_list"/>

    </tree>

    </field>

</record>

    <record model="ir.actions.act_window" id="open_view_hotel_restaurant_order_form_tree">

        <field name="name">Order Generate</field>

        <field name="res_model">hotel.restaurant.order</field>

        <field name="view_type">form</field>

        <field name="view_mode">tree,form</field>

    </record>

        <menuitem name="Table Order"

        id="menu_open_view_hotel_restaurant_order_form_tree"

        action="open_view_hotel_restaurant_order_form_tree"

        sequence="11"

        parent="hotel_restaurant_menu"/>

0
Avatar
Descartar
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
change between 2 Invoice formats Solved
invoice
Avatar
Avatar
1
de jul. 25
1888
Hello, how can I change the size of the logo and the invoice? Solved
invoice
Avatar
Avatar
Avatar
2
de jul. 25
2378
Validation Error. You will need to clear the Journal Entry's Number to proceed
invoice
Avatar
Avatar
1
de jul. 25
3308
Restricting Salesperson Access to Customer Invoice Details
invoice
Avatar
Avatar
Avatar
3
d’abr. 25
3063
Odoo 16 - Download invoice preview doesn't work
invoice
Avatar
Avatar
Avatar
3
d’abr. 25
4113
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