This commit is contained in:
2026-04-13 21:10:55 +01:00
parent d292cecd89
commit 459c722a49
4 changed files with 9 additions and 7 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
<groupId>com.unicenta</groupId>
<artifactId>unicentaopos</artifactId>
<version>5.4.0</version>
<version>5.5.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -361,7 +361,7 @@
<dependency>
<groupId>com.unicenta</groupId>
<artifactId>unicenta-plugins</artifactId>
<version>1.3.1</version>
<version>1.4.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.gluonhq</groupId>
@@ -1839,11 +1839,9 @@ public abstract class JPanelTicket extends JPanel implements JPanelView, BeanFac
new Application().sendReceipt(ticket, xml, getActiveWindow());
}
// EFR
if (m_config.getProperty("till.efr") != null
&& m_config.getProperty("till.efr").equals("true")) {
log.debug("Send to efr");
String xml = dlSystem.getResourceAsXML("Printer.Ticket");
// new Application().sendEinvoice(ticket, xml, getActiveWindow());
if (m_config.getProperty("till.efr") != null && m_config.getProperty("till.efr").equals("true")) {
log.info("Send to efr");
new Application().sendEFR(ticket);
}
executeEvent(ticket, ticketext, "ticket.close",
@@ -63,4 +63,8 @@ public class UserInfo implements Serializable {
public String getName() {
return m_sName;
}
public String getTaxID() {
return taxId;
}
}
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB