Compare commits

..

2 Commits

3 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
/** @odoo-module **/
import { Component } from "@odoo/owl";
import { usePos } from "@point_of_sale/app/store/pos_hook";
import { usePos } from "@point_of_sale/app/hooks/pos_hook";
import { BluetoothConnectionStatus } from "./connection_status_widget";
import { Navbar } from "@point_of_sale/app/navbar/navbar";
import { Navbar } from "@point_of_sale/app/components/navbar/navbar";
import { patch } from "@web/core/utils/patch";
/**

View File

@ -1,7 +1,7 @@
/** @odoo-module **/
import { patch } from "@web/core/utils/patch";
import { PosPrinterService } from "@point_of_sale/app/printer/pos_printer_service";
import { PosPrinterService } from "@point_of_sale/app/services/pos_printer_service";
import { BluetoothPrinterManager, TimeoutError, PrinterNotConnectedError, TransmissionError } from "./bluetooth_printer_manager";
import { EscPosGenerator } from "./escpos_generator";
import { BluetoothPrinterStorage } from "./storage_manager";

View File

@ -1,7 +1,7 @@
/** @odoo-module **/
import { patch } from "@web/core/utils/patch";
import { PosStore } from "@point_of_sale/app/store/pos_store";
import { PosStore } from "@point_of_sale/app/services/pos_store";
import { getBluetoothPrintingServices } from "./pos_receipt_printer";
import { getErrorNotificationService } from "./error_notification_service";