Чековый термопринтер в электронном

Мне нужно найти способ печати квитанций в javascript от Electron. Я уже попробовал QZ-TRAY, но он не работает из-за Electron. Я также попробовал нод-термопринтер, но он также никогда не работал для меня. Кто-нибудь здесь знает, как вы можете печатать квитанции, не спрашивая пользователя в javascript (Electron)?

0 ответов

Цитирую соответствующие комментарии...

"Ну, с QZ моя проблема была RSVP is not defined а с помощью узла-термопринтера принтер просто не печатается ".

"для QZ потребовалось все 20 секунд, чтобы найти это: https://qz.io/wiki/2.0-api-override"

Публикация так же, как и комментарии, предполагает, что это работает. Кредиты @ Гилберту-Габриэлю за помощь.

Обещания RSVP включены по умолчанию, но собственные обещания JS поддерживаются через:

qz.api.setPromiseType(resolver => new Promise(resolver));

Более полный пример:

// Install dependencies:
/*
   npm install qz-tray js-sha256
*/

// Provide API overrides and start talking to QZ Tray:    
import * as qz from 'qz-tray';
import { sha256 } from 'js-sha256';

qz.api.setSha256Type(data => sha256(data));
qz.api.setPromiseType(resolver => new Promise(resolver));

qz.websocket.connect()
 .then(qz.printers.getDefault)
 .then(printer => console.log("The default printer is: " + printer))
 .then(qz.websocket.disconnect)
 .catch(err => console.error(err));

Попробуйте воспользоваться пакетным электронно-пос-принтером. npm i electron-pos-printer. Посмотреть документацию

Демо

// In the main process
const {PosPrinter} = require("electron-pos-printer");
// or in render process
const {PosPrinter} = require('electron').remote.require("electron-pos-printer");

// each object in the data array accounts for a row or line
const print_data = [
    {
      type: 'image',                                       
      path: path.join(__dirname, 'assets/banner.png'),     // file path
      position: 'center',                                  // position of image: 'left' | 'center' | 'right'
      width: 60,                                           // width of image in px; default: auto
      height: 60,                                          // width of image in px; default: 50 or '50px'
   },
   {type: 'text', value: 'Sample text', style: 'text-align:center;font-weight: bold'},
   {type: 'text', value: 'Another text', style: 'color: #fff'},
   {type 'barCode', value: 'HB4587896', height: 12, width: 1, fontsize: 9},
   {type 'qrCode', value: 'https://google.com', height: 55, width: 55, style: 'margin: 10 20px 20 20px'}
];

// returns promise<any>
 PosPrinter.print(print_data, {
    printerName: 'XP-80C',
    preview: false,
    width: '170px',               //  width of content body
    margin: '0 0 0 0',            // margin of content body
    copies: 1,                   // The number of copies to print
  })
  .then(() => {
    // some code ...
  })
  .catch((error) => {
    console.error(error);
   });
Другие вопросы по тегам