Example #1
0
        public void ReCreateDataBase()
        {
            Console.WriteLine("Begin Creating database.....");
            Database.SetInitializer <USOEntities>(new DropCreateDatabaseAlways <USOEntities>());
            var usoEntities = new USOEntities();

            usoEntities.SaveChanges();
            Console.WriteLine("DataBase Created......");
        }
Example #2
0
        public void TestInsertR3CustomerPlace()
        {
            var usoEntities     = new USOEntities();
            var R3CustomerPlace = new R3CustomerPlace()
            {
                CustomerLegalId = 2,
                R3CustomerCode  = "dddd",
                UnloadPlace     = "dddddddd"
            };

            usoEntities.R3CustomerPlace.Add(R3CustomerPlace);
            usoEntities.SaveChanges();
        }
Example #3
0
        public void TestInsertCustomer1()
        {
            var usoEntities = new USOEntities();
            //法人
            var customerLegal = new CustomerLegal
            {
                LegalNumber     = "0000001",
                CustomerName    = "邛崃市正大电器公司",
                LegalPerson     = "张三",
                BisinessLicense = "00000000000000001",
                Contact         = "028-88888888"
            };

            usoEntities.CustomerLegals.Add(customerLegal);


            var org = usoEntities.Organizations.Find(8);
            //法人组织
            var customerLegalOrg = new CustomerLegalOrg
            {
                CustomerLegal = customerLegal,
                Organization  = org,
            };

            usoEntities.CustomerLegalOrgs.Add(customerLegalOrg);

            //门店1
            var customerStore = new CustomerStore
            {
                CustomerLegal = customerLegal,
                StoreName     = "邛崃东街经营部",
                StoreAddress  = "邛崃市东街101号",
                StoreType     = usoEntities.Dictionaries.Where(p => p.FieldName == "StoreType" && p.FieldValue == "1").FirstOrDefault().Id
            };

            usoEntities.CustomerStores.Add(customerStore);


            //法人集团关系
            var r3ProductCompany1 =
                usoEntities.Organizations.FirstOrDefault(p => p.OrganizationType == OrganizationType.Head);
            var r3CustomerLegal = new R3CustomerLegal
            {
                CustomerLegal  = customerLegal,
                Organization   = r3ProductCompany1,
                R3CustomerCode = "000001",
            };

            usoEntities.R3CustomerLegals.Add(r3CustomerLegal);

            //法人门店集团关系
            //var r3ProductCompany2 = usoEntities.R3ProductCompanys.Find(1);
            // var r3CustomerStore = new R3CustomerStore
            //     {
            //         CustomerStore = customerStore,
            //         R3ProductCompany = r3ProductCompany2,
            //         R3CustomerCode = "000001001"
            //     };
            // usoEntities.R3CustomerStores.Add(r3CustomerStore);

            //法人账号(管理员)
            var customerUserAdmin = new CustomerUser
            {
                CustomerLegal      = customerLegal,
                UserName           = "******",
                Password           = "******",
                CustomerRole       = CustomerRole.Administrator,
                CustomerUserStatus = CustomerUserStatus.Valid,
            };

            usoEntities.CustomerUsers.Add(customerUserAdmin);

            //法人账号(产品经理)
            var customerUserProductManager = new CustomerUser
            {
                CustomerLegal      = customerLegal,
                UserName           = "******",
                Password           = "******",
                CustomerRole       = CustomerRole.ProductManager,
                CustomerUserStatus = CustomerUserStatus.Valid,
            };

            usoEntities.CustomerUsers.Add(customerUserProductManager);

            //法人账号(店员)
            var customerUserShopAssistant = new CustomerUser
            {
                CustomerLegal      = customerLegal,
                UserName           = "******",
                Password           = "******",
                CustomerRole       = CustomerRole.ShopAssistant,
                CustomerUserStatus = CustomerUserStatus.Valid,
            };

            usoEntities.CustomerUsers.Add(customerUserShopAssistant);

            usoEntities.SaveChanges();
        }
Example #4
0
        private void PriceInit(int productId, int customerId, int companyId, int departmentId)
        {
            var context    = new USOEntities();
            int PRODUCT_ID = productId;
            //法人id为40的测试数据
            //const int ORGANIZATION_ID_BRANCHCOMPANY = 16;//成都分公司
            //const int ORGANIZATION_ID_DEPARTMENT = 18;//邛崃经营部
            //const int CUSTOMER_ID = 40;
            //const decimal COST_PRICE = 100;
            //const decimal ACCT_PRICE = 110;
            //const decimal REDLINE_PRICE_BRACHCOMPANY = 120;
            //const decimal REDLINE_PRICE_DEPARTMENT = 130;
            //const decimal CUSTOMER_PRICE = 140;

            //法人id为41的测试数据
            int           ORGANIZATION_ID_BRANCHCOMPANY = companyId;    //成都分公司
            int           ORGANIZATION_ID_DEPARTMENT    = departmentId; //邛崃经营部
            int           CUSTOMER_ID = customerId;
            const decimal COST_PRICE  = 100;
            const decimal ACCT_PRICE  = 110;
            const decimal REDLINE_PRICE_BRACHCOMPANY = 120;
            const decimal REDLINE_PRICE_DEPARTMENT   = 130;
            const decimal CUSTOMER_PRICE             = 140;


            var product = context.Product.FirstOrDefault(p => p.Id == PRODUCT_ID);

            Assert.IsNotNull(product);

            var organizationBranchCompay =
                context.Organizations.FirstOrDefault(o => o.Id == ORGANIZATION_ID_BRANCHCOMPANY);

            Assert.IsNotNull(organizationBranchCompay);

            var organizationDepartment =
                context.Organizations.FirstOrDefault(o => o.Id == ORGANIZATION_ID_DEPARTMENT);

            Assert.IsNotNull(organizationDepartment);

            var costPrice = context.CostPrices.FirstOrDefault(c => c.ProductId == PRODUCT_ID);

            if (costPrice != null)
            {
                context.CostPrices.Attach(costPrice);
                costPrice.StandardCostCurrentMonth = COST_PRICE;
            }
            else
            {
                costPrice = new CostPrice()
                {
                    ProductId = PRODUCT_ID,
                    StandardCostCurrentMonth = COST_PRICE,
                    BusinessTime             = DateTime.UtcNow
                };
                context.CostPrices.Add(costPrice);
            }

            var redLinePriceBranchCompany = context.RedLinePrices.FirstOrDefault(r => r.ProductId == PRODUCT_ID && r.OrganizationId == ORGANIZATION_ID_BRANCHCOMPANY);
            var redLinePriceDepartment    = context.RedLinePrices.FirstOrDefault(r => r.ProductId == PRODUCT_ID && r.OrganizationId == ORGANIZATION_ID_DEPARTMENT);

            if (redLinePriceBranchCompany != null)
            {
                context.RedLinePrices.Attach(redLinePriceBranchCompany);
                redLinePriceBranchCompany.Price = REDLINE_PRICE_BRACHCOMPANY;
                redLinePriceBranchCompany.InternalAccountPrice = ACCT_PRICE;
            }
            else
            {
                redLinePriceBranchCompany = new RedLinePrice()
                {
                    ProductId            = PRODUCT_ID,
                    OrganizationId       = ORGANIZATION_ID_BRANCHCOMPANY,
                    InternalAccountPrice = ACCT_PRICE,
                    Price        = REDLINE_PRICE_BRACHCOMPANY,
                    BusinessTime = DateTime.UtcNow
                };
                context.RedLinePrices.Add(redLinePriceBranchCompany);
            }

            if (redLinePriceDepartment != null)
            {
                context.RedLinePrices.Attach(redLinePriceDepartment);
                redLinePriceDepartment.Price = REDLINE_PRICE_DEPARTMENT;
                redLinePriceDepartment.InternalAccountPrice = ACCT_PRICE;
            }
            else
            {
                redLinePriceDepartment = new RedLinePrice()
                {
                    ProductId            = PRODUCT_ID,
                    OrganizationId       = ORGANIZATION_ID_DEPARTMENT,
                    InternalAccountPrice = ACCT_PRICE,
                    Price        = REDLINE_PRICE_DEPARTMENT,
                    BusinessTime = DateTime.UtcNow
                };
                context.RedLinePrices.Add(redLinePriceDepartment);
            }

            var customerPrice = context.CustomerPricePolicies.FirstOrDefault(c => c.ProductId == PRODUCT_ID && c.OrganizationId == ORGANIZATION_ID_DEPARTMENT && c.CustomerType == CustomerType.CustomerId && c.TypeValue == customerId);

            if (customerPrice != null)
            {
                context.CustomerPricePolicies.Attach(customerPrice);
                customerPrice.Price = CUSTOMER_PRICE;
            }
            else
            {
                customerPrice = new CustomerPricePolicy()
                {
                    ProductId      = PRODUCT_ID,
                    OrganizationId = ORGANIZATION_ID_DEPARTMENT,
                    CustomerType   = CustomerType.CustomerId,
                    TypeValue      = CUSTOMER_ID,
                    Price          = CUSTOMER_PRICE,
                    EffectiveOn    = DateTime.UtcNow
                };
                context.CustomerPricePolicies.Add(customerPrice);
            }


            context.SaveChanges();
        }
Example #5
0
        public void TestInsertCustomerStore1()
        {
            var usoEntities   = new USOEntities();
            var customerLegal = usoEntities.CustomerLegals.Find(1);
            //门店1
            var customerStore = new CustomerStore
            {
                CustomerLegal = customerLegal,
                StoreName     = "邛崃西街经营部",
                StoreAddress  = "邛崃市西街999号",
                StoreType     = usoEntities.Dictionaries.Where(p => p.FieldName == "StoreType" && p.FieldValue == "1").FirstOrDefault().Id
            };

            usoEntities.CustomerStores.Add(customerStore);


            //var r3ProductCompany = usoEntities.R3ProductCompanys.Find(1);


            ////法人门店集团关系
            //var r3CustomerStore = new R3CustomerStore
            //{
            //    CustomerStore = customerStore,
            //    R3ProductCompany = r3ProductCompany,
            //    R3CustomerCode = "000001002"
            //};
            //usoEntities.R3CustomerStores.Add(r3CustomerStore);

            //法人账号(管理员)
            var customerUserAdmin = new CustomerUser
            {
                CustomerLegal      = customerLegal,
                UserName           = "******",
                Password           = "******",
                CustomerRole       = CustomerRole.Administrator,
                CustomerUserStatus = CustomerUserStatus.Valid,
            };

            usoEntities.CustomerUsers.Add(customerUserAdmin);

            //法人账号(产品经理)
            var customerUserProductManager = new CustomerUser
            {
                CustomerLegal      = customerLegal,
                UserName           = "******",
                Password           = "******",
                CustomerRole       = CustomerRole.ProductManager,
                CustomerUserStatus = CustomerUserStatus.Valid,
            };

            usoEntities.CustomerUsers.Add(customerUserProductManager);

            //法人账号(店员)
            var customerUserShopAssistant = new CustomerUser
            {
                CustomerLegal      = customerLegal,
                UserName           = "******",
                Password           = "******",
                CustomerRole       = CustomerRole.ShopAssistant,
                CustomerUserStatus = CustomerUserStatus.Valid,
            };

            usoEntities.CustomerUsers.Add(customerUserShopAssistant);
            usoEntities.SaveChanges();
        }
Example #6
0
 public void TestInsertCart()
 {
     var usoEntities = new USOEntities();
     var cartDetail  = new CartDetail {
     };
 }