Example #1
0
        public override CategoryItemForm getCustomerCIForm_Select()
        {
            customerCIForm_select = new CustomerCardCategoryItemForm(0, CategoryItemTypeConfs.CategoryItemType_Customer, LabelUtility.DATA_CUSTOMER, this.mainForm);
            customerCIForm_select.initVersions(getVersions(), UpdateType.CustomerCategoryUpdate, UpdateType.CustomerUpdate);
            appendEvent(customerCIForm_select);

            return(customerCIForm_select);
        }
Example #2
0
 public override CategoryItemForm getCustomerCIForm()
 {
     if (customerCIForm == null || customerCIForm.IsDisposed)
     {
         customerCIForm = new CustomerCardCategoryItemForm(1, CategoryItemTypeConfs.CategoryItemType_Customer, LabelUtility.DATA_CUSTOMER, this.mainForm);
         customerCIForm.initVersions(getVersions(), UpdateType.CustomerCategoryUpdate, UpdateType.CustomerUpdate);
         appendEvent(customerCIForm);
     }
     return(customerCIForm);
 }