add salesInvoice in pos of consumer domain
This commit is contained in:
@@ -184,8 +184,6 @@ export class InputComponent {
|
||||
}
|
||||
|
||||
onPriceInput($event: InputNumberInputEvent) {
|
||||
console.log($event);
|
||||
|
||||
this.onInput($event.originalEvent, true);
|
||||
}
|
||||
onInput($event: Event, isPriceFormat?: boolean) {
|
||||
@@ -198,7 +196,6 @@ export class InputComponent {
|
||||
|
||||
if (this.inputMode === 'numeric') {
|
||||
let newValue = parseFloat(value);
|
||||
// console.log(value, newValue);
|
||||
|
||||
const minValidator = (this.min || this.min === 0) && parseFloat(value) < this.min!;
|
||||
const maxValidator = (this.max || this.max === 0) && parseFloat(value) > this.max;
|
||||
|
||||
Reference in New Issue
Block a user