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

Point of sale not reading js file function

Subscriure's

Get notified when there's activity on this post

This question has been flagged
jspoint_of_sale
7512 Vistes
Avatar
Erhuvwu Akpobaro

How can i go about adding a custom module to models.js to load ? and how can i gte my js file to read a new js function

so far i have created a js file which as the same content as models.js  called pos_extend.js and created a new function however it seems my file is not being read.

and i get this error : Uncaught Error: QWeb2 - template['PosTicket']: Runtime Error: TypeError: undefined is not a function


static/src/js/pos_extend.js :



var orderline_id = 1;

var erhu = 3

// An orderline represent one element of the content of a client's shopping cart.

// An orderline contains a product, its quantity, its price, discount. etc.

// An Order contains zero or more Orderlines.

module.Orderline = Backbone.Model.extend({

initialize: function(attr,options){

this.pos = options.pos;

this.order = options.order;

this.product = options.product;

this.price = options.product.price;

this.quantity = 1;

this.quantityStr = '1';

this.discount = 0;

this.discountStr = '0';

this.type = 'unit';

this.selected = false;

this.id = orderline_id++;

this.invoice_company = erhu;

},

clone: function(){

var orderline = new module.Orderline({},{

pos: this.pos,

order: null,

product: this.product,

price: this.price,

});

orderline.quantity = this.quantity;

orderline.quantityStr = this.quantityStr;

orderline.discount = this.discount;

//orderline.invoice_company = this.invoice_company

orderline.type = this.type;

orderline.selected = false;

return orderline;

},

// sets a discount [0,100]%

set_discount: function(discount){

var disc = Math.min(Math.max(parseFloat(discount) || 0, 0),100);

this.discount = disc;

this.discountStr = '' + disc;

this.trigger('change',this);

},

// returns the discount [0,100]%

get_discount: function(){

return this.discount;

},

get_discount_str: function(){

return this.discountStr;

},

get_product_type: function(){

return this.type;

},

// sets the quantity of the product. The quantity will be rounded according to the

// product's unity of measure properties. Quantities greater than zero will not get

// rounded to zero

set_quantity: function(quantity){

if(quantity === 'remove'){

this.order.removeOrderline(this);

return;

}else{

var quant = parseFloat(quantity) || 0;

var unit = this.get_unit();

if(unit){

if (unit.rounding) {

this.quantity = round_pr(quant, unit.rounding);

this.quantityStr = this.quantity.toFixed(Math.ceil(Math.log(1.0 / unit.rounding) / Math.log(10)));

} else {

this.quantity = round_pr(quant, 1);

this.quantityStr = this.quantity.toFixed(0);

}

}else{

this.quantity = quant;

this.quantityStr = '' + this.quantity;

}

}

this.trigger('change',this);

},

// return the quantity of product

get_quantity: function(){

return this.quantity;

},

get_quantity_str: function(){

return this.quantityStr;

},

get_invoice_company: function() {

return this.invoice_company;

},

get_quantity_str_with_unit: function(){

var unit = this.get_unit();

if(unit && !unit.is_unit){

return this.quantityStr + ' ' + unit.name;

}else{

return this.quantityStr;

}

},


new function added : 

get_invoice_company: function() {

return this.invoice_company;

},


static/src/xml/pos.xml :

<templates id="template" xml:space="preserve">

<t t-extend="PosTicket">

   <t t-jquery=".pos-sale-ticket" t-operation="replace">



 <div class="pos-sale-ticket">

            <div id="company_logo" style="text-align:center;"><img t-att-src="'data:image/png;base64,'+ widget.pos.company.logo" height="150px" width="150px"/></div>

            <div class="pos-center-align"><t t-esc="new Date().toString(Date.CultureInfo.formatPatterns.shortDate + ' ' +

                Date.CultureInfo.formatPatterns.longTime)"/> <t t-esc="order.get('name')"/></div>

            <br />

            <t t-esc="widget.pos.company.name"/><br />

            Phone: <t t-esc="widget.pos.company.phone || ''"/><br />         

            User: <t t-esc="widget.pos.cashier ? widget.pos.cashier.name : widget.pos.user.name"/><br /> 

      

          <!-- <Order <t t-esc="widget.currentOrder.getName()"/><br/> -->    

            <!--Shop: <t t-esc="widget.pos.shop.name"/><br />-->

            

             <br />

            <t t-if="widget.pos.config.receipt_header">

                <div style='text-align:center'>

                    <t t-esc="widget.pos.config.receipt_header" />

                </div>

                <br />

            </t>

            <table>

                <colgroup>

                    <col width='50%' />

                    <col width='25%' />

                    <col width='25%' />

                </colgroup>

                <tr t-foreach="orderlines" t-as="orderline">

                    <td>

                    <t t-esc="orderline.get_product().display_name"/>


                         <t t-if="orderline.get_discount() > 0">

                            <div class="pos-disc-font">

                                With a <t t-esc="orderline.get_discount()"/>% discount

                            </div>

                        </t>

                    </td>

                    <td class="pos-right-align">

                        <t t-esc="orderline.get_quantity_str_with_unit()"/>

                    </td>

   <td class="pos-right-align">

   Property Company : <t t-esc="orderline.get_invoice_company()"/>

   </td>

                    <td class="pos-right-align">

                        <t t-esc="widget.format_currency(orderline.get_display_price())"/>

                    </td>

                </tr>

            </table>

            <br />

            <table>

                <tr>

                    <td>Subtotal:</td>

                    <td class="pos-right-align">

                        <t t-esc="widget.format_currency(order.getSubtotal())"/>

                    </td>

                </tr>

                <t t-foreach="order.getTaxDetails()" t-as="taxdetail">

                    <tr>

                        <td><t t-esc="taxdetail.name" /></td>

                        <td class="pos-right-align">

                            <t t-esc="widget.format_currency(taxdetail.amount)" />

                        </td>

                    </tr>

                </t>

                <tr>

                    <td>Discount:</td>

                    <td class="pos-right-align">

                        <t t-esc="widget.format_currency(order.getDiscountTotal())"/>

                    </td>

                </tr>

                <tr class="emph">

                    <td>Total:</td>

                    <td class="pos-right-align">

                        <t t-esc="widget.format_currency(order.getTotalTaxIncluded())"/>

                    </td>

                </tr>

            </table>

            <br />

            <table>

                <tr t-foreach="paymentlines" t-as="line">

                    <td>

                        <t t-esc="line.name"/>

                    </td>

                    <td class="pos-right-align">

                        <t t-esc="widget.format_currency(line.get_amount())"/>

                    </td>

                </tr>

            </table>

            <br />

            <table>

                <tr><td>Change:</td><td class="pos-right-align">

                    <t t-esc="widget.format_currency(order.getChange())"/>

                    </td></tr>

            </table>

            <t t-if="widget.pos.config.receipt_footer">

                <br />

                <div style='text-align:center'>

                    <t t-esc="widget.pos.config.receipt_footer" />

                </div>

            </t>

        </div>

         </t>

</t>

</templates>



js_inheritance.xml :



<?xml version="1.0" encoding="utf-8"?>
<openerp>
     <data>
          <template id="js_inherit_pos" name="inherit_pos" inherit_id="web.assets_backend">
                        <xpath expr="." position="inside">
                                        <script type="text/javascript" src="/module/static/src/js/pos_extend.js"/>
                        </xpath>
                </template>
    </data> 
    
</openerp>


Any help would be appreciated ?



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
Odoo 14: Reload Point Of Sale Solved
javascript js point_of_sale
Avatar
Avatar
1
d’abr. 24
2799
Why POS is making this error?
js point_of_sale odoo12
Avatar
0
de juny 22
2516
Create sales order from pos session Solved
pos js point_of_sale
Avatar
Avatar
1
de febr. 22
5975
How to inherit POS js file ?
function js point_of_sale
Avatar
Avatar
1
d’abr. 15
5437
Configuring Advanced Rights to Hide 'Cost' on POS Screen for Employees
point_of_sale
Avatar
Avatar
1
de jul. 25
2704
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