Ejemplo n.º 1
0
        public async Task <IActionResult> Post([FromBody] NewProductViewModel viewModel)
        {
            try
            {
                var command = new CreateNewProduct(viewModel.Id, viewModel.Code, viewModel.Name);
                await createNewProduct.ExecuteAsync(command);

                return(new OkResult());
            }
            catch (Exception ex)
            {
                return(new BadRequestObjectResult(ex));
            }
        }
Ejemplo n.º 2
0
        public IActionResult Create()
        {
            // From user input
            var request = new ProductRequest()
            {
                Name  = "Macbook Pro 14-inch",
                Price = 42999000
            };

            // Use use case at here
            var product = CreateNewProduct.Handle(request);

            return(Ok(product));
        }
Ejemplo n.º 3
0
        public async void ShouldCreateNewProduct()
        {
            var command = new CreateNewProduct(Guid.NewGuid(),
                                               "USB-128",
                                               "Pendrive USB 128GB");

            ICommandHandler <CreateNewProduct> handler = new CreateNewProductHandler(productRepository);
            await handler.ExecuteAsync(command);

            var product = await productRepository.Get(command.Id);

            Assert.NotNull(product);
            Assert.Equal(command.Id, product.Id);
            Assert.Equal(command.Code, product.Code);
            Assert.Equal(command.Name, product.Name);
        }
Ejemplo n.º 4
0
        public void Processes(Annotation annotation, IOrganizationService service)
        {
            var exel = new ExcelReader().ExcelOpenSpreadsheets(annotation.DocumentBody.ToString(),
                                                               annotation.FileName.ToString());

            if (exel == null)
            {
                return;
            }

            if (exel.Tables[0].Rows[1][0].ToString() != "SKU")
            {
                return;
            }

            var data = new CreateNewProduct();
            List <ExcelProxyInvoice> invoice = new List <ExcelProxyInvoice>();

            data.service      = service;
            data.mainEntityId = annotation.ObjectId;
            for (int i = 2; i < exel.Tables[0].Rows.Count; i++)
            {
                var product       = new ExcelProxyProduct();
                var invoicedetail = new ExcelProxyInvoiceDetail();

                if (exel.Tables[0].Rows[i][0].ToString() != string.Empty && exel.Tables[0].Rows[i][0].ToString() != "Итого:")
                {
                    product.SKU                = exel.Tables[0].Rows[i][0].ToString();
                    product.Vendor             = exel.Tables[0].Rows[i][1].ToString();
                    product.recomendetPriceUSD = exel.Tables[0].Rows[i][10].ToString();
                    product.Product            = exel.Tables[0].Rows[i][2].ToString();

                    invoicedetail.Product          = exel.Tables[0].Rows[i][2].ToString();
                    invoicedetail.Count            = exel.Tables[0].Rows[i][3].ToString();
                    invoicedetail.Priceperunit     = exel.Tables[0].Rows[i][4].ToString();
                    invoicedetail.Baseamount       = exel.Tables[0].Rows[i][5].ToString();
                    invoicedetail.Purchaseprice    = exel.Tables[0].Rows[i][6].ToString();
                    invoicedetail.Amountpurchase   = exel.Tables[0].Rows[i][7].ToString();
                    invoicedetail.Pricepurchaseusd = exel.Tables[0].Rows[i][11].ToString();
                    invoicedetail.Exchangerates    = exel.Tables[0].Rows[i][13].ToString();
                    invoicedetail.totalUSD         = exel.Tables[0].Rows[i][12].ToString();

                    invoice.Add(new ExcelProxyInvoice
                    {
                        Marza         = exel.Tables[0].Rows[i][8].ToString(),
                        MarzaPersent  = exel.Tables[0].Rows[i][9].ToString(),
                        totalUSD      = exel.Tables[0].Rows[i][12].ToString(),
                        exchangeRates = exel.Tables[0].Rows[i][13].ToString()
                    });

                    EntityReference idProduct = data.ProductFromSpec(product);

                    if (idProduct == null)
                    {
                        throw new InvalidPluginExecutionException("Product not found");
                    }
                    if (data.CreateInvoiceDetail(invoicedetail, idProduct) == false)
                    {
                        throw new InvalidPluginExecutionException("InvoiceDetail don`t create");
                    }
                }
                else
                {
                    break;
                }
            }

            decimal sum = (from i in invoice
                           select Convert.ToDecimal(i.Marza)).Sum();
            decimal percent = (from i in invoice
                               select Convert.ToDecimal(i.MarzaPersent)).Average();
            decimal totalUSD = (from i in invoice
                                select Convert.ToDecimal(i.totalUSD)).Sum();
            double rates = (from i in invoice
                            select Convert.ToDouble(i.exchangeRates)).Average();

            using (var orgContext = new OrganizationServiceContext(service))
            {
                var invoiceMain = (from y in orgContext.CreateQuery <Invoice>()
                                   where y.Id == annotation.ObjectId.Id
                                   select y).FirstOrDefault();

                var updateInvoice = new Invoice()
                {
                    Id = annotation.ObjectId.Id,
                    //new_marginUSD = invoiceMain.new_marginUSD + (double)sum,
                    //new_morginpercentage = percent == 0 ? 0 : (invoiceMain.new_morginpercentage ?? 0 + percent),
                    new_USD = invoiceMain.new_USD + (double)totalUSD,
                    //new_exchangerate = invoiceMain.new_exchangerate ?? 0 + rates
                };

                service.Update(updateInvoice);
            }
        }
Ejemplo n.º 5
0
        public void Processes(Annotation annotation, IOrganizationService service)
        {
            using (var orgContext = new OrganizationServiceContext(service))
            {
                var quoteMain = (from y in orgContext.CreateQuery <Quote>()
                                 where y.Id == annotation.ObjectId.Id
                                 select y).FirstOrDefault();

                var exel = new ExcelReader().ExcelOpenSpreadsheets(annotation.DocumentBody.ToString(),
                                                                   annotation.FileName.ToString());

                if (exel == null)
                {
                    return;
                }

                var data = new CreateNewProduct();
                List <ExcelProxyQuote> quote = new List <ExcelProxyQuote>();
                data.service      = service;
                data.mainEntityId = annotation.ObjectId;

                int line = 0;
                for (var i = 0; i < exel.Tables[0].Rows.Count; i++)
                {
                    if (exel.Tables[0].Rows[i][0].ToString() == "SKU")
                    {
                        line = i;
                        break;
                    }
                }

                for (int i = line + 1; i < exel.Tables[0].Rows.Count; i++)
                {
                    var product     = new ExcelProxyProduct();
                    var quotedetail = new ExcelProxyQuotedetail();

                    if (exel.Tables[0].Rows[i][1].ToString() != string.Empty && exel.Tables[0].Rows[i][0].ToString() != "Итого:")
                    {
                        product.SKU     = exel.Tables[0].Rows[i][0].ToString();
                        product.Vendor  = exel.Tables[0].Rows[i][1].ToString();
                        product.Product = exel.Tables[0].Rows[i][2].ToString();

                        quotedetail.Product               = exel.Tables[0].Rows[i][2].ToString();
                        quotedetail.Vendor                = exel.Tables[0].Rows[i][1].ToString();
                        quotedetail.SKU                   = exel.Tables[0].Rows[i][0].ToString();
                        quotedetail.quantity              = exel.Tables[0].Rows[i][3].ToString();
                        quotedetail.priceperunit          = exel.Tables[0].Rows[i][4].ToString();
                        quotedetail.baseamount            = exel.Tables[0].Rows[i][5].ToString();
                        quotedetail.new_usdprice          = exel.Tables[0].Rows[i][6].ToString();
                        quotedetail.new_totalpurchaseusd  = exel.Tables[0].Rows[i][7].ToString();
                        quotedetail.new_koef              = exel.Tables[0].Rows[i][8].ToString();
                        quotedetail.new_sellingusd        = exel.Tables[0].Rows[i][9].ToString();
                        quotedetail.new_generalsellingusd = exel.Tables[0].Rows[i][10].ToString();
                        quotedetail.exchangeRates         = exel.Tables[0].Rows[i][11].ToString();

                        quote.Add(new ExcelProxyQuote
                        {
                            new_usd      = exel.Tables[0].Rows[i][7].ToString(),
                            new_summausd = exel.Tables[0].Rows[i][10].ToString()
                        });

                        EntityReference idProduct = data.ProductFromSpec(product, quoteMain.PriceLevelId);

                        if (idProduct == null)
                        {
                            throw new InvalidPluginExecutionException("Product not found");
                        }
                        if (data.CreateQuoteDetail(quotedetail, idProduct) == false)
                        {
                            throw new InvalidPluginExecutionException("QuoteDetail don`t create");
                        }
                    }
                    else
                    {
                        break;
                    }
                }

                double usd = (from i in quote
                              select Convert.ToDouble(i.new_usd)).Sum();
                double summusd = (from i in quote
                                  select Convert.ToDouble(i.new_summausd)).Sum();

                var updateQuote = new Quote()
                {
                    Id           = annotation.ObjectId.Id,
                    new_usd      = usd,
                    new_summausd = summusd
                };

                service.Update(updateQuote);
            }
        }
Ejemplo n.º 6
0
        internal void Processes(Annotation annotation, IOrganizationService service)
        {
            var exel = new ExcelReader().ExcelOpenSpreadsheets(annotation.DocumentBody.ToString(),
                                                               annotation.FileName.ToString());

            if (exel == null)
            {
                return;
            }

            if (exel.Tables[0].Rows[1][0].ToString() != "SKU")
            {
                return;
            }

            var data = new CreateNewProduct();
            List <ExcelProxyQuote> quote = new List <ExcelProxyQuote>();

            data.service      = service;
            data.mainEntityId = annotation.ObjectId;

            for (int i = 2; i < exel.Tables[0].Rows.Count; i++)
            {
                var product     = new ExcelProxyProduct();
                var quotedetail = new ExcelProxyQuotedetail();

                if (exel.Tables[0].Rows[i][0].ToString() != string.Empty && exel.Tables[0].Rows[i][0].ToString() != "Итого:")
                {
                    product.SKU                = exel.Tables[0].Rows[i][0].ToString();
                    product.Vendor             = exel.Tables[0].Rows[i][1].ToString();
                    product.recomendetPriceUSD = exel.Tables[0].Rows[i][10].ToString();
                    product.Product            = exel.Tables[0].Rows[i][2].ToString();

                    quotedetail.Product        = exel.Tables[0].Rows[i][2].ToString();
                    quotedetail.Count          = exel.Tables[0].Rows[i][3].ToString();
                    quotedetail.priceForOneHRN = exel.Tables[0].Rows[i][4].ToString();
                    quotedetail.priceAllHRN    = exel.Tables[0].Rows[i][5].ToString();
                    quotedetail.buyPriceHRN    = exel.Tables[0].Rows[i][6].ToString();
                    quotedetail.buyPriceAllHRN = exel.Tables[0].Rows[i][7].ToString();
                    quotedetail.buyPriceAllUSD = exel.Tables[0].Rows[i][11].ToString();
                    quotedetail.exchangeRates  = exel.Tables[0].Rows[i][13].ToString();
                    quotedetail.totalUSD       = exel.Tables[0].Rows[i][12].ToString();

                    quote.Add(new ExcelProxyQuote
                    {
                        Marza        = exel.Tables[0].Rows[i][8].ToString(),
                        MarzaPersent = exel.Tables[0].Rows[i][9].ToString(),
                        //discount = exel.Tables[0].Rows[i][13].ToString(),
                        //discountForPartners = exel.Tables[0].Rows[i][14].ToString(),
                        exchangeRates = exel.Tables[0].Rows[i][13].ToString()
                    });

                    EntityReference idProduct = data.ProductFromSpec(product);

                    if (idProduct == null)
                    {
                        throw new InvalidPluginExecutionException("Product not found");
                    }
                    if (data.CreateQuoteDetail(quotedetail, idProduct) == false)
                    {
                        throw new InvalidPluginExecutionException("QuoteDetail don`t create");
                    }
                }
                else
                {
                    break;
                }
            }

            decimal sum = (from i in quote
                           select Convert.ToDecimal(i.Marza)).Sum();
            decimal percent = (from i in quote
                               select Convert.ToDecimal(i.MarzaPersent)).Average();
            decimal discount = (from i in quote
                                select Convert.ToDecimal(i.discount)).Average();
            double rates = (from i in quote
                            select Convert.ToDouble(i.exchangeRates)).Average();

            using (var orgContext = new OrganizationServiceContext(service))
            {
                var quoteMain = (from y in orgContext.CreateQuery <Quote>()
                                 where y.Id == annotation.ObjectId.Id
                                 select y).FirstOrDefault();

                var updateQuote = new Quote()
                {
                    Id                   = annotation.ObjectId.Id,
                    new_marginUSD        = new Money((quoteMain.new_marginUSD == null ? decimal.Zero : quoteMain.new_marginUSD.Value) + sum),
                    new_morginpercentage = percent == 0 ? 0 : (quoteMain.new_morginpercentage ?? 0 + percent) * 100,
                    new_exchangerate     = quoteMain.new_exchangerate ?? 0 + rates/*,
                                                                                   * DiscountPercentage = quoteMain.DiscountPercentage ?? 0 + discount*/
                };

                service.Update(updateQuote);
            }
        }