Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • e-learning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Conocimientos
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

How to generate customer invoice in hotel management?

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
invoicehotel
6315 Vistas
Avatar
Kapil More

     Hello, I am working on Hotel Management Module. The tabs present inside are reservation, housekeeping services, restaurant, folio, reports and configuration. Now, I want to create customer invoice for final payment which will be generated in accounting.(customer invoices)  

      In existing module, customer invoice only includes charges for reservation and services consumed by customer. For restaurant, there is no any invoice generated. I wish to include restaurant charges in folio and should gets to customer invoice.

Can anyone help me with generating customer invoice which includes all the charges.( reservation, services and restaurant )

The code for hotel folio is,

class hotel_folio(osv.Model):

        def copy(self, cr, uid, id, default=None, context=None):

                return self.pool.get('sale.order').copy(cr, uid, id, default=None, context=None)

       def _invoiced(self, cursor, user, ids, name, arg, context=None):

                return self.pool.get('sale.order')._invoiced(cursor, user, ids, name, arg, context=None) 

       def _invoiced_search(self, cursor, user, obj, name, args):

                return self.pool.get('sale.order')._invoiced_search(cursor, user, obj, name, args)     

_name = 'hotel.folio'

_description = 'hotel folio new'

_inherits = {'sale.order': 'order_id'}

_rec_name = 'order_id'

_order = 'id desc'

_columns = {                     

                         'name': fields.char('Folio Number', size=24, readonly=True),

                         'order_id': fields.many2one('sale.order', 'Order', required=True, ondelete='cascade'),

                         'checkin_date': fields.datetime('Check In', required=True, readonly=True, states={'draft':[('readonly', False)]}),

                         'checkout_date': fields.datetime('Check Out', required=True, readonly=True, states={'draft':[('readonly', False)]}),

                          'room_lines': fields.one2many('hotel.folio.line', 'folio_id', readonly=True, states={'draft': [('readonly', False)], 'sent':                             [('readonly', False)]}, help="Hotel room reservation detail."),

                         'service_lines': fields.one2many('hotel.service.line', 'folio_id', readonly=True, states={'draft': [('readonly', False)],                                'sent': [('readonly', False)]}, help="Hotel services detail provide to customer and it will include in main Invoice."),

                         'hotel_policy': fields.selection([('prepaid', 'On Booking'), ('manual', 'On Check In'), ('picking', 'On Checkout')], 'Hotel                             Policy', help="Hotel policy for payment that either the guest has to payment at booking time or check-in check-ou                             time."),

                           'duration': fields.float('Duration in Days', readonly=True, help="Number of days which will automatically count from                            the check-in and check-out date. "),       

                          }

                         _defaults = {

                         'name': lambda obj, cr, uid, context: obj.pool.get('ir.sequence').get(cr, uid, 'hotel.folio'),

                         'hotel_policy':'manual'

                         }

                         _sql_constraints = [

                        ('check_in_out', 'CHECK (checkin_date<=checkout_date)', 'Check in Date Should be less than the Check Out                                    Date!'),

                         ]

--------------------------------------------------------------------------------------------------------------------------------------------------------

The form view for folio is,

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

        <header>       

           <button name="order_confirm" string="Confirm Folio" states="draft" icon="gtk-apply" class="oe_highlight"/>

          <button name="invoice_recreate" string="Recreate Invoice" states="invoice_except" icon="gtk-redo" class="oe_highlight"/>

          <button name="invoice_corrected" string="Invoice Corrected" states="invoice_except" icon="gtk-paste-v"                          class="oe_highlight"/>

          <button name="ship_recreate" string="Recreate Procurement" states="shipping_except" icon="gtk-redo"                 class="oe_highlight"/>

           <button name="ship_corrected" string="Procurement Corrected" states="shipping_except" icon="gtk-paste-v"               class="oe_highlight"/>

            <button name="manual_invoice" states="manual" string="Create Invoice" icon="gtk-new" class="oe_highlight"/>

            <button name="ship_cancel" string="Cancel Folio" states="shipping_except" icon="gtk-cancel" class="oe_highlight oe_highlight" />

             <button name="action_cancel_draft" states="cancel" string="Set to Draft" type="object" icon="gtk-file" class="oe_highlight"/>

              <button name="action_cancel" string="Cancel Folio" states="manual,progress" type="object" icon="gtk-cancel" class="oe_highlight"/>        

             <button name="cancel" string="Cancel Folio" states="draft" icon="gtk-cancel" class="oe_highlight"/>

            <button name="invoice_cancel" string="Cancel Folio" states="invoice_except" icon="gtk-cancel" class="oe_highlight"/>

            <field name="state" select="2" widget="statusbar" statusbar_visible="draft,sent,invoiced,done"/>

</header>


<notebook colspan="4">              

          <page string="Folio">

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

                        <field name="partner_id" on_change="onchange_partner_id(partner_id)" required="1" string="Guest Name"/>

                        <field name="partner_invoice_id" domain="[('parent_id','=',partner_id)]"/>

                        <field name="pricelist_id" domain="[('type','=','sale')]" />

                        <field name="project_id"/>

                      <field name="partner_shipping_id" domain="[('parent_id','=',partner_id)]" invisible="1" />

                 </group>

         <newline/>

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

                         <field name="checkin_date" on_change="onchange_dates(checkin_date,checkout_date)" />

                        <field name="checkout_date" on_change="onchange_dates(checkin_date,checkout_date)"/>

                        <field name="duration" on_change="onchange_dates(checkin_date,False,duration)"/>

                       </group>

             </group>


 <separator string="Room Lines" colspan="4"/>

                   <field name="room_lines" colspan="4" string="Room Line" default_get="{'checkin_date':                                   checkin_date,'checkout_date':checkout_date}" nolabel="1">

                  <form string="Room Line" version="7.0">

                 <notebook>

                      <page string="Folio Line">

                      <group>

                          <field name="checkin_date"/>

                          <field name="checkout_date" on_change="on_change_checkout(checkin_date,checkout_date)" />


<separator string="Automatic Declaration" colspan="4"/>

                        <field name="product_uom_qty"                   on_change="product_id_change(parent.pricelist_id,product_id,product_uom_qty,product_uom,product_uos_qty,product_uos,name,parent.partner_id, False, False, parent.date_order)"  context="{'partner_id':parent.partner_id,'quantity':product_uom_qty,'pricelist':parent.pricelist_id,'uom':product_uom}"  invisible="1"/>

                <field name="product_uom" on_change="product_uom_change(parent.pricelist_id,product_id,product_uom_qty,product_uom,product_uos_qty,product_uos,name,parent.partner_id, False, False, parent.date_order)"  string="Rent(UOM)"/>

                <field name="product_id"  on_change="product_id_change(parent.pricelist_id,product_id,product_uom_qty,product_uom,product_uos_qty,product_uos,name,parent.partner_id, False, True, parent.date_order)"  context="{'partner_id':parent.partner_id,'quantity':product_uom_qty,'pricelist':parent.pricelist_id,'uom':product_uom}"  colspan="4" select="1" domain="[('isroom','=',True)]" string="Room No"/>

</group>


 <separator string="Manual Description"  colspan="4" />

            <field name="name" colspan="4" select="2" placeholder="---Description---"/>

            <group>

                <field name="price_unit" select="2" string="Rent"/>

                <field name="discount"/>

            <newline/>

                <field name="tax_id" colspan="4" nolabel="1"/>

 <separator string="States" colspan="4"/>

            <field name="state" select="2"/>

            <field name="invoiced" select="2"/>

 </group>

</page>


<page string="Extra Info">

    <group>

        <field name="product_uos_qty"/>

        <field name="product_uos" />

        <field name="address_allotment_id" select="2"/>

    </group>

</page>

<page string="History">

        <separator string="Invoice Lines" colspan="4"/>

            <field name="invoice_lines" colspan="4" nolabel="1"/>

 </page>

</notebook>

</form>

        <tree string = "Room Line">

                <field name="name"/>

                <field name="checkin_date"/>

                <field name="checkout_date"/>

                <field name="product_id" string="Room No"/>    

               <field name="product_uom" string="Rent(UOM)"/>

                <field name="price_unit" string="Rent"/>

               <field name="price_subtotal"/>

                <field name="state"/>

        </tree>

</field>

After confirmation of folio, generates invoice.

0
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
How to copy value of TOTAL field form one module to add into customer invoices?
invoice customer hotel
Avatar
0
jul 15
3758
change between 2 Invoice formats Resuelto
invoice
Avatar
Avatar
1
jul 25
1750
Hello, how can I change the size of the logo and the invoice? Resuelto
invoice
Avatar
Avatar
Avatar
2
jul 25
2107
Validation Error. You will need to clear the Journal Entry's Number to proceed
invoice
Avatar
Avatar
1
jul 25
3045
Restricting Salesperson Access to Customer Invoice Details
invoice
Avatar
Avatar
Avatar
3
abr 25
2933
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

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