Exemplo n.º 1
0
        private void LoadSkuProp()
        {
            CustomerBasicSettingBLL customerBasicSettingBLL = new CustomerBasicSettingBLL(CurrentUserInfo);

            SKUExist = customerBasicSettingBLL.CheckSKUExist();

            var skuPropService = new JIT.CPOS.BS.BLL.SkuPropServer(CurrentUserInfo);
            var source         = skuPropService.GetSkuPropList();

            SkuProInfos = source;

            //价格类型集合(jifeng.cao 20140221)
            var itemPriceTypeService = new JIT.CPOS.BS.BLL.ItemPriceTypeService(CurrentUserInfo);
            var list = itemPriceTypeService.GetItemPriceTypeList();

            ItemPriceTypeInfos = list;
        }