Package nu.lazy8.ledger.forms

Examples of nu.lazy8.ledger.forms.CompanyComponents


  }//}}}

  //{{{ +AfterGoodChange() : void
  public void AfterGoodChange() {
    super.AfterGoodChange();
    EditBus.send(new AccountListChanged(this, "no parameters"));
    wasWriteOk = true;
    if (parent != null && bIsAddOnly) {
      parent.setVisible(false);
    }
  }//}}}
View Full Code Here


  /**
   *  Description of the Method
   */
  public void AfterGoodWrite() {
    super.AfterGoodWrite();
    EditBus.send(new AccountListChanged(this, "no parameters"));
    wasWriteOk = true;
    if (parent != null && bIsAddOnly) {
      parent.setVisible(false);
    }
  }//}}}
View Full Code Here

  /**
   *  Description of the Method
   */
  public void AfterGoodDelete() {
    super.AfterGoodDelete();
    EditBus.send(new AccountTypeListChanged(this, "no parameters"));
  }//}}}
View Full Code Here

  }//}}}

  //{{{ +AfterGoodChange() : void
  public void AfterGoodChange() {
    super.AfterGoodChange();
    EditBus.send(new AccountTypeListChanged(this, "no parameters"));
  }//}}}
View Full Code Here

  /**
   *  Description of the Method
   */
  public void AfterGoodWrite() {
    super.AfterGoodWrite();
    EditBus.send(new AccountTypeListChanged(this, "no parameters"));
  }//}}}
View Full Code Here

        }
      }
    }
    EditBus.send(new CompanyListChanged(null, "no parameters"));
    EditBus.send(new CustomerListChanged(null, "no parameters"));
    EditBus.send(new AccountTypeListChanged(null, "no parameters"));
  }//}}}
View Full Code Here

      st.executeUpdate(dcc.filterSQL("DELETE FROM AccountType WHERE CompId=" + companyId));
      if (deleteCompanyDef) {
        st = dcc.con.createStatement();
        st.executeUpdate(dcc.filterSQL("DELETE FROM Company WHERE CompId=" + companyId));
      }
      EditBus.send(new CompanyListChanged(null, "no parameters"));
    } catch (Exception e) {
      Log.log(Log.DEBUG, null, "Error in RemoveCompanyFromDatabase= " + e);
    }
  }//}}}
View Full Code Here

   */
  public void AfterGoodDelete() {
    //just make sure everything is gone.  Call function that deletes everything
    DeleteCompany.RemoveCompanyFromDatabase(textField1.getInteger().intValue(), view, false);
    super.AfterGoodDelete();
    EditBus.send(new CompanyListChanged(this, "no parameters"));
  }//}}}
View Full Code Here

  }//}}}

  //{{{ +AfterGoodChange() : void
  public void AfterGoodChange() {
    super.AfterGoodChange();
    EditBus.send(new CompanyListChanged(this, "no parameters"));
  }//}}}
View Full Code Here

   *  Description of the Method
   */
  public void AfterGoodWrite() {
    DataConnection.AddDefaultAccountTypes(textField1.getInteger().intValue());
    super.AfterGoodWrite();
    EditBus.send(new CompanyListChanged(this, "no parameters"));
  }//}}}
View Full Code Here

TOP

Related Classes of nu.lazy8.ledger.forms.CompanyComponents

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.