You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** kkmhubUrl - путь к kkmhub certConfig - сертификат */constkkmService=newKkmService({ kkmhubUrl, certConfig });/** Необходимо отнаследовать класс от Receipt и переопределить в нем методы getOperationId, getName, getContractFields, getCashierFields, getPositions, getType, getSumType, getPayTimeString. См. пример ExampleReceipt (src/example/ExampleReceipt.mjs). Возвращаемые значения этих функций описаны в класе Receipt (src/Receipt.mjs). */constreceipt=newExampleReceipt("project-name",offer);/** * Создание чека */constcheckId=awaitkkmService.createReceipt(receipt);/** * Получение pdf чека */constbuffer=awaitkkmService.getReceiptDocument(checkId);