コード例 #1
0
        public async Task <(bool IsSuccess, IEnumerable <Models.InvoiceViewModel> Invoices, string ErrorMessage)> GetInvoicesByCustomerId(Guid customerId)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    var invoices = await dbContext.invoices.Where(c => c.customer_id == customerId).Include("contractor")
                                   .Include("customer").Include("invoicestatu").Include("invoiceitems").Include("invoiceitems.billingitem")
                                   .Include("invoiceitems.invoicefiles").ToListAsync();

                    if (invoices != null && invoices.Any())
                    {
                        var result = mapper.Map <IEnumerable <invoice>, IEnumerable <Models.InvoiceViewModel> >(invoices);

                        return(true, result, null);
                    }
                }

                return(false, null, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, null, ex.Message);
            }
        }
コード例 #2
0
        private static async Task <int?> SaveBillingItem(ZubairEntities dbContext, dynamic bt)
        {
            int?billingItemId = bt.id;

            if (billingItemId != null)
            {
                var billingItem = await dbContext.billingitems.Where(c => c.id == billingItemId).FirstOrDefaultAsync();

                // update billing item
                if (billingItem != null)
                {
                    billingItem.cost = bt.cost;
                    billingItem.name = bt.name;
                    await dbContext.SaveChangesAsync();
                }
            }
            else
            {
                // create billing item
                var tempBillingItem = new billingitem
                {
                    cost = bt.cost,
                    name = bt.name
                };
                dbContext.billingitems.Add(tempBillingItem);
                await dbContext.SaveChangesAsync();

                dbContext.Entry(tempBillingItem).GetDatabaseValues();
                billingItemId = tempBillingItem.id;
            }

            return(billingItemId);
        }
コード例 #3
0
        public async Task <(bool IsSuccess, string ErrorMessage)> UpdateInvoiceStatus(int InvoiceID, int StatusID)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    var invoice = await dbContext.invoices.Where(c => c.id == InvoiceID).FirstOrDefaultAsync();

                    if (invoice != null)
                    {
                        invoice.invoice_status_id = StatusID;
                        await dbContext.SaveChangesAsync();

                        return(true, null);
                    }
                }

                return(false, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, ex.Message);
            }
        }
コード例 #4
0
        private static async Task <Guid> SaveInvoiceItem(ZubairEntities dbContext, int invoiceID, dynamic it, int billingItemId, Guid invoiceItemId, invoiceitem invoiceItem)
        {
            // update invoice items
            if (invoiceItem != null)
            {
                invoiceItem.invoice_id      = invoiceID;
                invoiceItem.billing_item_id = billingItemId;
                invoiceItem.discount        = it.Discount;
                invoiceItem.totalcost       = it.TotalCost;
                invoiceItem.taxes           = it.Taxes;
                invoiceItemId = invoiceItem.id;
                await dbContext.SaveChangesAsync();
            }
            else
            {
                // create invoice items
                var tempInvoiceItem = new invoiceitem
                {
                    id              = Guid.NewGuid(),
                    invoice_id      = invoiceID,
                    billing_item_id = billingItemId,
                    discount        = it.Discount,
                    totalcost       = it.TotalCost
                };

                dbContext.invoiceitems.Add(tempInvoiceItem);
                await dbContext.SaveChangesAsync();

                dbContext.Entry(tempInvoiceItem).GetDatabaseValues();
                invoiceItemId = tempInvoiceItem.id;
            }

            return(invoiceItemId);
        }
コード例 #5
0
        private async Task SaveInvoiceSubData(ZubairEntities dbContext, dynamic item, int invoiceID, invoice invoice)
        {
            try
            {
                foreach (var it in item.InvoiceItem)
                {
                    foreach (var bt in it.BillingItem)
                    {
                        int billingItemId = await SaveBillingItem(dbContext, bt);

                        Guid invoiceItemId = Guid.Empty;
                        var  invoiceItem   = await dbContext.invoiceitems.Where(c => c.billing_item_id == billingItemId).FirstOrDefaultAsync();

                        invoiceItemId = await SaveInvoiceItem(dbContext, invoiceID, it, billingItemId, invoiceItemId, invoiceItem);

                        foreach (var invFile in it.InvoiceFile)
                        {
                            await SaveInvoiceFile(dbContext, invoiceItemId, invFile);
                        }
                    }
                }

                InsertInvoiceLog(dbContext, invoiceID, invoice.invoice_status_id);
                await dbContext.SaveChangesAsync();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #6
0
        private async Task SaveInvoiceFile(ZubairEntities dbContext, Guid invoiceItemId, dynamic invFile)
        {
            int?invoiceFileId = invFile.id;

            if (invoiceFileId != null)
            {
                var invoiceFile = await dbContext.invoicefiles.Where(c => c.id == invoiceFileId).FirstOrDefaultAsync();

                // create file
                if (invoiceFile != null)
                {
                    invoiceFile.invoice_item_id = invFile.invoiceItemId;
                    invoiceFile.name            = invFile.name;

                    invoiceFile.filelocation = GetFilePath(invoiceFile.name);
                }
            }
            else
            {
                var tempInvoiceFile = new invoicefile
                {
                    invoice_item_id = invoiceItemId,
                    name            = invFile.name
                };

                tempInvoiceFile.filelocation = GetFilePath(tempInvoiceFile.name);
                dbContext.invoicefiles.Add(tempInvoiceFile);
            }
            await dbContext.SaveChangesAsync();
        }
コード例 #7
0
        public async Task <(bool IsSuccess, string ErrorMessage)> CreateInvoiceItem(InvoiceItem invoiceItem)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    if (invoiceItem != null)
                    {
                        var tempInvoiceItem = new invoiceitem();
                        tempInvoiceItem.id              = Guid.NewGuid();
                        tempInvoiceItem.invoice_id      = invoiceItem.InvoiceId;
                        tempInvoiceItem.billing_item_id = invoiceItem.BillingItemId;
                        tempInvoiceItem.discount        = invoiceItem.Discount;
                        tempInvoiceItem.totalcost       = invoiceItem.TotalCost;
                        dbContext.invoiceitems.Add(tempInvoiceItem);
                        await dbContext.SaveChangesAsync();

                        return(true, null);
                    }
                }
                return(false, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, ex.Message);
            }
        }
コード例 #8
0
        public async Task <(bool IsSuccess, string ErrorMessage)> UpdateInvoiceItem(InvoiceItem invoiceItem)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    var tempInvoice = await dbContext.invoiceitems.Where(c => c.id == invoiceItem.Id).FirstOrDefaultAsync();

                    if (tempInvoice != null)
                    {
                        var tempInvoiceItem = new invoiceitem();
                        tempInvoiceItem.invoice_id      = invoiceItem.InvoiceId;
                        tempInvoiceItem.billing_item_id = invoiceItem.BillingItemId;
                        tempInvoiceItem.discount        = invoiceItem.Discount;
                        tempInvoiceItem.totalcost       = invoiceItem.TotalCost;
                        await dbContext.SaveChangesAsync();

                        return(true, null);
                    }
                }
                return(false, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, ex.Message);
            }
        }
コード例 #9
0
        public async Task <(bool IsSuccess, IEnumerable <InvoiceItemViewModel> InvoiceItems, string ErrorMessage)> GetInvoiceItemByBillingID(int billingItemId)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    var invoiceItems = await dbContext.invoiceitems.Include("billingitem").Include("invoicefiles")
                                       .Where(c => c.billing_item_id == billingItemId).ToListAsync();

                    if (invoiceItems != null && invoiceItems.Any())
                    {
                        var result = mapper.Map <IEnumerable <invoiceitem>, IEnumerable <Models.InvoiceItemViewModel> >(invoiceItems);

                        return(true, result, null);
                    }
                }

                return(false, null, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, null, ex.Message);
            }
        }
コード例 #10
0
        public async Task <(bool IsSuccess, string ErrorMessage)> CreateInvoiceLog(InvoiceLog invoiceLog)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    if (invoiceLog != null)
                    {
                        var tempInvoiceItem = new invoicelog
                        {
                            invoice_id      = invoiceLog.InvoiceId,
                            invoicestatusid = invoiceLog.InvoiceStatusID,
                            datecreated     = DateTime.Now
                        };

                        dbContext.invoicelogs.Add(tempInvoiceItem);
                        await dbContext.SaveChangesAsync();

                        return(true, null);
                    }
                }
                return(false, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, ex.Message);
            }
        }
コード例 #11
0
        public async Task <(bool IsSuccess, AuthorizedApp AuthorizedApp, string ErrorMessage)> GetAuth(string token, string password)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    var authorizedApp = await dbContext.authorizedapps
                                        .Where(c => c.AppToken == token &&
                                               c.AppSecret == password && DateTime.UtcNow < c.TokenExpiration)
                                        .FirstOrDefaultAsync();

                    if (authorizedApp != null)
                    {
                        var result = mapper.Map <authorizedapp, Models.AuthorizedApp>(authorizedApp);

                        return(true, result, null);
                    }
                }

                return(false, null, "Not Found");
            }
            catch (Exception ex)
            {
                return(false, null, ex.Message);
            }
        }
コード例 #12
0
        public async Task <(bool IsSuccess, string ErrorMessage)> CreateInvoiceFile(InvoiceFile invoiceFile)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    if (invoiceFile != null)
                    {
                        var tempInvoiceFile = new invoicefile();
                        tempInvoiceFile.invoice_item_id = invoiceFile.InvoiceItemId;
                        tempInvoiceFile.name            = invoiceFile.Name;
                        tempInvoiceFile.filelocation    = invoiceFile.FileLocation;
                        dbContext.invoicefiles.Add(tempInvoiceFile);
                        await dbContext.SaveChangesAsync();

                        return(true, null);
                    }
                }
                return(false, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, ex.Message);
            }
        }
コード例 #13
0
        private static void InsertInvoiceLog(ZubairEntities dbContext, int invoiceID, int?invoiceStatusId)
        {
            // create logs
            var tempInvoicelog = new invoicelog
            {
                invoice_id      = invoiceID,
                invoicestatusid = invoiceStatusId,
                datecreated     = DateTime.Now
            };

            dbContext.invoicelogs.Add(tempInvoicelog);
        }
コード例 #14
0
        public async Task <(bool IsSuccess, IEnumerable <InvoiceItem> InvoiceItems, string ErrorMessage)> GetInvoiceItems(int id)
        {
            try
            {
                using (ZubairEntities dbContext = new ZubairEntities())
                {
                    var invoiceItems = await dbContext.invoiceitems.ToListAsync();

                    if (invoiceItems != null && invoiceItems.Any())
                    {
                        var result = mapper.Map <IEnumerable <invoiceitem>, IEnumerable <Models.InvoiceItem> >(invoiceItems);

                        return(true, result, null);
                    }
                }

                return(false, null, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, null, ex.Message);
            }
        }
コード例 #15
0
        public async Task <(bool IsSuccess, string ErrorMessage)> UpdateInvoice(HttpFileCollection files)
        {
            bool IsSuccessSaving = false;

            try
            {
                for (int i = 0; i < files.Count; i++)
                {
                    HttpPostedFile httpPostedFile = files[i];
                    if (httpPostedFile == null)
                    {
                        return(false, "Not Found");
                    }
                    if (httpPostedFile.FileName.ToLower().Contains("data.json"))
                    {
                        if (httpPostedFile.ContentLength > 0)
                        {
                            dynamic array = JsonConvert.DeserializeObject((new StreamReader(httpPostedFile.InputStream)).ReadToEnd());
                            using (ZubairEntities dbContext = new ZubairEntities())
                            {
                                using (DbContextTransaction transaction = dbContext.Database.BeginTransaction())
                                {
                                    try
                                    {
                                        foreach (var item in array)
                                        {
                                            if (item != null)
                                            {
                                                int invoiceID = item.id;
                                                var invoice   = await dbContext.invoices.Where(c => c.id == invoiceID).FirstOrDefaultAsync();

                                                // invoice
                                                if (invoice != null)
                                                {
                                                    invoice.contractor_id     = item.ContractorId;
                                                    invoice.customer_id       = item.CustomerID;
                                                    invoice.invoice_status_id = item.InvoiceStatusId;
                                                    invoice.isactive          = item.IsActive;
                                                    await dbContext.SaveChangesAsync();

                                                    await SaveInvoiceSubData(dbContext, item, invoiceID, invoice);
                                                }
                                            }
                                        }

                                        IsSuccessSaving = true;
                                        transaction.Commit();
                                    }
                                    catch (Exception ex)
                                    {
                                        transaction.Rollback();
                                        throw ex;
                                    }
                                }
                            } // end using
                        }
                    }
                }

                if (IsSuccessSaving)
                {
                    for (int i = 0; i < files.Count; i++)
                    {
                        HttpPostedFile httpPostedFile = files[i];
                        if (!httpPostedFile.FileName.ToLower().Contains("data.json"))
                        {
                            this.UploadFile(httpPostedFile);
                        }
                    }
                    return(true, null);
                }

                return(false, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, ex.Message);
            }
        }
コード例 #16
0
        public async Task <(bool IsSuccess, string ErrorMessage)> CreateInvoice(HttpFileCollection files)
        {
            bool IsSuccessSaving = false;

            try
            {
                for (int i = 0; i < files.Count; i++)
                {
                    HttpPostedFile httpPostedFile = files[i];
                    if (httpPostedFile == null)
                    {
                        return(false, "Not Found");
                    }
                    if (httpPostedFile.FileName.ToLower().Contains("data.json"))
                    {
                        if (httpPostedFile.ContentLength > 0)
                        {
                            dynamic array = JsonConvert.DeserializeObject((new StreamReader(httpPostedFile.InputStream)).ReadToEnd());
                            using (ZubairEntities dbContext = new ZubairEntities())
                            {
                                using (DbContextTransaction transaction = dbContext.Database.BeginTransaction())
                                {
                                    try
                                    {
                                        foreach (var item in array)
                                        {
                                            if (item != null)
                                            {
                                                // invoice
                                                var tempInvoice = new invoice
                                                {
                                                    contractor_id     = item.ContractorId,
                                                    customer_id       = item.CustomerID,
                                                    creationdate      = DateTime.Now,
                                                    invoice_status_id = item.InvoiceStatusId,
                                                    isactive          = item.IsActive
                                                };

                                                dbContext.invoices.Add(tempInvoice);
                                                await dbContext.SaveChangesAsync();

                                                dbContext.Entry(tempInvoice).GetDatabaseValues();
                                                int invoiceID = tempInvoice.id;

                                                await SaveInvoiceSubData(dbContext, item, invoiceID, tempInvoice);

                                                #region "Commented"
                                                //foreach (var it in item.InvoiceItem)
                                                //{
                                                //    foreach (var bt in it.BillingItem)
                                                //    {
                                                //        // create billing item
                                                //        var tempBillingItem = new billingitem
                                                //        {
                                                //            cost = bt.cost,
                                                //            name = bt.name
                                                //        };

                                                //        dbContext.billingitems.Add(tempBillingItem);
                                                //        await dbContext.SaveChangesAsync();
                                                //        dbContext.Entry(tempBillingItem).GetDatabaseValues();
                                                //        int billingItemId = tempBillingItem.id;

                                                //        // create invoice items
                                                //        var tempInvoiceItem = new invoiceitem
                                                //        {
                                                //            invoice_id = invoiceID,
                                                //            billing_item_id = billingItemId,
                                                //            discount = it.Discount,
                                                //            totalcost = it.TotalCost
                                                //        };

                                                //        dbContext.invoiceitems.Add(tempInvoiceItem);
                                                //        await dbContext.SaveChangesAsync();
                                                //        dbContext.Entry(tempInvoiceItem).GetDatabaseValues();
                                                //        int invoiceItemId = tempInvoiceItem.id;

                                                //        foreach (var invFile in it.InvoiceFile)
                                                //        {
                                                //            // create file
                                                //            var tempInvoiceFile = new invoicefile
                                                //            {
                                                //                invoiceitem_id = invoiceItemId,
                                                //                name = invFile.name
                                                //            };

                                                //            tempInvoiceFile.filelocation = GetFilePath(tempInvoiceFile.name);
                                                //            dbContext.invoicefiles.Add(tempInvoiceFile);
                                                //        }
                                                //        await dbContext.SaveChangesAsync();
                                                //    }
                                                //}

                                                //InsertInvoiceLog(dbContext, invoiceID, tempInvoice.invoice_status_id);

                                                //await dbContext.SaveChangesAsync();
                                                #endregion
                                            }
                                        }

                                        IsSuccessSaving = true;
                                        transaction.Commit();
                                    }
                                    catch (Exception ex)
                                    {
                                        transaction.Rollback();
                                        throw ex;
                                    }
                                }
                            } // end using
                        }
                    }
                }

                if (IsSuccessSaving)
                {
                    for (int i = 0; i < files.Count; i++)
                    {
                        HttpPostedFile httpPostedFile = files[i];
                        if (!httpPostedFile.FileName.ToLower().Contains("data.json"))
                        {
                            this.UploadFile(httpPostedFile);
                        }
                    }
                    return(true, null);
                }

                return(false, "Not Found");
            }
            catch (Exception ex)
            {
                //logger?.LogError(ex.ToString());
                return(false, ex.Message);
            }
        }