Beispiel #1
0
        public override CategoryItemForm getProductCIForm_select()
        {
            CategoryItemForm productCIForm_select = new ProductStainlessCategoryItemForm(0, CategoryItemTypeConfs.CategoryItemType_ProductStainless, LabelUtility.DATA_PRODUCT, this.mainForm);

            productCIForm_select.initVersions(getVersions(),
                                              UpdateType.ProductUpdate, UpdateType.ProductCategoryUpdate, UpdateType.CustomerUpdate, UpdateType.CustomerCategoryUpdate);

            appendEvent(productCIForm_select);
            return(productCIForm_select);
        }
Beispiel #2
0
 /************** data setting ************************/
 public override CategoryItemForm getProductCIForm()
 {
     if (productCIForm == null || productCIForm.IsDisposed)
     {
         productCIForm = new ProductStainlessCategoryItemForm(1, CategoryItemTypeConfs.CategoryItemType_ProductStainless, LabelUtility.DATA_PRODUCT, this.mainForm);
         productCIForm.initVersions(getVersions(),
                                    UpdateType.ProductUpdate, UpdateType.ProductCategoryUpdate, UpdateType.CustomerUpdate, UpdateType.CustomerCategoryUpdate);
         appendEvent(productCIForm);
     }
     return(productCIForm);
 }