Examples of PeopleCustomerVO


Examples of org.jallinone.sales.customers.java.PeopleCustomerVO

          controlItemsCode.setEnabled(false);
          controlActCode.setEnabled(false);
          controlChargesCode.setEnabled(false);
        }
        else {
          PeopleCustomerVO custVO = (PeopleCustomerVO)((VOResponse)res).getVo();
          controlCustCode.setValue(custVO.getCustomerCodeSAL07());
          controlCustCode.setEnabled(false);
          if (custVO.getPricelistCodeSal01SAL07()!=null) {
            controlPricelistCode.setValue(custVO.getPricelistCodeSal01SAL07());
            controlPricelistDescr.setValue(custVO.getPricelistDescriptionSYS10());
            controlPricelistCode.setEnabled(false);
            controlCurrencyCode.setValue(custVO.getCurrencyCodeReg03SAL01());
            controlPayCode.setValue(custVO.getPaymentCodeReg10SAL07());
            controlPayCode.setEnabled(false);
            controlPayDescr.setValue(custVO.getPaymentDescriptionSYS10());
            controlCreditsCode.setValue(custVO.getCreditAccountCodeAcc02SAL07());
            controlItemsCode.setValue(custVO.getItemsAccountCodeAcc02SAL07());
            controlActCode.setValue(custVO.getActivitiesAccountCodeAcc02SAL07());
            controlChargesCode.setValue(custVO.getChargesAccountCodeAcc02SAL07());
            controlCreditsCode.setEnabled(false);
            controlItemsCode.setEnabled(false);
            controlActCode.setEnabled(false);
            controlChargesCode.setEnabled(false);
          }
View Full Code Here

Examples of org.jallinone.sales.customers.java.PeopleCustomerVO

      customerPanel.setVOClassName("org.jallinone.sales.customers.java.OrganizationCustomerVO");
      customerPanel.getVOModel().setValueObject(new OrganizationCustomerVO());
    }
    else {
      customerPanel.setVOClassName("org.jallinone.sales.customers.java.PeopleCustomerVO");
      customerPanel.getVOModel().setValueObject(new PeopleCustomerVO());
    }
  }
View Full Code Here

Examples of org.jallinone.sales.customers.java.PeopleCustomerVO

                  ScheduledActivityVO actVO = (ScheduledActivityVO)c.getVOModel().getValueObject();
                  actVO.setProgressiveReg04SubjectSCH06(model.getProgressiveREG04());
                  c.getDetailFrame().getMainForm().getForm().pull("progressiveReg04SubjectSCH06");
                }
                else {
                  PeopleCustomerVO model = (PeopleCustomerVO)customerPanel.getVOModel().getValueObject();
                  c.getControlName_1Subject().setValue(model.getName_1REG04());
                  c.getControlName_2Subject().setValue(model.getName_2REG04());
                  ScheduledActivityVO actVO = (ScheduledActivityVO)c.getVOModel().getValueObject();
                  actVO.setProgressiveReg04SubjectSCH06(model.getProgressiveREG04());
                  c.getDetailFrame().getMainForm().getForm().pull("progressiveReg04SubjectSCH06");
                }

              }
              return false;
View Full Code Here

Examples of org.jallinone.sales.customers.java.PeopleCustomerVO

      customerPanel.addLinkedPanel(organizationPanel);

    }
    else {
      customerPanel.setVOClassName("org.jallinone.sales.customers.java.PeopleCustomerVO");
      customerPanel.getVOModel().setValueObject(new PeopleCustomerVO());

      customerPanel.removeLinkedPanel(organizationPanel);
      customerPanel.addLinkedPanel(peoplePanel);

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.