Skip to content

Commit

Permalink
re-enable invoices functionality. issue #1886
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Mar 26, 2023
1 parent 48e1610 commit 3355c90
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,6 @@
<Image iconType="3" name="/icons16/material/baseline_receipt_long_black_48dp.png"/>
</Property>
<Property name="text" type="java.lang.String" value="Rechnungsnummernkreise"/>
<Property name="enabled" type="boolean" value="false"/>
</Properties>
<Events>
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="mnuInvoicePoolsActionPerformed"/>
Expand All @@ -601,7 +600,6 @@
<Image iconType="3" name="/icons16/material/baseline_receipt_long_black_48dp.png"/>
</Property>
<Property name="text" type="java.lang.String" value="Belegarten"/>
<Property name="enabled" type="boolean" value="false"/>
</Properties>
<Events>
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="mnuInvoiceTypesActionPerformed"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,6 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

mnuInvoicePools.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons16/material/baseline_receipt_long_black_48dp.png"))); // NOI18N
mnuInvoicePools.setText("Rechnungsnummernkreise");
mnuInvoicePools.setEnabled(false);
mnuInvoicePools.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuInvoicePoolsActionPerformed(evt);
Expand All @@ -1653,7 +1652,6 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

mnuInvoiceTypes.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons16/material/baseline_receipt_long_black_48dp.png"))); // NOI18N
mnuInvoiceTypes.setText("Belegarten");
mnuInvoiceTypes.setEnabled(false);
mnuInvoiceTypes.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuInvoiceTypesActionPerformed(evt);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,6 @@
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
<Image iconType="3" name="/icons/edit_add.png"/>
</Property>
<Property name="enabled" type="boolean" value="false"/>
</Properties>
<Events>
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="cmdNewInvoiceActionPerformed"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2630,7 +2630,6 @@ public void mousePressed(java.awt.event.MouseEvent evt) {

cmdNewInvoice.setFont(cmdNewInvoice.getFont());
cmdNewInvoice.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/edit_add.png"))); // NOI18N
cmdNewInvoice.setEnabled(false);
cmdNewInvoice.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cmdNewInvoiceActionPerformed(evt);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -680,11 +680,11 @@ public static String getClientVersion() {
}

public static String getPatchLevel() {
return "0";
return "1";
}

public static String getBuild() {
return "1";
return "0";
}

public static boolean isVersionGreater(String referenceVersion, String compareToVersion) {
Expand Down

0 comments on commit 3355c90

Please sign in to comment.