public TranportsController(FleetsTripsContext ctx)
 {
     _ctx = ctx;
 }
 public RulesController(FleetsTripsContext ctx)
 {
     _ctx = ctx;
 }
Beispiel #3
0
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
            BeginContext(64, 2, true);
            WriteLiteral("\r\n");
            EndContext();
#line 3 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"

            Layout            = "~/Views/Shared/_frontEnd.cshtml";
            ViewData["Title"] = "Danh sách JOBS";

#line default
#line hidden
            BeginContext(166, 82, true);
            WriteLiteral("\r\n<div style=\"text-align:center\"><h2>Danh sách Jobs của tài xế </h2></div>\r\n\r\n");
            EndContext();
#line 10 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"

            FleetsTripsContext _ctx  = new FleetsTripsContext();
            var sumOfNumberDropPoint = 0;
            var sumOfNumberTrip      = 0.0;
            foreach (var i in Model)
            {
                sumOfNumberDropPoint += i.NumberOfDropPoint;
                sumOfNumberTrip      += i.NumberOfTrips;
            }
            var driverId   = ViewBag.driver.Split("-")[0];
            var driverName = ViewBag.driver.Split("-")[1];

#line default
#line hidden
            BeginContext(624, 599, true);
            WriteLiteral(@"<div class=""container"">
    <table style=""width: 70%;text-align: center; margin: auto; margin-bottom: 10px;"" class=""table table-bordered table-responsive"">
        <thead>
            <tr style=""text-align: center"">
                <th style=""text-align: center"">Mã tài xế</th>
                <th style=""text-align: center"">Tên tài xế</th>
                <th style=""text-align: center"">Tổng số drop point trong tháng</th>
                <th style=""text-align: center"">Tổng số trip</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>");
            EndContext();
            BeginContext(1224, 8, false);
#line 34 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
            Write(driverId);

#line default
#line hidden
            EndContext();
            BeginContext(1232, 27, true);
            WriteLiteral("</td>\r\n                <td>");
            EndContext();
            BeginContext(1260, 10, false);
#line 35 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
            Write(driverName);

#line default
#line hidden
            EndContext();
            BeginContext(1270, 27, true);
            WriteLiteral("</td>\r\n                <td>");
            EndContext();
            BeginContext(1298, 20, false);
#line 36 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
            Write(sumOfNumberDropPoint);

#line default
#line hidden
            EndContext();
            BeginContext(1318, 27, true);
            WriteLiteral("</td>\r\n                <td>");
            EndContext();
            BeginContext(1346, 15, false);
#line 37 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
            Write(sumOfNumberTrip);

#line default
#line hidden
            EndContext();
            BeginContext(1361, 511, true);
            WriteLiteral(@"</td>
            </tr>
        </tbody>
    </table>
    <hr />
</div>



<div class=""container"">
    <table id=""datatable"" class=""display nowrap"" width=""100%"">
        <thead class=""thead-dark"">
            <tr>
                <th scope=""col"">#</th>
                <th scope=""col"">Mã chuyến</th>
                <th scope=""col"">Ngày hoàn thành</th>
                <th scope=""col"">Số drop point</th>
                <th scope=""col"">Số trip</th>
            </tr>
        </thead>
");
            EndContext();
#line 57 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
            if (Model.Count() > 0)
            {
#line default
#line hidden
                BeginContext(1916, 21, true);
                WriteLiteral("            <tbody>\r\n");
                EndContext();
#line 60 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"

                var i = 1;
                foreach (var item in Model)
                {
#line default
#line hidden
                    BeginContext(2061, 74, true);
                    WriteLiteral("                        <tr>\r\n                            <th scope=\"row\">");
                    EndContext();
                    BeginContext(2136, 1, false);
#line 65 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
                    Write(i);

#line default
#line hidden
                    EndContext();
                    BeginContext(2137, 39, true);
                    WriteLiteral("</th>\r\n                            <td>");
                    EndContext();
                    BeginContext(2177, 10, false);
#line 66 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
                    Write(item.JobNo);

#line default
#line hidden
                    EndContext();
                    BeginContext(2187, 39, true);
                    WriteLiteral("</td>\r\n                            <td>");
                    EndContext();
                    BeginContext(2227, 13, false);
#line 67 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
                    Write(item.ATD_Date);

#line default
#line hidden
                    EndContext();
                    BeginContext(2240, 39, true);
                    WriteLiteral("</td>\r\n                            <td>");
                    EndContext();
                    BeginContext(2280, 22, false);
#line 68 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
                    Write(item.NumberOfDropPoint);

#line default
#line hidden
                    EndContext();
                    BeginContext(2302, 39, true);
                    WriteLiteral("</td>\r\n                            <td>");
                    EndContext();
                    BeginContext(2342, 18, false);
#line 69 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
                    Write(item.NumberOfTrips);

#line default
#line hidden
                    EndContext();
                    BeginContext(2360, 38, true);
                    WriteLiteral("</td>\r\n                        </tr>\r\n");
                    EndContext();
#line 71 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
                    i++;
                }


#line default
#line hidden
                BeginContext(2470, 22, true);
                WriteLiteral("            </tbody>\r\n");
                EndContext();
#line 75 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\GetAllJobs.cshtml"
            }

#line default
#line hidden
            BeginContext(2503, 259, true);
            WriteLiteral(@"    </table>
</div>


<script src=""https://code.jquery.com/jquery-1.12.4.js""></script>
<script type=""text/javascript"">
    $(document).ready(function () {
        $('#datatable').DataTable({
            ""scrollX"": true
        });
    });
</script>");
            EndContext();
        }
 public DriversController(FleetsTripsContext ctx)
 {
     _ctx = ctx;
 }
 public ExcelsController(IHostingEnvironment hostingEnvironment, FleetsTripsContext ctx)
 {
     _hostingEnvironment = hostingEnvironment;
     _ctx = ctx;
 }
 public StatisticalsController(FleetsTripsContext ctx)
 {
     _ctx = ctx;
 }
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
            BeginContext(59, 2, true);
            WriteLiteral("\r\n");
            EndContext();
#line 3 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\Index.cshtml"

            ViewData["Title"] = "Danh sách chuyến hàng";
            FleetsTripsContext ctx         = new FleetsTripsContext();
            string             dateRerport = ctx.Orders.First().AtdcompleteDate.Month.ToString() + "/" + ctx.Orders.First().AtdcompleteDate.Year.ToString();

#line default
#line hidden
            BeginContext(315, 513, true);
            WriteLiteral(@"
<div style=""text-align:center""><h2>Danh sách tài xế tham gia vận chuyển</h2></div>
<div class=""container"">
    <table id=""datatable"" class=""display nowrap"" width=""100%"">
        <thead class=""thead-dark"">
            <tr>
                <th scope=""col"">#</th>
                <th scope=""col"">Mã tài xế</th>
                <th scope=""col"">Tên tài xế</th>
                <th scope=""col"">SDT</th>
                <th scope=""col""></th>
            </tr>
        </thead>
        <tbody>

");
            EndContext();
#line 23 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\Index.cshtml"

            var i = 1;
            foreach (var item in Model)
            {
#line default
#line hidden
                BeginContext(936, 66, true);
                WriteLiteral("                    <tr>\r\n                        <th scope=\"row\">");
                EndContext();
                BeginContext(1003, 1, false);
#line 28 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\Index.cshtml"
                Write(i);

#line default
#line hidden
                EndContext();
                BeginContext(1004, 35, true);
                WriteLiteral("</th>\r\n                        <td>");
                EndContext();
                BeginContext(1040, 15, false);
#line 29 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\Index.cshtml"
                Write(item.DriverIcno);

#line default
#line hidden
                EndContext();
                BeginContext(1055, 35, true);
                WriteLiteral("</td>\r\n                        <td>");
                EndContext();
                BeginContext(1091, 15, false);
#line 30 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\Index.cshtml"
                Write(item.DriverName);

#line default
#line hidden
                EndContext();
                BeginContext(1106, 35, true);
                WriteLiteral("</td>\r\n                        <td>");
                EndContext();
                BeginContext(1142, 16, false);
#line 31 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\Index.cshtml"
                Write(item.DriverPhone);

#line default
#line hidden
                EndContext();
                BeginContext(1158, 65, true);
                WriteLiteral("</td>\r\n                        <td>\r\n                            ");
                EndContext();
                BeginContext(1223, 133, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7b2731c13a3647caa48dd3fb0d818407", async() => {
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_1.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
                if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
                {
                    throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-driverICNo", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
                }
                BeginWriteTagHelperAttribute();
#line 33 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\Index.cshtml"
                WriteLiteral(item.DriverIcno);

#line default
#line hidden
                __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["driverICNo"] = __tagHelperStringValueBuffer;
                __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-driverICNo", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["driverICNo"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(1356, 60, true);
                WriteLiteral("\r\n                        </td>\r\n                    </tr>\r\n");
                EndContext();
#line 36 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Drivers\Index.cshtml"
                i++;
            }


#line default
#line hidden
            BeginContext(1476, 283, true);
            WriteLiteral(@"        </tbody>
    </table>
</div>

<script src=""https://code.jquery.com/jquery-1.12.4.js""></script>
<script type=""text/javascript"">
    $(document).ready(function () {
        $('#datatable').DataTable({
            ""scrollX"": true
        });
    });
</script>



");
            EndContext();
        }
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
            BeginContext(0, 2, true);
            WriteLiteral("\r\n");
            EndContext();
            BeginContext(66, 2, true);
            WriteLiteral("\r\n");
            EndContext();
#line 4 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"

            Layout            = "~/Views/Shared/_frontEnd.cshtml";
            ViewData["Title"] = "Danh sách JOBS";

#line default
#line hidden
            BeginContext(168, 73, true);
            WriteLiteral("\r\n<div style=\"text-align:center\"><h2>Danh sách Jobs của tài xế ngày ");
            EndContext();
            BeginContext(242, 54, false);
#line 9 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
            Write(Model.FirstOrDefault().ATD_Date.ToString("dd/MM/yyyy"));

#line default
#line hidden
            EndContext();
            BeginContext(296, 15, true);
            WriteLiteral("</h2></div>\r\n\r\n");
            EndContext();
#line 11 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"

            FleetsTripsContext _ctx  = new FleetsTripsContext();
            var sumOfNumberDropPoint = 0;
            var sumOfNumberTrip      = 0.0;
            foreach (var i in Model)
            {
                sumOfNumberDropPoint += i.NumberOfDropPoint;
                sumOfNumberTrip      += i.NumberOfTrips;
            }
            var driverId   = ViewBag.driver.Split("-")[0];
            var driverName = ViewBag.driver.Split("-")[1];

#line default
#line hidden
            BeginContext(687, 596, true);
            WriteLiteral(@"<div class=""container"">
    <table style=""width: 70%;text-align: center; margin: auto; margin-bottom: 10px;"" class=""table table-bordered table-responsive"">
        <thead>
            <tr style=""text-align: center"">
                <th style=""text-align: center"">Mã tài xế</th>
                <th style=""text-align: center"">Tên tài xế</th>
                <th style=""text-align: center"">Tổng số drop point trong ngày</th>
                <th style=""text-align: center"">Hệ số tài</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>");
            EndContext();
            BeginContext(1284, 8, false);
#line 35 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
            Write(driverId);

#line default
#line hidden
            EndContext();
            BeginContext(1292, 27, true);
            WriteLiteral("</td>\r\n                <td>");
            EndContext();
            BeginContext(1320, 10, false);
#line 36 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
            Write(driverName);

#line default
#line hidden
            EndContext();
            BeginContext(1330, 27, true);
            WriteLiteral("</td>\r\n                <td>");
            EndContext();
            BeginContext(1358, 20, false);
#line 37 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
            Write(sumOfNumberDropPoint);

#line default
#line hidden
            EndContext();
            BeginContext(1378, 27, true);
            WriteLiteral("</td>\r\n                <td>");
            EndContext();
            BeginContext(1406, 15, false);
#line 38 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
            Write(sumOfNumberTrip);

#line default
#line hidden
            EndContext();
            BeginContext(1421, 80, true);
            WriteLiteral("</td>\r\n            </tr>\r\n        </tbody>\r\n    </table>\r\n    <hr />\r\n</div>\r\n\r\n");
            EndContext();
#line 45 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
            if (Model.Count() > 0)
            {
#line default
#line hidden
                BeginContext(1529, 663, true);
                WriteLiteral(@"    <div class=""container"">
        <table id=""datatable"" class=""display nowrap"" width=""100%"">
            <thead class=""thead-dark"">
                <tr>
                    <th scope=""col"">#</th>
                    <th scope=""col"">Mã chuyến</th>
                    <th scope=""col"">Loại xe</th>
                    <th scope=""col"">Service level</th>
                    <th scope=""col"">Ngày giao hàng</th>
                    <th scope=""col"">Số drop point</th>
                    <th scope=""col"">Hệ số tài</th>
                    <th scope=""col""> Thành tiền (VNĐ)</th>
                </tr>
            </thead>
            <tbody>
");
                EndContext();
#line 62 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"

                var i = 1;
                foreach (var item in Model)
                {
#line default
#line hidden
                    BeginContext(2316, 74, true);
                    WriteLiteral("                        <tr>\r\n                            <th scope=\"row\">");
                    EndContext();
                    BeginContext(2391, 1, false);
#line 67 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    Write(i);

#line default
#line hidden
                    EndContext();
                    BeginContext(2392, 39, true);
                    WriteLiteral("</th>\r\n                            <td>");
                    EndContext();
                    BeginContext(2432, 10, false);
#line 68 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    Write(item.JobNo);

#line default
#line hidden
                    EndContext();
                    BeginContext(2442, 39, true);
                    WriteLiteral("</td>\r\n                            <td>");
                    EndContext();
                    BeginContext(2482, 14, false);
#line 69 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    Write(item.TruckType);

#line default
#line hidden
                    EndContext();
                    BeginContext(2496, 66, true);
                    WriteLiteral("</td>\r\n                            <td style=\"text-align:center;\">");
                    EndContext();
                    BeginContext(2563, 17, false);
#line 70 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    Write(item.ServiceLevel);

#line default
#line hidden
                    EndContext();
                    BeginContext(2580, 66, true);
                    WriteLiteral("</td>\r\n                            <td style=\"text-align:center;\">");
                    EndContext();
                    BeginContext(2647, 36, false);
#line 71 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    Write(item.ATD_Date.ToString("dd/MM/yyyy"));

#line default
#line hidden
                    EndContext();
                    BeginContext(2683, 66, true);
                    WriteLiteral("</td>\r\n                            <td style=\"text-align:center;\">");
                    EndContext();
                    BeginContext(2750, 22, false);
#line 72 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    Write(item.NumberOfDropPoint);

#line default
#line hidden
                    EndContext();
                    BeginContext(2772, 66, true);
                    WriteLiteral("</td>\r\n                            <td style=\"text-align:center;\">");
                    EndContext();
                    BeginContext(2839, 18, false);
#line 73 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    Write(item.NumberOfTrips);

#line default
#line hidden
                    EndContext();
                    BeginContext(2857, 66, true);
                    WriteLiteral("</td>\r\n                            <td style=\"text-align:center;\">");
                    EndContext();
                    BeginContext(2924, 27, false);
#line 74 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    Write(item.Money.ToString("##,#"));

#line default
#line hidden
                    EndContext();
                    BeginContext(2951, 38, true);
                    WriteLiteral("</td>\r\n                        </tr>\r\n");
                    EndContext();
#line 76 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                    i++;
                }


#line default
#line hidden
                BeginContext(3061, 152, true);
                WriteLiteral("            </tbody>\r\n        </table>\r\n        <hr class=\"\" />\r\n        <div class=\"container\" style=\"text-align:end;\">\r\n            <h3>Tổng cộng : ");
                EndContext();
                BeginContext(3214, 49, false);
#line 83 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
                Write(Model.Select(p => p.Money).Sum().ToString("##,#"));

#line default
#line hidden
                EndContext();
                BeginContext(3263, 37, true);
                WriteLiteral(" đ</h3>\r\n        </div>\r\n    </div>\r\n");
                EndContext();
#line 86 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
            }
            else
            {
#line default
#line hidden
                BeginContext(3314, 446, true);
                WriteLiteral(@"    <table class=""table table-responsive table-bordered"">
        <thead class=""thead-dark"">
            <tr>
                <th scope=""col"">#</th>
                <th scope=""col"">Mã chuyến</th>
                <th scope=""col"">Ngày hoàn thành</th>
                <th scope=""col"">Số drop point</th>
                <th scope=""col"">Số trip</th>
            </tr>
        </thead>
        <tbody>
        </tbody>
    </table>
");
                EndContext();
#line 103 "C:\Users\ADMIN\Desktop\YCH\YCH_Project_Report\CalculateSalaryOfFleet\CalculateSalaryOfFleet\Views\Statisticals\DetailJobsOfDay.cshtml"
            }

#line default
#line hidden
            BeginContext(3763, 237, true);
            WriteLiteral("\r\n\r\n<script src=\"https://code.jquery.com/jquery-1.12.4.js\"></script>\r\n<script type=\"text/javascript\">\r\n    $(document).ready(function () {\r\n        $(\'#datatable\').DataTable({\r\n            \"scrollX\": true\r\n        });\r\n    });\r\n</script>");
            EndContext();
        }