Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Point of sale not reading js file function

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
jspoint_of_sale
7533 Widoki
Awatar
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
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Odoo 14: Reload Point Of Sale Rozwiązane
javascript js point_of_sale
Awatar
Awatar
1
kwi 24
2814
Why POS is making this error?
js point_of_sale odoo12
Awatar
0
cze 22
2524
Create sales order from pos session Rozwiązane
pos js point_of_sale
Awatar
Awatar
1
lut 22
5982
How to inherit POS js file ?
function js point_of_sale
Awatar
Awatar
1
kwi 15
5448
Configuring Advanced Rights to Hide 'Cost' on POS Screen for Employees
point_of_sale
Awatar
Awatar
1
lip 25
2717
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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