Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

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

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

Point of sale not reading js file function

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
jspoint_of_sale
7524 Visualizações
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
Cancelar
Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Publicações relacionadas Respostas Visualizações Atividade
Odoo 14: Reload Point Of Sale Resolvido
javascript js point_of_sale
Avatar
Avatar
1
abr. 24
2810
Why POS is making this error?
js point_of_sale odoo12
Avatar
0
jun. 22
2519
Create sales order from pos session Resolvido
pos js point_of_sale
Avatar
Avatar
1
fev. 22
5976
How to inherit POS js file ?
function js point_of_sale
Avatar
Avatar
1
abr. 15
5445
Configuring Advanced Rights to Hide 'Cost' on POS Screen for Employees
point_of_sale
Avatar
Avatar
1
jul. 25
2710
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة 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 é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

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