Skip to content

Commit

Permalink
do not select any party for submission by default. close #2180
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Nov 5, 2023
1 parent c1fa9e3 commit 0608f51
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ public class ClientSelectionStep extends javax.swing.JPanel implements WizardSte
private WizardDataContainer data = null;

/**
* Creates new form SampleStep1
* Creates new form ClientSelectionStep
*/
public ClientSelectionStep() {
initComponents();
Expand All @@ -692,7 +692,6 @@ public ClientSelectionStep() {

@Override
public void nextEvent() throws Exception {
//this.data.put("data1", this.txtFileNumber.getText());

ArrayList<DrebisPerson> persons=new ArrayList<>();

Expand Down Expand Up @@ -906,7 +905,7 @@ public void display() {


Vector row = new Vector();
row.add(true);
row.add(false);
row.add(cl.getName());
row.add(cl.getFirstName());
row.add(cl.getCompany());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ public void display() {
AddressBean cl = others.get(i);

Vector row = new Vector();
row.add(true);
row.add(false);
row.add(cl.getName());
row.add(cl.getFirstName());
row.add(cl.getCompany());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ public class ClientSelectionStep extends javax.swing.JPanel implements WizardSte
private WizardDataContainer data = null;

/**
* Creates new form SampleStep1
* Creates new form ClientSelectionStep
*/
public ClientSelectionStep() {
initComponents();
Expand All @@ -698,7 +698,6 @@ public ClientSelectionStep() {

@Override
public void nextEvent() throws Exception {
//this.data.put("data1", this.txtFileNumber.getText());

ArrayList<DrebisPerson> persons=new ArrayList<>();

Expand Down Expand Up @@ -1086,7 +1085,7 @@ public void display() {
// }

Vector row = new Vector();
row.add(true);
row.add(false);
row.add(cl.getName());
row.add(cl.getFirstName());
row.add(cl.getCompany());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ public void display() {
AddressBean cl = others.get(i);

Vector row = new Vector();
row.add(true);
row.add(false);
row.add(cl.getName());
row.add(cl.getFirstName());
row.add(cl.getCompany());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ public class ClientSelectionStep extends javax.swing.JPanel implements WizardSte
private WizardDataContainer data = null;

/**
* Creates new form SampleStep1
* Creates new form ClientSelectionStep
*/
public ClientSelectionStep() {
initComponents();
Expand All @@ -698,7 +698,6 @@ public ClientSelectionStep() {

@Override
public void nextEvent() throws Exception {
//this.data.put("data1", this.txtFileNumber.getText());

ArrayList<DrebisPerson> persons=new ArrayList<>();

Expand Down Expand Up @@ -1087,7 +1086,7 @@ public void display() {
}

Vector row = new Vector();
row.add(true);
row.add(false);
row.add(cl.getName());
row.add(cl.getFirstName());
row.add(cl.getCompany());
Expand Down

0 comments on commit 0608f51

Please sign in to comment.