Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
2128 Prikazi

In the POS there is an option in the Payment stage for generating invoice for the sale being made. instead of giving an option i want to make invoicing mandatory. How to do it? Kindly guide.

Avatar
Opusti
Avtor Best Answer

Made the following changes in to code to force invoice on all POS orders

addons/point_of_sale/static/js/Screens/PaymentScreen.js

 i.      Search for async validateOrder(isForceValidate) {                         (around line 165)

 ii.      Add  the following code below the function definition

if (!this.currentOrder.is_to_invoice()){this.toggleIsToInvoice();}


Upgrade the Point of sale app


Avatar
Opusti
Best Answer

Archive the "Cash" and "Bank" Payment Methods

Point of Sale --> Configuration --> Payment Methods.

Avatar
Opusti