update
This commit is contained in:
125
Controllers/Personnel.Controller.cs
Normal file
125
Controllers/Personnel.Controller.cs
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using FastReport;
|
||||||
|
using FastReport.Export.Csv;
|
||||||
|
using FastReport.Export.Mht;
|
||||||
|
using FastReport.Export.OoXML;
|
||||||
|
using FastReport.Export.Pdf;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using rmutr_report.Models;
|
||||||
|
using rmutr_report.Models.Hr;
|
||||||
|
|
||||||
|
namespace rmutr_report.Controllers
|
||||||
|
{
|
||||||
|
|
||||||
|
public class PersonnelController : Controller
|
||||||
|
{
|
||||||
|
readonly Setting _setting;
|
||||||
|
|
||||||
|
public PersonnelController(Setting setting)
|
||||||
|
{
|
||||||
|
this._setting = setting;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpPost, Route("reports/personnel_summary/{type}")]
|
||||||
|
[ApiExplorerSettings(GroupName = "reports")]
|
||||||
|
public IActionResult GetHrReport([FromRoute] string type, [FromBody] personnel_summary personnel_summarys)
|
||||||
|
{
|
||||||
|
foreach (var v in personnel_summarys.personnel_types)
|
||||||
|
{
|
||||||
|
if (v.count != null)
|
||||||
|
{
|
||||||
|
var total = personnel_summarys.personnel_types.Select(r => r.count).Sum(t=>t.Value);
|
||||||
|
personnel_summarys.total_pertype = total;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var personnel_summaryss = new List<personnel_summary>() { personnel_summarys };
|
||||||
|
|
||||||
|
Report report = new Report();
|
||||||
|
report.Load(_setting.report_path + "personnel_summary.frx");
|
||||||
|
report.RegisterData(personnel_summaryss, "personnel_summary");
|
||||||
|
report.Prepare();
|
||||||
|
|
||||||
|
MemoryStream stream = new MemoryStream();
|
||||||
|
switch (type)
|
||||||
|
{
|
||||||
|
case "pdf":
|
||||||
|
PDFExport pdf = new PDFExport();
|
||||||
|
report.Export(pdf, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "application/pdf");
|
||||||
|
|
||||||
|
case "xls":
|
||||||
|
Excel2007Export excel = new Excel2007Export();
|
||||||
|
report.Export(excel, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "application/vnd.ms-excel");
|
||||||
|
break;
|
||||||
|
case "mht":
|
||||||
|
MHTExport mht = new MHTExport();
|
||||||
|
report.Export(mht, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "multipart/related");
|
||||||
|
break;
|
||||||
|
case "csv":
|
||||||
|
CSVExport csv = new CSVExport();
|
||||||
|
report.Export(csv, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "text/csv");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
[HttpPost, Route("reports/man_power/{type}")]
|
||||||
|
[ApiExplorerSettings(GroupName = "reports")]
|
||||||
|
public IActionResult GetManReport([FromRoute] string type, [FromBody] List<man_power> man_powers)
|
||||||
|
{
|
||||||
|
|
||||||
|
//var personnel_summaryss = new List<personnel_summary>() { personnel_summarys };
|
||||||
|
|
||||||
|
Report report = new Report();
|
||||||
|
report.Load(_setting.report_path + "man_power.frx");
|
||||||
|
report.RegisterData(man_powers, "man_power");
|
||||||
|
report.Prepare();
|
||||||
|
|
||||||
|
MemoryStream stream = new MemoryStream();
|
||||||
|
switch (type)
|
||||||
|
{
|
||||||
|
case "pdf":
|
||||||
|
PDFExport pdf = new PDFExport();
|
||||||
|
report.Export(pdf, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "application/pdf");
|
||||||
|
|
||||||
|
case "xls":
|
||||||
|
Excel2007Export excel = new Excel2007Export();
|
||||||
|
report.Export(excel, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "application/vnd.ms-excel");
|
||||||
|
break;
|
||||||
|
case "mht":
|
||||||
|
MHTExport mht = new MHTExport();
|
||||||
|
report.Export(mht, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "multipart/related");
|
||||||
|
break;
|
||||||
|
case "csv":
|
||||||
|
CSVExport csv = new CSVExport();
|
||||||
|
report.Export(csv, stream);
|
||||||
|
stream.Seek(0, SeekOrigin.Begin);
|
||||||
|
return File(stream, "text/csv");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
23
Dockerfile.dev
Normal file
23
Dockerfile.dev
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
FROM mcr.microsoft.com/dotnet/sdk:5.0 as build-env
|
||||||
|
WORKDIR /source
|
||||||
|
COPY . .
|
||||||
|
RUN dotnet restore --configfile nuget.config
|
||||||
|
RUN dotnet build
|
||||||
|
RUN dotnet publish -o /publish --configuration Release;
|
||||||
|
|
||||||
|
FROM mcr.microsoft.com/dotnet/sdk:5.0
|
||||||
|
COPY . .
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends apt-utils
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y fontconfig
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libc6-dev
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libgdiplus
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libx11-dev
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive rm -rf /var/lib/apt/lists/*
|
||||||
|
RUN mkdir -p /usr/local/share/fonts/fonts/sarabun
|
||||||
|
COPY Fonts/* /usr/local/share/fonts/sarabun/
|
||||||
|
RUN chmod 644 /usr/local/share/fonts/sarabun/*
|
||||||
|
RUN fc-cache -fv
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=build-env /publish .
|
||||||
|
ENV ASPNETCORE_URLS http://*:8080
|
||||||
|
ENTRYPOINT ["dotnet", "rmutr-report.dll"]
|
||||||
BIN
Fonts/THSarabunNew Bold.ttf
Normal file
BIN
Fonts/THSarabunNew Bold.ttf
Normal file
Binary file not shown.
BIN
Fonts/THSarabunNew BoldItalic.ttf
Normal file
BIN
Fonts/THSarabunNew BoldItalic.ttf
Normal file
Binary file not shown.
BIN
Fonts/THSarabunNew Italic.ttf
Normal file
BIN
Fonts/THSarabunNew Italic.ttf
Normal file
Binary file not shown.
BIN
Fonts/THSarabunNew.ttf
Normal file
BIN
Fonts/THSarabunNew.ttf
Normal file
Binary file not shown.
BIN
Fonts/THSarabunPSK Bold Italic.ttf
Normal file
BIN
Fonts/THSarabunPSK Bold Italic.ttf
Normal file
Binary file not shown.
BIN
Fonts/THSarabunPSK Bold.ttf
Normal file
BIN
Fonts/THSarabunPSK Bold.ttf
Normal file
Binary file not shown.
BIN
Fonts/THSarabunPSK Italic.ttf
Normal file
BIN
Fonts/THSarabunPSK Italic.ttf
Normal file
Binary file not shown.
BIN
Fonts/THSarabunPSK.ttf
Normal file
BIN
Fonts/THSarabunPSK.ttf
Normal file
Binary file not shown.
37
Models/Hr/man_power.cs
Normal file
37
Models/Hr/man_power.cs
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
namespace rmutr_report.Models.Hr
|
||||||
|
{
|
||||||
|
public class man_power
|
||||||
|
{
|
||||||
|
public string no { get; set; }
|
||||||
|
public string agency_name { get; set; }
|
||||||
|
public int? rate { get; set; }
|
||||||
|
public int? government_officer_totalrate { get; set; }
|
||||||
|
public int? government_officer_packing { get; set; }
|
||||||
|
public int? government_officer_rate { get; set; }
|
||||||
|
public int? university_staff_totalrate{ get; set; }
|
||||||
|
public int? university_staff_packing { get; set; }
|
||||||
|
public int? university_staff_rate { get; set; }
|
||||||
|
public int? government_employee_totalrate{ get; set; }
|
||||||
|
public int? government_employee_packing { get; set; }
|
||||||
|
public int? government_employee_rate { get; set; }
|
||||||
|
public int? permanent_employee_totalrate{ get; set; }
|
||||||
|
public int? permanent_employee_support_packing { get; set; }
|
||||||
|
public int? permanent_employee_support_rate { get; set; }
|
||||||
|
public int? permanent_employee_field_packing { get; set; }
|
||||||
|
public int? permanent_employee_field_rate { get; set; }
|
||||||
|
public int? temporary_worker_land_totalrate { get; set; }
|
||||||
|
public int? temporary_worker_land_packing { get; set; }
|
||||||
|
public int? temporary_worker_land_rate { get; set; }
|
||||||
|
public int? temporary_worker_income_totalrate { get; set; }
|
||||||
|
public int? temporary_worker_income_support_packing { get; set; }
|
||||||
|
public int? temporary_worker_income_support_rate { get; set; }
|
||||||
|
public int? temporary_worker_income_field_packing { get; set; }
|
||||||
|
public int? temporary_worker_income_field_rate { get; set; }
|
||||||
|
public int? total_personnel_totalrate { get; set; }
|
||||||
|
public int? total_personnel_support_packing { get; set; }
|
||||||
|
public int? total_personnel_support_rate { get; set; }
|
||||||
|
public int? total_personnel_field_packing { get; set; }
|
||||||
|
public int? total_personnel_field_rate { get; set; }
|
||||||
|
public string status { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
44
Models/Hr/personnel_summary.cs
Normal file
44
Models/Hr/personnel_summary.cs
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace rmutr_report.Models.Hr
|
||||||
|
{
|
||||||
|
public class personnel_summary
|
||||||
|
{
|
||||||
|
public string data_date {get; set; }
|
||||||
|
public int? total_pertype {get; set; }
|
||||||
|
public List<personnel_type> personnel_types {get; set; }
|
||||||
|
public List<lineofwork> lineofworks {get; set; }
|
||||||
|
public List<position> positions {get; set; }
|
||||||
|
public List<area> areas {get; set; }
|
||||||
|
public List<qualification> qualifications {get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class personnel_type
|
||||||
|
{
|
||||||
|
public string type_name { get; set; }
|
||||||
|
public int? count { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class lineofwork
|
||||||
|
{
|
||||||
|
public string work_name { get; set; }
|
||||||
|
public int? count { get; set; }
|
||||||
|
}
|
||||||
|
public class position
|
||||||
|
{
|
||||||
|
public string position_name { get; set; }
|
||||||
|
public int? count { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class area
|
||||||
|
{
|
||||||
|
public string area_name { get; set; }
|
||||||
|
public int? count { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class qualification
|
||||||
|
{
|
||||||
|
public string qualification_name { get; set; }
|
||||||
|
public int? count { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
8
Models/Setting.cs
Normal file
8
Models/Setting.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
namespace rmutr_report.Models
|
||||||
|
{
|
||||||
|
public class Setting
|
||||||
|
{
|
||||||
|
public string report_path { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
26
Program.cs
Normal file
26
Program.cs
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Hosting;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using Microsoft.Extensions.Hosting;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace rmutr_report
|
||||||
|
{
|
||||||
|
public class Program
|
||||||
|
{
|
||||||
|
public static void Main(string[] args)
|
||||||
|
{
|
||||||
|
CreateHostBuilder(args).Build().Run();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||||||
|
Host.CreateDefaultBuilder(args)
|
||||||
|
.ConfigureWebHostDefaults(webBuilder =>
|
||||||
|
{
|
||||||
|
webBuilder.UseStartup<Startup>();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
31
Properties/launchSettings.json
Normal file
31
Properties/launchSettings.json
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||||
|
"iisSettings": {
|
||||||
|
"windowsAuthentication": false,
|
||||||
|
"anonymousAuthentication": true,
|
||||||
|
"iisExpress": {
|
||||||
|
"applicationUrl": "http://localhost:33423",
|
||||||
|
"sslPort": 44365
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"profiles": {
|
||||||
|
"IIS Express": {
|
||||||
|
"commandName": "IISExpress",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"launchUrl": "swagger",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rmutr_report": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": "true",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"launchUrl": "swagger",
|
||||||
|
"applicationUrl": "https://localhost:5001;http://localhost:5000",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
106
Startup.cs
Normal file
106
Startup.cs
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Builder;
|
||||||
|
using Microsoft.AspNetCore.Hosting;
|
||||||
|
using Microsoft.AspNetCore.HttpOverrides;
|
||||||
|
using Microsoft.AspNetCore.HttpsPolicy;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Extensions.Hosting;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using Microsoft.OpenApi.Models;
|
||||||
|
using rmutr_report.Models;
|
||||||
|
|
||||||
|
namespace rmutr_report
|
||||||
|
{
|
||||||
|
public class Startup
|
||||||
|
{
|
||||||
|
public Startup(IConfiguration configuration)
|
||||||
|
{
|
||||||
|
Configuration = configuration;
|
||||||
|
}
|
||||||
|
|
||||||
|
public IConfiguration Configuration { get; }
|
||||||
|
|
||||||
|
public void ConfigureServices(IServiceCollection services)
|
||||||
|
{
|
||||||
|
var _setting = new Setting()
|
||||||
|
{
|
||||||
|
report_path = Configuration["Settings:ReportPath"]
|
||||||
|
|
||||||
|
};
|
||||||
|
services.AddSingleton(_setting);
|
||||||
|
services.AddControllers();
|
||||||
|
services.AddSwaggerGen(c =>
|
||||||
|
{
|
||||||
|
c.SwaggerDoc("reports", new OpenApiInfo {Title = "Reports API", Version = "v1"});
|
||||||
|
|
||||||
|
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
||||||
|
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
|
||||||
|
c.IncludeXmlComments(xmlPath);
|
||||||
|
|
||||||
|
// c.MapType(typeof(TimeSpan?), () => new OpenApiSchema
|
||||||
|
// {
|
||||||
|
// Type = "string",
|
||||||
|
// Example = new OpenApiString("09:30:00")
|
||||||
|
// });
|
||||||
|
});
|
||||||
|
|
||||||
|
services.AddCors(options =>
|
||||||
|
{
|
||||||
|
options.AddPolicy(name: "AllowAllOrigins",
|
||||||
|
builder =>
|
||||||
|
{
|
||||||
|
builder.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
||||||
|
{
|
||||||
|
app.UseForwardedHeaders(new ForwardedHeadersOptions
|
||||||
|
{
|
||||||
|
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto,
|
||||||
|
KnownNetworks =
|
||||||
|
{
|
||||||
|
new IPNetwork(IPAddress.Any, 0)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
app.UseSwagger(c => {
|
||||||
|
c.RouteTemplate = "swagger/{documentName}/swagger.json";
|
||||||
|
c.PreSerializeFilters.Add((swaggerDoc, httpReq) =>
|
||||||
|
{
|
||||||
|
if (!httpReq.Headers.ContainsKey("X-Forwarded-Host")) return;
|
||||||
|
|
||||||
|
var serverUrl = $"{httpReq.Headers["X-Scheme"]}://" +
|
||||||
|
$"{httpReq.Headers["X-Forwarded-Host"]}" +
|
||||||
|
$"{httpReq.Headers["X-Forwarded-Prefix"]}";
|
||||||
|
swaggerDoc.Servers = new List<OpenApiServer> { new OpenApiServer { Url =serverUrl}};// $"{httpReq.Scheme}://{httpReq.Host.Value}{swaggerBasePath}" } };
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
//Swagger interface
|
||||||
|
app.UseSwaggerUI(c =>
|
||||||
|
{
|
||||||
|
c.SwaggerEndpoint("reports/swagger.json", "Reports API v1");
|
||||||
|
|
||||||
|
c.DefaultModelExpandDepth(0);
|
||||||
|
c.DefaultModelsExpandDepth(-1);
|
||||||
|
});
|
||||||
|
|
||||||
|
app.UseRouting();
|
||||||
|
|
||||||
|
app.UseAuthorization();
|
||||||
|
|
||||||
|
app.UseCors("AllowAllOrigins");
|
||||||
|
|
||||||
|
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
9
appsettings.Development.json
Normal file
9
appsettings.Development.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
14
appsettings.json
Normal file
14
appsettings.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"Settings":{
|
||||||
|
"ReportPath":"wwwroot/reports/"
|
||||||
|
|
||||||
|
},
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
||||||
9
bin/Debug/net5.0/appsettings.Development.json
Normal file
9
bin/Debug/net5.0/appsettings.Development.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
14
bin/Debug/net5.0/appsettings.json
Normal file
14
bin/Debug/net5.0/appsettings.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"Settings":{
|
||||||
|
"ReportPath":"wwwroot/reports/"
|
||||||
|
|
||||||
|
},
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
||||||
488
bin/Debug/net5.0/font2021.3.0.list
Normal file
488
bin/Debug/net5.0/font2021.3.0.list
Normal file
@@ -0,0 +1,488 @@
|
|||||||
|
JS Chanok C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\JS Chanok Normal.ttf
|
||||||
|
JS Chulee C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\JS Chulee Regular.ttf
|
||||||
|
TF Arluck Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TFArluck.ttf
|
||||||
|
TF Arluck C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TFArluck.ttf
|
||||||
|
TH Baijam Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam Bold Italic.ttf
|
||||||
|
TH Baijam-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam Bold Italic.ttf
|
||||||
|
TH Baijam Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam Italic.ttf
|
||||||
|
TH Baijam C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam Italic.ttf
|
||||||
|
TH Baijam Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam.ttf
|
||||||
|
TH Chakra Petch Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch Bold Italic.ttf
|
||||||
|
TH Chakra Petch-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch Bold Italic.ttf
|
||||||
|
TH Chakra Petch Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch Italic.ttf
|
||||||
|
TH Chakra Petch C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch Italic.ttf
|
||||||
|
TH Chakra Petch Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch.ttf
|
||||||
|
TH Charm of AU Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charm of AU.ttf
|
||||||
|
TH Charm of AU C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charm of AU.ttf
|
||||||
|
TH Charmonman-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charmonman Bold.ttf
|
||||||
|
TH Charmonman Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charmonman.ttf
|
||||||
|
TH Charmonman C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charmonman.ttf
|
||||||
|
TH Fah kwang Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang Bold Italic.ttf
|
||||||
|
TH Fah kwang-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang Bold Italic.ttf
|
||||||
|
TH Fah kwang Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang Italic.ttf
|
||||||
|
TH Fah kwang C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang Italic.ttf
|
||||||
|
TH Fah kwang Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang.ttf
|
||||||
|
TH K2D July8 Bold-B-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Bold Italic.ttf
|
||||||
|
TH K2D July8-B-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Bold Italic.ttf
|
||||||
|
TH K2D July8 Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Bold.ttf
|
||||||
|
TH K2D July8-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Bold.ttf
|
||||||
|
TH K2D July8 Italic-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Italic.ttf
|
||||||
|
TH K2D July8-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Italic.ttf
|
||||||
|
TH K2D July8 Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8.ttf
|
||||||
|
TH K2D July8 C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8.ttf
|
||||||
|
TH Kodchasal Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal Bold Italic.ttf
|
||||||
|
TH Kodchasal-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal Bold Italic.ttf
|
||||||
|
TH Kodchasal Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal Italic.ttf
|
||||||
|
TH Kodchasal C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal Italic.ttf
|
||||||
|
TH Kodchasal Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal.ttf
|
||||||
|
TH KoHo Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo Bold Italic.ttf
|
||||||
|
TH KoHo-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo Bold Italic.ttf
|
||||||
|
TH KoHo Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo Italic.ttf
|
||||||
|
TH KoHo C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo Italic.ttf
|
||||||
|
TH KoHo Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo.ttf
|
||||||
|
TH Krub Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub Bold Italic.ttf
|
||||||
|
TH Krub-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub Bold Italic.ttf
|
||||||
|
TH Krub Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub Italic.ttf
|
||||||
|
TH Krub C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub Italic.ttf
|
||||||
|
TH Krub Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub.ttf
|
||||||
|
TH Mali Grade 6 Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6 Bold Italic.ttf
|
||||||
|
TH Mali Grade 6-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6 Bold Italic.ttf
|
||||||
|
TH Mali Grade 6 Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6 Italic.ttf
|
||||||
|
TH Mali Grade 6 C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6 Italic.ttf
|
||||||
|
TH Mali Grade 6 Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6.ttf
|
||||||
|
TH Niramit AS Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS Bold Italic.ttf
|
||||||
|
TH Niramit AS-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS Bold Italic.ttf
|
||||||
|
TH Niramit AS Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS Italic.ttf
|
||||||
|
TH Niramit AS C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS Italic.ttf
|
||||||
|
TH Niramit AS Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS.ttf
|
||||||
|
TH Srisakdi Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Srisakdi Bold.ttf
|
||||||
|
TH Srisakdi-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Srisakdi Bold.ttf
|
||||||
|
TH Srisakdi Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Srisakdi.ttf
|
||||||
|
TH Srisakdi C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Srisakdi.ttf
|
||||||
|
TH SarabunPSK Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun Bold Italic.ttf
|
||||||
|
TH SarabunPSK-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun Bold Italic.ttf
|
||||||
|
TH SarabunPSK Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun Italic.ttf
|
||||||
|
TH SarabunPSK C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun Italic.ttf
|
||||||
|
TH SarabunPSK Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun.ttf
|
||||||
|
TH Sarabun New-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew Bold.ttf
|
||||||
|
TH Sarabun New-B-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew BoldItalic.ttf
|
||||||
|
TH Sarabun New-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew Italic.ttf
|
||||||
|
TH Sarabun New C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew.ttf
|
||||||
|
Agency FB-B C:\WINDOWS\Fonts\AGENCYB.TTF
|
||||||
|
Agency FB C:\WINDOWS\Fonts\AGENCYR.TTF
|
||||||
|
Algerian C:\WINDOWS\Fonts\ALGER.TTF
|
||||||
|
Angsana New C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Angsana New-B C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Angsana New-B-I C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Angsana New-I C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
AngsanaUPC C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
AngsanaUPC-B C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
AngsanaUPC-B-I C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
AngsanaUPC-I C:\WINDOWS\Fonts\angsana.ttc
|
||||||
|
Book Antiqua-B C:\WINDOWS\Fonts\ANTQUAB.TTF
|
||||||
|
Book Antiqua-B-I C:\WINDOWS\Fonts\ANTQUABI.TTF
|
||||||
|
Book Antiqua-I C:\WINDOWS\Fonts\ANTQUAI.TTF
|
||||||
|
Arial C:\WINDOWS\Fonts\arial.ttf
|
||||||
|
Arial-B C:\WINDOWS\Fonts\arialbd.ttf
|
||||||
|
Arial-B-I C:\WINDOWS\Fonts\arialbi.ttf
|
||||||
|
Arial-I C:\WINDOWS\Fonts\ariali.ttf
|
||||||
|
Arial Narrow C:\WINDOWS\Fonts\ARIALN.TTF
|
||||||
|
Arial Narrow-B C:\WINDOWS\Fonts\ARIALNB.TTF
|
||||||
|
Arial Narrow-B-I C:\WINDOWS\Fonts\ARIALNBI.TTF
|
||||||
|
Arial Narrow-I C:\WINDOWS\Fonts\ARIALNI.TTF
|
||||||
|
Arial Black-B C:\WINDOWS\Fonts\ariblk.ttf
|
||||||
|
Arial Rounded MT Bold C:\WINDOWS\Fonts\ARLRDBD.TTF
|
||||||
|
Bahnschrift C:\WINDOWS\Fonts\bahnschrift.ttf
|
||||||
|
Baskerville Old Face C:\WINDOWS\Fonts\BASKVILL.TTF
|
||||||
|
Bauhaus 93 C:\WINDOWS\Fonts\BAUHS93.TTF
|
||||||
|
Bell MT C:\WINDOWS\Fonts\BELL.TTF
|
||||||
|
Bell MT-B C:\WINDOWS\Fonts\BELLB.TTF
|
||||||
|
Bell MT-I C:\WINDOWS\Fonts\BELLI.TTF
|
||||||
|
Bernard MT Condensed C:\WINDOWS\Fonts\BERNHC.TTF
|
||||||
|
Book Antiqua C:\WINDOWS\Fonts\BKANT.TTF
|
||||||
|
Bodoni MT-B C:\WINDOWS\Fonts\BOD_B.TTF
|
||||||
|
Bodoni MT-B-I C:\WINDOWS\Fonts\BOD_BI.TTF
|
||||||
|
Bodoni MT Black-B-I C:\WINDOWS\Fonts\BOD_BLAI.TTF
|
||||||
|
Bodoni MT Black-B C:\WINDOWS\Fonts\BOD_BLAR.TTF
|
||||||
|
Bodoni MT Condensed-B C:\WINDOWS\Fonts\BOD_CB.TTF
|
||||||
|
Bodoni MT Condensed-B-I C:\WINDOWS\Fonts\BOD_CBI.TTF
|
||||||
|
Bodoni MT Condensed-I C:\WINDOWS\Fonts\BOD_CI.TTF
|
||||||
|
Bodoni MT Condensed C:\WINDOWS\Fonts\BOD_CR.TTF
|
||||||
|
Bodoni MT-I C:\WINDOWS\Fonts\BOD_I.TTF
|
||||||
|
Bodoni MT Poster C:\WINDOWS\Fonts\BOD_PSTC.TTF
|
||||||
|
Bodoni MT Poster Compressed C:\WINDOWS\Fonts\BOD_PSTC.TTF
|
||||||
|
Bodoni MT C:\WINDOWS\Fonts\BOD_R.TTF
|
||||||
|
Bookman Old Style C:\WINDOWS\Fonts\BOOKOS.TTF
|
||||||
|
Bookman Old Style-B C:\WINDOWS\Fonts\BOOKOSB.TTF
|
||||||
|
Bookman Old Style-B-I C:\WINDOWS\Fonts\BOOKOSBI.TTF
|
||||||
|
Bookman Old Style-I C:\WINDOWS\Fonts\BOOKOSI.TTF
|
||||||
|
Bradley Hand ITC C:\WINDOWS\Fonts\BRADHITC.TTF
|
||||||
|
Britannic Bold C:\WINDOWS\Fonts\BRITANIC.TTF
|
||||||
|
Berlin Sans FB-B C:\WINDOWS\Fonts\BRLNSB.TTF
|
||||||
|
Berlin Sans FB Demi-B C:\WINDOWS\Fonts\BRLNSDB.TTF
|
||||||
|
Berlin Sans FB C:\WINDOWS\Fonts\BRLNSR.TTF
|
||||||
|
Broadway C:\WINDOWS\Fonts\BROADW.TTF
|
||||||
|
Browallia New C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Browallia New-B C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Browallia New-B-I C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Browallia New-I C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
BrowalliaUPC C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
BrowalliaUPC-B C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
BrowalliaUPC-B-I C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
BrowalliaUPC-I C:\WINDOWS\Fonts\browalia.ttc
|
||||||
|
Brush Script MT-I C:\WINDOWS\Fonts\BRUSHSCI.TTF
|
||||||
|
Bookshelf Symbol 7 C:\WINDOWS\Fonts\BSSYM7.TTF
|
||||||
|
Calibri C:\WINDOWS\Fonts\calibri.ttf
|
||||||
|
Calibri-B C:\WINDOWS\Fonts\calibrib.ttf
|
||||||
|
Calibri-I C:\WINDOWS\Fonts\calibrii.ttf
|
||||||
|
Calibri Light C:\WINDOWS\Fonts\calibril.ttf
|
||||||
|
Calibri Light-I C:\WINDOWS\Fonts\calibrili.ttf
|
||||||
|
Calibri-B-I C:\WINDOWS\Fonts\calibriz.ttf
|
||||||
|
Californian FB-B C:\WINDOWS\Fonts\CALIFB.TTF
|
||||||
|
Californian FB-I C:\WINDOWS\Fonts\CALIFI.TTF
|
||||||
|
Californian FB C:\WINDOWS\Fonts\CALIFR.TTF
|
||||||
|
Calisto MT C:\WINDOWS\Fonts\CALIST.TTF
|
||||||
|
Calisto MT-B C:\WINDOWS\Fonts\CALISTB.TTF
|
||||||
|
Calisto MT-B-I C:\WINDOWS\Fonts\CALISTBI.TTF
|
||||||
|
Calisto MT-I C:\WINDOWS\Fonts\CALISTI.TTF
|
||||||
|
Cambria C:\WINDOWS\Fonts\cambria.ttc
|
||||||
|
Cambria Math C:\WINDOWS\Fonts\cambria.ttc
|
||||||
|
Cambria-B C:\WINDOWS\Fonts\cambriab.ttf
|
||||||
|
Cambria-I C:\WINDOWS\Fonts\cambriai.ttf
|
||||||
|
Cambria-B-I C:\WINDOWS\Fonts\cambriaz.ttf
|
||||||
|
Candara C:\WINDOWS\Fonts\Candara.ttf
|
||||||
|
Candara-B C:\WINDOWS\Fonts\Candarab.ttf
|
||||||
|
Candara-I C:\WINDOWS\Fonts\Candarai.ttf
|
||||||
|
Candara Light C:\WINDOWS\Fonts\Candaral.ttf
|
||||||
|
Candara Light-I C:\WINDOWS\Fonts\Candarali.ttf
|
||||||
|
Candara-B-I C:\WINDOWS\Fonts\Candaraz.ttf
|
||||||
|
Castellar C:\WINDOWS\Fonts\CASTELAR.TTF
|
||||||
|
Century Schoolbook C:\WINDOWS\Fonts\CENSCBK.TTF
|
||||||
|
Centaur C:\WINDOWS\Fonts\CENTAUR.TTF
|
||||||
|
Century C:\WINDOWS\Fonts\CENTURY.TTF
|
||||||
|
Chiller C:\WINDOWS\Fonts\CHILLER.TTF
|
||||||
|
Colonna MT C:\WINDOWS\Fonts\COLONNA.TTF
|
||||||
|
Comic Sans MS C:\WINDOWS\Fonts\comic.ttf
|
||||||
|
Comic Sans MS-B C:\WINDOWS\Fonts\comicbd.ttf
|
||||||
|
Comic Sans MS-I C:\WINDOWS\Fonts\comici.ttf
|
||||||
|
Comic Sans MS-B-I C:\WINDOWS\Fonts\comicz.ttf
|
||||||
|
Consolas C:\WINDOWS\Fonts\consola.ttf
|
||||||
|
Consolas-B C:\WINDOWS\Fonts\consolab.ttf
|
||||||
|
Consolas-I C:\WINDOWS\Fonts\consolai.ttf
|
||||||
|
Consolas-B-I C:\WINDOWS\Fonts\consolaz.ttf
|
||||||
|
Constantia C:\WINDOWS\Fonts\constan.ttf
|
||||||
|
Constantia-B C:\WINDOWS\Fonts\constanb.ttf
|
||||||
|
Constantia-I C:\WINDOWS\Fonts\constani.ttf
|
||||||
|
Constantia-B-I C:\WINDOWS\Fonts\constanz.ttf
|
||||||
|
Cooper Black C:\WINDOWS\Fonts\COOPBL.TTF
|
||||||
|
Copperplate Gothic Bold C:\WINDOWS\Fonts\COPRGTB.TTF
|
||||||
|
Copperplate Gothic Light C:\WINDOWS\Fonts\COPRGTL.TTF
|
||||||
|
Corbel C:\WINDOWS\Fonts\corbel.ttf
|
||||||
|
Corbel-B C:\WINDOWS\Fonts\corbelb.ttf
|
||||||
|
Corbel-I C:\WINDOWS\Fonts\corbeli.ttf
|
||||||
|
Corbel Light C:\WINDOWS\Fonts\corbell.ttf
|
||||||
|
Corbel Light-I C:\WINDOWS\Fonts\corbelli.ttf
|
||||||
|
Corbel-B-I C:\WINDOWS\Fonts\corbelz.ttf
|
||||||
|
Cordia New C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Cordia New-B C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Cordia New-B-I C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Cordia New-I C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
CordiaUPC C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
CordiaUPC-B C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
CordiaUPC-B-I C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
CordiaUPC-I C:\WINDOWS\Fonts\cordia.ttc
|
||||||
|
Courier New C:\WINDOWS\Fonts\cour.ttf
|
||||||
|
Courier New-B C:\WINDOWS\Fonts\courbd.ttf
|
||||||
|
Courier New-B-I C:\WINDOWS\Fonts\courbi.ttf
|
||||||
|
Courier New-I C:\WINDOWS\Fonts\couri.ttf
|
||||||
|
Curlz MT C:\WINDOWS\Fonts\CURLZ___.TTF
|
||||||
|
Dubai Bold-B C:\WINDOWS\Fonts\DUBAI-BOLD.TTF
|
||||||
|
Dubai-B C:\WINDOWS\Fonts\DUBAI-BOLD.TTF
|
||||||
|
Dubai Light C:\WINDOWS\Fonts\DUBAI-LIGHT.TTF
|
||||||
|
Dubai Medium C:\WINDOWS\Fonts\DUBAI-MEDIUM.TTF
|
||||||
|
Dubai Regular C:\WINDOWS\Fonts\DUBAI-REGULAR.TTF
|
||||||
|
Dubai C:\WINDOWS\Fonts\DUBAI-REGULAR.TTF
|
||||||
|
Ebrima C:\WINDOWS\Fonts\ebrima.ttf
|
||||||
|
Ebrima-B C:\WINDOWS\Fonts\ebrimabd.ttf
|
||||||
|
Elephant C:\WINDOWS\Fonts\ELEPHNT.TTF
|
||||||
|
Elephant-I C:\WINDOWS\Fonts\ELEPHNTI.TTF
|
||||||
|
Engravers MT C:\WINDOWS\Fonts\ENGR.TTF
|
||||||
|
Eras Bold ITC C:\WINDOWS\Fonts\ERASBD.TTF
|
||||||
|
Eras Demi ITC C:\WINDOWS\Fonts\ERASDEMI.TTF
|
||||||
|
Eras Light ITC C:\WINDOWS\Fonts\ERASLGHT.TTF
|
||||||
|
Eras Medium ITC C:\WINDOWS\Fonts\ERASMD.TTF
|
||||||
|
Felix Titling C:\WINDOWS\Fonts\FELIXTI.TTF
|
||||||
|
Forte-I C:\WINDOWS\Fonts\FORTE.TTF
|
||||||
|
Franklin Gothic Book C:\WINDOWS\Fonts\FRABK.TTF
|
||||||
|
Franklin Gothic Book-I C:\WINDOWS\Fonts\FRABKIT.TTF
|
||||||
|
Franklin Gothic Demi C:\WINDOWS\Fonts\FRADM.TTF
|
||||||
|
Franklin Gothic Demi Cond C:\WINDOWS\Fonts\FRADMCN.TTF
|
||||||
|
Franklin Gothic Demi-I C:\WINDOWS\Fonts\FRADMIT.TTF
|
||||||
|
Franklin Gothic Heavy C:\WINDOWS\Fonts\FRAHV.TTF
|
||||||
|
Franklin Gothic Heavy-I C:\WINDOWS\Fonts\FRAHVIT.TTF
|
||||||
|
Franklin Gothic Medium C:\WINDOWS\Fonts\framd.ttf
|
||||||
|
Franklin Gothic Medium Cond C:\WINDOWS\Fonts\FRAMDCN.TTF
|
||||||
|
Franklin Gothic Medium-I C:\WINDOWS\Fonts\framdit.ttf
|
||||||
|
Freestyle Script C:\WINDOWS\Fonts\FREESCPT.TTF
|
||||||
|
French Script MT C:\WINDOWS\Fonts\FRSCRIPT.TTF
|
||||||
|
Footlight MT Light C:\WINDOWS\Fonts\FTLTLT.TTF
|
||||||
|
Gabriola C:\WINDOWS\Fonts\Gabriola.ttf
|
||||||
|
Gadugi C:\WINDOWS\Fonts\gadugi.ttf
|
||||||
|
Gadugi-B C:\WINDOWS\Fonts\gadugib.ttf
|
||||||
|
Garamond C:\WINDOWS\Fonts\GARA.TTF
|
||||||
|
Garamond-B C:\WINDOWS\Fonts\GARABD.TTF
|
||||||
|
Garamond-I C:\WINDOWS\Fonts\GARAIT.TTF
|
||||||
|
Georgia C:\WINDOWS\Fonts\georgia.ttf
|
||||||
|
Georgia-B C:\WINDOWS\Fonts\georgiab.ttf
|
||||||
|
Georgia-I C:\WINDOWS\Fonts\georgiai.ttf
|
||||||
|
Georgia-B-I C:\WINDOWS\Fonts\georgiaz.ttf
|
||||||
|
Gigi C:\WINDOWS\Fonts\GIGI.TTF
|
||||||
|
Gill Sans MT-B-I C:\WINDOWS\Fonts\GILBI___.TTF
|
||||||
|
Gill Sans MT-B C:\WINDOWS\Fonts\GILB____.TTF
|
||||||
|
Gill Sans MT Condensed C:\WINDOWS\Fonts\GILC____.TTF
|
||||||
|
Gill Sans MT-I C:\WINDOWS\Fonts\GILI____.TTF
|
||||||
|
Gill Sans Ultra Bold Condensed C:\WINDOWS\Fonts\GILLUBCD.TTF
|
||||||
|
Gill Sans Ultra Bold C:\WINDOWS\Fonts\GILSANUB.TTF
|
||||||
|
Gill Sans MT C:\WINDOWS\Fonts\GIL_____.TTF
|
||||||
|
Gloucester MT Extra Condensed C:\WINDOWS\Fonts\GLECB.TTF
|
||||||
|
Gill Sans MT Ext Condensed Bold C:\WINDOWS\Fonts\GLSNECB.TTF
|
||||||
|
Century Gothic C:\WINDOWS\Fonts\GOTHIC.TTF
|
||||||
|
Century Gothic-B C:\WINDOWS\Fonts\GOTHICB.TTF
|
||||||
|
Century Gothic-B-I C:\WINDOWS\Fonts\GOTHICBI.TTF
|
||||||
|
Century Gothic-I C:\WINDOWS\Fonts\GOTHICI.TTF
|
||||||
|
Goudy Old Style C:\WINDOWS\Fonts\GOUDOS.TTF
|
||||||
|
Goudy Old Style-B C:\WINDOWS\Fonts\GOUDOSB.TTF
|
||||||
|
Goudy Old Style-I C:\WINDOWS\Fonts\GOUDOSI.TTF
|
||||||
|
Goudy Stout C:\WINDOWS\Fonts\GOUDYSTO.TTF
|
||||||
|
Harlow Solid Italic-I C:\WINDOWS\Fonts\HARLOWSI.TTF
|
||||||
|
Harrington C:\WINDOWS\Fonts\HARNGTON.TTF
|
||||||
|
Haettenschweiler C:\WINDOWS\Fonts\HATTEN.TTF
|
||||||
|
Microsoft Himalaya C:\WINDOWS\Fonts\himalaya.ttf
|
||||||
|
HoloLens MDL2 Assets C:\WINDOWS\Fonts\holomdl2.ttf
|
||||||
|
High Tower Text C:\WINDOWS\Fonts\HTOWERT.TTF
|
||||||
|
High Tower Text-I C:\WINDOWS\Fonts\HTOWERTI.TTF
|
||||||
|
Impact C:\WINDOWS\Fonts\impact.ttf
|
||||||
|
Imprint MT Shadow C:\WINDOWS\Fonts\IMPRISHA.TTF
|
||||||
|
Informal Roman C:\WINDOWS\Fonts\INFROMAN.TTF
|
||||||
|
Ink Free C:\WINDOWS\Fonts\Inkfree.ttf
|
||||||
|
Blackadder ITC C:\WINDOWS\Fonts\ITCBLKAD.TTF
|
||||||
|
Edwardian Script ITC C:\WINDOWS\Fonts\ITCEDSCR.TTF
|
||||||
|
Kristen ITC C:\WINDOWS\Fonts\ITCKRIST.TTF
|
||||||
|
Javanese Text C:\WINDOWS\Fonts\javatext.ttf
|
||||||
|
Jokerman C:\WINDOWS\Fonts\JOKERMAN.TTF
|
||||||
|
Juice ITC C:\WINDOWS\Fonts\JUICE___.TTF
|
||||||
|
Kunstler Script C:\WINDOWS\Fonts\KUNSTLER.TTF
|
||||||
|
Wide Latin C:\WINDOWS\Fonts\LATINWD.TTF
|
||||||
|
Lucida Bright C:\WINDOWS\Fonts\LBRITE.TTF
|
||||||
|
Lucida Bright-B C:\WINDOWS\Fonts\LBRITED.TTF
|
||||||
|
Lucida Bright-B-I C:\WINDOWS\Fonts\LBRITEDI.TTF
|
||||||
|
Lucida Bright-I C:\WINDOWS\Fonts\LBRITEI.TTF
|
||||||
|
Lucida Calligraphy-I C:\WINDOWS\Fonts\LCALLIG.TTF
|
||||||
|
Leelawadee UI-B C:\WINDOWS\Fonts\LeelaUIb.ttf
|
||||||
|
Leelawadee C:\WINDOWS\Fonts\leelawad.ttf
|
||||||
|
Leelawadee-B C:\WINDOWS\Fonts\leelawdb.ttf
|
||||||
|
Leelawadee UI C:\WINDOWS\Fonts\LeelawUI.ttf
|
||||||
|
Leelawadee UI Semilight C:\WINDOWS\Fonts\LeelUIsl.ttf
|
||||||
|
Lucida Fax C:\WINDOWS\Fonts\LFAX.TTF
|
||||||
|
Lucida Fax-B C:\WINDOWS\Fonts\LFAXD.TTF
|
||||||
|
Lucida Fax-B-I C:\WINDOWS\Fonts\LFAXDI.TTF
|
||||||
|
Lucida Fax-I C:\WINDOWS\Fonts\LFAXI.TTF
|
||||||
|
Lucida Handwriting-I C:\WINDOWS\Fonts\LHANDW.TTF
|
||||||
|
Lucida Sans C:\WINDOWS\Fonts\LSANS.TTF
|
||||||
|
Lucida Sans-B C:\WINDOWS\Fonts\LSANSD.TTF
|
||||||
|
Lucida Sans-B-I C:\WINDOWS\Fonts\LSANSDI.TTF
|
||||||
|
Lucida Sans-I C:\WINDOWS\Fonts\LSANSI.TTF
|
||||||
|
Lucida Sans Typewriter C:\WINDOWS\Fonts\LTYPE.TTF
|
||||||
|
Lucida Sans Typewriter-B C:\WINDOWS\Fonts\LTYPEB.TTF
|
||||||
|
Lucida Sans Typewriter-B-I C:\WINDOWS\Fonts\LTYPEBO.TTF
|
||||||
|
Lucida Sans Typewriter-I C:\WINDOWS\Fonts\LTYPEO.TTF
|
||||||
|
Lucida Console C:\WINDOWS\Fonts\lucon.ttf
|
||||||
|
Lucida Sans Unicode C:\WINDOWS\Fonts\l_10646.ttf
|
||||||
|
Magneto-B C:\WINDOWS\Fonts\MAGNETOB.TTF
|
||||||
|
Maiandra GD C:\WINDOWS\Fonts\MAIAN.TTF
|
||||||
|
Malgun Gothic C:\WINDOWS\Fonts\malgun.ttf
|
||||||
|
맑은 고딕 C:\WINDOWS\Fonts\malgun.ttf
|
||||||
|
Malgun Gothic-B C:\WINDOWS\Fonts\malgunbd.ttf
|
||||||
|
맑은 고딕-B C:\WINDOWS\Fonts\malgunbd.ttf
|
||||||
|
Malgun Gothic Semilight C:\WINDOWS\Fonts\malgunsl.ttf
|
||||||
|
맑은 고딕 Semilight C:\WINDOWS\Fonts\malgunsl.ttf
|
||||||
|
Marlett C:\WINDOWS\Fonts\marlett.ttf
|
||||||
|
Matura MT Script Capitals C:\WINDOWS\Fonts\MATURASC.TTF
|
||||||
|
Microsoft Sans Serif C:\WINDOWS\Fonts\micross.ttf
|
||||||
|
MingLiU-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
細明體-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
PMingLiU-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
新細明體-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
MingLiU_HKSCS-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
細明體_HKSCS-ExtB C:\WINDOWS\Fonts\mingliub.ttc
|
||||||
|
Mistral C:\WINDOWS\Fonts\MISTRAL.TTF
|
||||||
|
Myanmar Text C:\WINDOWS\Fonts\mmrtext.ttf
|
||||||
|
Myanmar Text-B C:\WINDOWS\Fonts\mmrtextb.ttf
|
||||||
|
Modern No. 20 C:\WINDOWS\Fonts\MOD20.TTF
|
||||||
|
Mongolian Baiti C:\WINDOWS\Fonts\monbaiti.ttf
|
||||||
|
MS Gothic C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
MS ゴシック C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
MS UI Gothic C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
MS PGothic C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
MS Pゴシック C:\WINDOWS\Fonts\msgothic.ttc
|
||||||
|
微軟正黑體 C:\WINDOWS\Fonts\msjh.ttc
|
||||||
|
Microsoft JhengHei C:\WINDOWS\Fonts\msjh.ttc
|
||||||
|
Microsoft JhengHei UI C:\WINDOWS\Fonts\msjh.ttc
|
||||||
|
微軟正黑體-B C:\WINDOWS\Fonts\msjhbd.ttc
|
||||||
|
Microsoft JhengHei-B C:\WINDOWS\Fonts\msjhbd.ttc
|
||||||
|
Microsoft JhengHei UI-B C:\WINDOWS\Fonts\msjhbd.ttc
|
||||||
|
微軟正黑體 Light C:\WINDOWS\Fonts\msjhl.ttc
|
||||||
|
Microsoft JhengHei Light C:\WINDOWS\Fonts\msjhl.ttc
|
||||||
|
Microsoft JhengHei UI Light C:\WINDOWS\Fonts\msjhl.ttc
|
||||||
|
Microsoft YaHei C:\WINDOWS\Fonts\msyh.ttc
|
||||||
|
微软雅黑 C:\WINDOWS\Fonts\msyh.ttc
|
||||||
|
Microsoft YaHei UI C:\WINDOWS\Fonts\msyh.ttc
|
||||||
|
Microsoft YaHei-B C:\WINDOWS\Fonts\msyhbd.ttc
|
||||||
|
微软雅黑-B C:\WINDOWS\Fonts\msyhbd.ttc
|
||||||
|
Microsoft YaHei UI-B C:\WINDOWS\Fonts\msyhbd.ttc
|
||||||
|
Microsoft YaHei Light C:\WINDOWS\Fonts\msyhl.ttc
|
||||||
|
微软雅黑 Light C:\WINDOWS\Fonts\msyhl.ttc
|
||||||
|
Microsoft YaHei UI Light C:\WINDOWS\Fonts\msyhl.ttc
|
||||||
|
Microsoft Yi Baiti C:\WINDOWS\Fonts\msyi.ttf
|
||||||
|
Monotype Corsiva-I C:\WINDOWS\Fonts\MTCORSVA.TTF
|
||||||
|
MT Extra C:\WINDOWS\Fonts\MTEXTRA.TTF
|
||||||
|
MV Boli-I C:\WINDOWS\Fonts\mvboli.ttf
|
||||||
|
Niagara Engraved C:\WINDOWS\Fonts\NIAGENG.TTF
|
||||||
|
Niagara Solid C:\WINDOWS\Fonts\NIAGSOL.TTF
|
||||||
|
Nirmala UI C:\WINDOWS\Fonts\Nirmala.ttf
|
||||||
|
Nirmala UI-B C:\WINDOWS\Fonts\NirmalaB.ttf
|
||||||
|
Nirmala UI Semilight C:\WINDOWS\Fonts\NirmalaS.ttf
|
||||||
|
Microsoft New Tai Lue C:\WINDOWS\Fonts\ntailu.ttf
|
||||||
|
Microsoft New Tai Lue-B C:\WINDOWS\Fonts\ntailub.ttf
|
||||||
|
OCR A Extended C:\WINDOWS\Fonts\OCRAEXT.TTF
|
||||||
|
Old English Text MT C:\WINDOWS\Fonts\OLDENGL.TTF
|
||||||
|
Onyx C:\WINDOWS\Fonts\ONYX.TTF
|
||||||
|
MS Outlook C:\WINDOWS\Fonts\OUTLOOK.TTF
|
||||||
|
Palatino Linotype C:\WINDOWS\Fonts\pala.ttf
|
||||||
|
Palatino Linotype-B C:\WINDOWS\Fonts\palab.ttf
|
||||||
|
Palatino Linotype-B-I C:\WINDOWS\Fonts\palabi.ttf
|
||||||
|
Palatino Linotype-I C:\WINDOWS\Fonts\palai.ttf
|
||||||
|
Palace Script MT-I C:\WINDOWS\Fonts\PALSCRI.TTF
|
||||||
|
Papyrus C:\WINDOWS\Fonts\PAPYRUS.TTF
|
||||||
|
Parchment C:\WINDOWS\Fonts\PARCHM.TTF
|
||||||
|
Perpetua-B-I C:\WINDOWS\Fonts\PERBI___.TTF
|
||||||
|
Perpetua-B C:\WINDOWS\Fonts\PERB____.TTF
|
||||||
|
Perpetua-I C:\WINDOWS\Fonts\PERI____.TTF
|
||||||
|
Perpetua Titling MT-B C:\WINDOWS\Fonts\PERTIBD.TTF
|
||||||
|
Perpetua Titling MT C:\WINDOWS\Fonts\PERTILI.TTF
|
||||||
|
Perpetua C:\WINDOWS\Fonts\PER_____.TTF
|
||||||
|
Microsoft PhagsPa C:\WINDOWS\Fonts\phagspa.ttf
|
||||||
|
Microsoft PhagsPa-B C:\WINDOWS\Fonts\phagspab.ttf
|
||||||
|
Playbill C:\WINDOWS\Fonts\PLAYBILL.TTF
|
||||||
|
Poor Richard C:\WINDOWS\Fonts\POORICH.TTF
|
||||||
|
Pristina C:\WINDOWS\Fonts\PRISTINA.TTF
|
||||||
|
Rage Italic C:\WINDOWS\Fonts\RAGE.TTF
|
||||||
|
Ravie C:\WINDOWS\Fonts\RAVIE.TTF
|
||||||
|
MS Reference Sans Serif C:\WINDOWS\Fonts\REFSAN.TTF
|
||||||
|
MS Reference Specialty C:\WINDOWS\Fonts\REFSPCL.TTF
|
||||||
|
Rockwell Condensed-B C:\WINDOWS\Fonts\ROCCB___.TTF
|
||||||
|
Rockwell Condensed C:\WINDOWS\Fonts\ROCC____.TTF
|
||||||
|
Rockwell C:\WINDOWS\Fonts\ROCK.TTF
|
||||||
|
Rockwell-B C:\WINDOWS\Fonts\ROCKB.TTF
|
||||||
|
Rockwell-B-I C:\WINDOWS\Fonts\ROCKBI.TTF
|
||||||
|
Rockwell Extra Bold-B C:\WINDOWS\Fonts\ROCKEB.TTF
|
||||||
|
Rockwell-I C:\WINDOWS\Fonts\ROCKI.TTF
|
||||||
|
Century Schoolbook-B C:\WINDOWS\Fonts\SCHLBKB.TTF
|
||||||
|
Century Schoolbook-B-I C:\WINDOWS\Fonts\SCHLBKBI.TTF
|
||||||
|
Century Schoolbook-I C:\WINDOWS\Fonts\SCHLBKI.TTF
|
||||||
|
Script MT Bold-B C:\WINDOWS\Fonts\SCRIPTBL.TTF
|
||||||
|
Segoe MDL2 Assets C:\WINDOWS\Fonts\segmdl2.ttf
|
||||||
|
Segoe Fluent Icons C:\WINDOWS\Fonts\SegoeIcons.ttf
|
||||||
|
Segoe Print C:\WINDOWS\Fonts\segoepr.ttf
|
||||||
|
Segoe Print-B C:\WINDOWS\Fonts\segoeprb.ttf
|
||||||
|
Segoe Script C:\WINDOWS\Fonts\segoesc.ttf
|
||||||
|
Segoe Script-B C:\WINDOWS\Fonts\segoescb.ttf
|
||||||
|
Segoe UI C:\WINDOWS\Fonts\segoeui.ttf
|
||||||
|
Segoe UI-B C:\WINDOWS\Fonts\segoeuib.ttf
|
||||||
|
Segoe UI-I C:\WINDOWS\Fonts\segoeuii.ttf
|
||||||
|
Segoe UI Light C:\WINDOWS\Fonts\segoeuil.ttf
|
||||||
|
Segoe UI Semilight C:\WINDOWS\Fonts\segoeuisl.ttf
|
||||||
|
Segoe UI-B-I C:\WINDOWS\Fonts\segoeuiz.ttf
|
||||||
|
Segoe UI Black-B C:\WINDOWS\Fonts\seguibl.ttf
|
||||||
|
Segoe UI Black-B-I C:\WINDOWS\Fonts\seguibli.ttf
|
||||||
|
Segoe UI Emoji C:\WINDOWS\Fonts\seguiemj.ttf
|
||||||
|
Segoe UI Historic C:\WINDOWS\Fonts\seguihis.ttf
|
||||||
|
Segoe UI Light-I C:\WINDOWS\Fonts\seguili.ttf
|
||||||
|
Segoe UI Semibold-B C:\WINDOWS\Fonts\seguisb.ttf
|
||||||
|
Segoe UI Semibold-B-I C:\WINDOWS\Fonts\seguisbi.ttf
|
||||||
|
Segoe UI Semilight-I C:\WINDOWS\Fonts\seguisli.ttf
|
||||||
|
Segoe UI Symbol C:\WINDOWS\Fonts\seguisym.ttf
|
||||||
|
Segoe UI Variable Regular C:\WINDOWS\Fonts\SegUIVar.ttf
|
||||||
|
Segoe UI Variable C:\WINDOWS\Fonts\SegUIVar.ttf
|
||||||
|
Showcard Gothic C:\WINDOWS\Fonts\SHOWG.TTF
|
||||||
|
SimSun C:\WINDOWS\Fonts\simsun.ttc
|
||||||
|
宋体 C:\WINDOWS\Fonts\simsun.ttc
|
||||||
|
NSimSun C:\WINDOWS\Fonts\simsun.ttc
|
||||||
|
新宋体 C:\WINDOWS\Fonts\simsun.ttc
|
||||||
|
SimSun-ExtB C:\WINDOWS\Fonts\simsunb.ttf
|
||||||
|
Sitka Text-I C:\WINDOWS\Fonts\SitkaVF-Italic.ttf
|
||||||
|
Sitka Text C:\WINDOWS\Fonts\SitkaVF.ttf
|
||||||
|
Snap ITC C:\WINDOWS\Fonts\SNAP____.TTF
|
||||||
|
Stencil C:\WINDOWS\Fonts\STENCIL.TTF
|
||||||
|
Sylfaen C:\WINDOWS\Fonts\sylfaen.ttf
|
||||||
|
Symbol C:\WINDOWS\Fonts\symbol.ttf
|
||||||
|
Tahoma C:\WINDOWS\Fonts\tahoma.ttf
|
||||||
|
Tahoma-B C:\WINDOWS\Fonts\tahomabd.ttf
|
||||||
|
Microsoft Tai Le C:\WINDOWS\Fonts\taile.ttf
|
||||||
|
Microsoft Tai Le-B C:\WINDOWS\Fonts\taileb.ttf
|
||||||
|
Tw Cen MT-B-I C:\WINDOWS\Fonts\TCBI____.TTF
|
||||||
|
Tw Cen MT-B C:\WINDOWS\Fonts\TCB_____.TTF
|
||||||
|
Tw Cen MT Condensed-B C:\WINDOWS\Fonts\TCCB____.TTF
|
||||||
|
Tw Cen MT Condensed Extra Bold C:\WINDOWS\Fonts\TCCEB.TTF
|
||||||
|
Tw Cen MT Condensed C:\WINDOWS\Fonts\TCCM____.TTF
|
||||||
|
Tw Cen MT-I C:\WINDOWS\Fonts\TCMI____.TTF
|
||||||
|
Tw Cen MT C:\WINDOWS\Fonts\TCM_____.TTF
|
||||||
|
TeamViewer15 C:\WINDOWS\Fonts\teamviewer15.otf
|
||||||
|
Tempus Sans ITC C:\WINDOWS\Fonts\TEMPSITC.TTF
|
||||||
|
Times New Roman C:\WINDOWS\Fonts\times.ttf
|
||||||
|
Times New Roman-B C:\WINDOWS\Fonts\timesbd.ttf
|
||||||
|
Times New Roman-B-I C:\WINDOWS\Fonts\timesbi.ttf
|
||||||
|
Times New Roman-I C:\WINDOWS\Fonts\timesi.ttf
|
||||||
|
Trebuchet MS C:\WINDOWS\Fonts\trebuc.ttf
|
||||||
|
Trebuchet MS-B C:\WINDOWS\Fonts\trebucbd.ttf
|
||||||
|
Trebuchet MS-B-I C:\WINDOWS\Fonts\trebucbi.ttf
|
||||||
|
Trebuchet MS-I C:\WINDOWS\Fonts\trebucit.ttf
|
||||||
|
DilleniaUPC-B C:\WINDOWS\Fonts\upcdb.ttf
|
||||||
|
DilleniaUPC C:\WINDOWS\Fonts\upcdi.ttf
|
||||||
|
EucrosiaUPC-B C:\WINDOWS\Fonts\upceb.ttf
|
||||||
|
EucrosiaUPC C:\WINDOWS\Fonts\upcei.ttf
|
||||||
|
FreesiaUPC-B C:\WINDOWS\Fonts\upcfb.ttf
|
||||||
|
FreesiaUPC C:\WINDOWS\Fonts\upcfi.ttf
|
||||||
|
IrisUPC-B C:\WINDOWS\Fonts\upcib.ttf
|
||||||
|
IrisUPC C:\WINDOWS\Fonts\upcii.ttf
|
||||||
|
JasmineUPC-B C:\WINDOWS\Fonts\upcjb.ttf
|
||||||
|
JasmineUPC C:\WINDOWS\Fonts\upcji.ttf
|
||||||
|
KodchiangUPC-B C:\WINDOWS\Fonts\upckb.ttf
|
||||||
|
KodchiangUPC C:\WINDOWS\Fonts\upcki.ttf
|
||||||
|
LilyUPC-B C:\WINDOWS\Fonts\upclb.ttf
|
||||||
|
LilyUPC-B-I C:\WINDOWS\Fonts\upclbi.ttf
|
||||||
|
LilyUPC C:\WINDOWS\Fonts\upcli.ttf
|
||||||
|
Verdana C:\WINDOWS\Fonts\verdana.ttf
|
||||||
|
Verdana-B C:\WINDOWS\Fonts\verdanab.ttf
|
||||||
|
Verdana-I C:\WINDOWS\Fonts\verdanai.ttf
|
||||||
|
Verdana-B-I C:\WINDOWS\Fonts\verdanaz.ttf
|
||||||
|
Viner Hand ITC C:\WINDOWS\Fonts\VINERITC.TTF
|
||||||
|
Vivaldi-I C:\WINDOWS\Fonts\VIVALDII.TTF
|
||||||
|
Vladimir Script C:\WINDOWS\Fonts\VLADIMIR.TTF
|
||||||
|
Webdings C:\WINDOWS\Fonts\webdings.ttf
|
||||||
|
Wingdings C:\WINDOWS\Fonts\wingding.ttf
|
||||||
|
Wingdings 2 C:\WINDOWS\Fonts\WINGDNG2.TTF
|
||||||
|
Wingdings 3 C:\WINDOWS\Fonts\WINGDNG3.TTF
|
||||||
|
Yu Gothic-B C:\WINDOWS\Fonts\YuGothB.ttc
|
||||||
|
游ゴシック-B C:\WINDOWS\Fonts\YuGothB.ttc
|
||||||
|
Yu Gothic UI-B C:\WINDOWS\Fonts\YuGothB.ttc
|
||||||
|
Yu Gothic UI Semibold-B C:\WINDOWS\Fonts\YuGothB.ttc
|
||||||
|
Yu Gothic Light C:\WINDOWS\Fonts\YuGothL.ttc
|
||||||
|
游ゴシック Light C:\WINDOWS\Fonts\YuGothL.ttc
|
||||||
|
Yu Gothic UI Light C:\WINDOWS\Fonts\YuGothL.ttc
|
||||||
|
Yu Gothic Medium C:\WINDOWS\Fonts\YuGothM.ttc
|
||||||
|
游ゴシック Medium C:\WINDOWS\Fonts\YuGothM.ttc
|
||||||
|
Yu Gothic UI C:\WINDOWS\Fonts\YuGothM.ttc
|
||||||
|
Yu Gothic C:\WINDOWS\Fonts\YuGothR.ttc
|
||||||
|
游ゴシック C:\WINDOWS\Fonts\YuGothR.ttc
|
||||||
|
Yu Gothic UI Semilight C:\WINDOWS\Fonts\YuGothR.ttc
|
||||||
7
bin/Debug/net5.0/nuget.config
Normal file
7
bin/Debug/net5.0/nuget.config
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
|
||||||
|
<add key="71dev" value="https://nuget.71dev.com/v3/index.json" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
4098
bin/Debug/net5.0/rmutr-report.deps.json
Normal file
4098
bin/Debug/net5.0/rmutr-report.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
8
bin/Debug/net5.0/rmutr-report.runtimeconfig.dev.json
Normal file
8
bin/Debug/net5.0/rmutr-report.runtimeconfig.dev.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\Mercedes Benz\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\Mercedes Benz\\.nuget\\packages"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
13
bin/Debug/net5.0/rmutr-report.runtimeconfig.json
Normal file
13
bin/Debug/net5.0/rmutr-report.runtimeconfig.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net5.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.AspNetCore.App",
|
||||||
|
"version": "5.0.0"
|
||||||
|
},
|
||||||
|
"configProperties": {
|
||||||
|
"System.GC.Server": true,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
8
bin/Debug/net5.0/rmutr-report.xml
Normal file
8
bin/Debug/net5.0/rmutr-report.xml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>rmutr-report</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
7
nuget.config
Normal file
7
nuget.config
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
|
||||||
|
<add key="71dev" value="https://nuget.71dev.com/v3/index.json" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
||||||
22
obj/Debug/net5.0/rmutr-report.AssemblyInfo.cs
Normal file
22
obj/Debug/net5.0/rmutr-report.AssemblyInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("rmutr-report")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("rmutr-report")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("rmutr-report")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net5.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.PublishSingleFile =
|
||||||
|
build_property.IncludeAllContentForSelfExtract =
|
||||||
|
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = rmutr_report
|
||||||
|
build_property.ProjectDir = C:\Users\Mercedes Benz\Documents\rmutr_report\
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
0
obj/Debug/net5.0/rmutr-report.csproj.CopyComplete
Normal file
0
obj/Debug/net5.0/rmutr-report.csproj.CopyComplete
Normal file
166
obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt
Normal file
166
obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\nuget.config
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\appsettings.Development.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\appsettings.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.exe
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.deps.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.runtimeconfig.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.runtimeconfig.dev.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ref\rmutr-report.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.pdb
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\FastReport.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Microsoft.CodeAnalysis.VisualBasic.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Microsoft.OpenApi.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\any\lib\netcoreapp3.0\FastReport.Compat.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\any\lib\netcoreapp3.0\FastReport.DataVisualization.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\win-arm64\native\sni.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\win-x64\native\sni.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\win-x86\native\sni.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.csproj.AssemblyReference.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.AssemblyInfo.cs
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.MvcApplicationPartsAssemblyInfo.cs
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\staticwebassets\rmutr-report.StaticWebAssets.Manifest.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\staticwebassets\rmutr-report.StaticWebAssets.xml
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\scopedcss\bundle\rmutr-report.styles.css
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.RazorTargetAssemblyInfo.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.csproj.CopyComplete
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\ref\rmutr-report.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.pdb
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.genruntimeconfig.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.xml
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.xml
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\nuget.config
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\appsettings.Development.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\appsettings.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.exe
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.deps.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.runtimeconfig.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.runtimeconfig.dev.json
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ref\rmutr-report.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.pdb
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.xml
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\FastReport.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.CodeAnalysis.VisualBasic.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.OpenApi.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.VisualBasic.resources.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\any\lib\netcoreapp3.0\FastReport.Compat.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\any\lib\netcoreapp3.0\FastReport.DataVisualization.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\win-arm64\native\sni.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\win-x64\native\sni.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\win-x86\native\sni.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.csproj.AssemblyReference.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.AssemblyInfo.cs
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.MvcApplicationPartsAssemblyInfo.cs
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\staticwebassets\rmutr-report.StaticWebAssets.Manifest.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\staticwebassets\rmutr-report.StaticWebAssets.xml
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\scopedcss\bundle\rmutr-report.styles.css
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.RazorTargetAssemblyInfo.cache
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.csproj.CopyComplete
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\ref\rmutr-report.dll
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.xml
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.pdb
|
||||||
|
C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.genruntimeconfig.cache
|
||||||
8
obj/Debug/net5.0/rmutr-report.xml
Normal file
8
obj/Debug/net5.0/rmutr-report.xml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>rmutr-report</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<StaticWebAssets Version="1.0" />
|
||||||
1663
obj/project.assets.json
Normal file
1663
obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
1
obj/project.packagespec.json
Normal file
1
obj/project.packagespec.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
"restore":{"projectUniqueName":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj","projectName":"rmutr-report","projectPath":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj","outputPath":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net5.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{},"https://nuget.71dev.com/v3/index.json":{}},"frameworks":{"net5.0":{"targetAlias":"net5.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net5.0":{"targetAlias":"net5.0","dependencies":{"FastReport.Core":{"target":"Package","version":"[2021.3.0, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[5.6.3, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json"}}
|
||||||
1
obj/rider.project.restore.info
Normal file
1
obj/rider.project.restore.info
Normal file
@@ -0,0 +1 @@
|
|||||||
|
16537372830755350
|
||||||
77
obj/rmutr-report.csproj.nuget.dgspec.json
Normal file
77
obj/rmutr-report.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj",
|
||||||
|
"projectName": "rmutr-report",
|
||||||
|
"projectPath": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Mercedes Benz\\.nuget\\packages\\",
|
||||||
|
"outputPath": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\NuGet.Config",
|
||||||
|
"C:\\Users\\Mercedes Benz\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net5.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {},
|
||||||
|
"https://nuget.71dev.com/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net5.0": {
|
||||||
|
"targetAlias": "net5.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net5.0": {
|
||||||
|
"targetAlias": "net5.0",
|
||||||
|
"dependencies": {
|
||||||
|
"FastReport.Core": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[2021.3.0, )"
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[5.6.3, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.AspNetCore.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
24
obj/rmutr-report.csproj.nuget.g.props
Normal file
24
obj/rmutr-report.csproj.nuget.g.props
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Mercedes Benz\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Mercedes Benz\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\5.6.3\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\5.6.3\build\Swashbuckle.AspNetCore.props')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)fastreport.core\2021.3.0\buildTransitive\FastReport.Core.props" Condition="Exists('$(NuGetPackageRoot)fastreport.core\2021.3.0\buildTransitive\FastReport.Core.props')" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\Mercedes Benz\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
|
||||||
|
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\Mercedes Benz\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.4</PkgMicrosoft_CodeAnalysis_Analyzers>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
6
obj/rmutr-report.csproj.nuget.g.targets
Normal file
6
obj/rmutr-report.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
||||||
16
rmutr-report.csproj
Normal file
16
rmutr-report.csproj
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
|
<RootNamespace>rmutr_report</RootNamespace>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="FastReport.Core" Version="2021.3.0" />
|
||||||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
BIN
wwwroot/Logo-RMUTR.png
Normal file
BIN
wwwroot/Logo-RMUTR.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
339
wwwroot/reports/man_power.frx
Normal file
339
wwwroot/reports/man_power.frx
Normal file
@@ -0,0 +1,339 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="05/30/2022 13:26:06" ReportInfo.CreatorVersion="2022.1.0.0">
|
||||||
|
<Dictionary>
|
||||||
|
<BusinessObjectDataSource Name="man_power" ReferenceName="man_power" DataType="null" Enabled="true">
|
||||||
|
<Column Name="no" DataType="System.String"/>
|
||||||
|
<Column Name="agency_name" DataType="System.String"/>
|
||||||
|
<Column Name="rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="government_officer_totalrate" DataType="System.Int32"/>
|
||||||
|
<Column Name="government_officer_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="government_officer_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="university_staff_totalrate" DataType="System.Int32"/>
|
||||||
|
<Column Name="university_staff_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="university_staff_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="government_employee_totalrate" DataType="System.Int32"/>
|
||||||
|
<Column Name="government_employee_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="government_employee_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="permanent_employee_totalrate" DataType="System.Int32"/>
|
||||||
|
<Column Name="permanent_employee_support_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="permanent_employee_support_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="permanent_employee_field_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="permanent_employee_field_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="temporary_worker_land_totalrate" DataType="System.Int32"/>
|
||||||
|
<Column Name="temporary_worker_land_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="temporary_worker_land_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="temporary_worker_income_totalrate" DataType="System.Int32"/>
|
||||||
|
<Column Name="temporary_worker_income_support_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="temporary_worker_income_support_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="temporary_worker_income_field_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="temporary_worker_income_field_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="total_personnel_totalrate" DataType="System.Int32"/>
|
||||||
|
<Column Name="total_personnel_support_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="total_personnel_support_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="total_personnel_field_packing" DataType="System.Int32"/>
|
||||||
|
<Column Name="total_personnel_field_rate" DataType="System.Int32"/>
|
||||||
|
<Column Name="status" DataType="System.String"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
<Total Name="Total1" Expression="[man_power.rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total2" Expression="[man_power.government_officer_totalrate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total3" Expression="[man_power.government_officer_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total4" Expression="[man_power.government_officer_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total5" Expression="[man_power.university_staff_totalrate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total6" Expression="[man_power.university_staff_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total7" Expression="[man_power.university_staff_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total8" Expression="[man_power.government_employee_totalrate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total9" Expression="[man_power.government_employee_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total10" Expression="[man_power.government_employee_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total11" Expression="[man_power.permanent_employee_totalrate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total12" Expression="[man_power.permanent_employee_support_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total13" Expression="[man_power.permanent_employee_support_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total14" Expression="[man_power.permanent_employee_field_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total15" Expression="[man_power.permanent_employee_field_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total16" Expression="[man_power.temporary_worker_land_totalrate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total17" Expression="[man_power.temporary_worker_land_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total18" Expression="[man_power.temporary_worker_land_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total19" Expression="[man_power.temporary_worker_income_totalrate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total20" Expression="[man_power.temporary_worker_income_support_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total21" Expression="[man_power.temporary_worker_income_support_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total22" Expression="[man_power.temporary_worker_income_field_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total23" Expression="[man_power.temporary_worker_income_field_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total24" Expression="[man_power.total_personnel_totalrate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total25" Expression="[man_power.total_personnel_support_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total26" Expression="[man_power.total_personnel_support_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total27" Expression="[man_power.total_personnel_field_packing]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
<Total Name="Total28" Expression="[man_power.total_personnel_field_rate]" Evaluator="Data2" PrintOn="ReportSummary1"/>
|
||||||
|
</Dictionary>
|
||||||
|
<ReportPage Name="Page1" Landscape="true" PaperWidth="457" PaperHeight="210" Watermark.Font="Arial, 60pt">
|
||||||
|
<PageHeaderBand Name="PageHeader1" Width="1651.86" Height="66.15">
|
||||||
|
<TextObject Name="Text1" Top="9.45" Width="1653.75" Height="28.35" Text="มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 18pt, style=Bold"/>
|
||||||
|
<TextObject Name="Text29" Top="37.8" Width="1653.75" Height="28.35" Text="จำนวนบุคลากร สายวิชาการ และ สายสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 18pt, style=Bold"/>
|
||||||
|
</PageHeaderBand>
|
||||||
|
<DataBand Name="Data1" Top="70.97" Width="1651.86" Height="94.5">
|
||||||
|
<TableObject Name="Table1" Width="1653.75" Height="94.5">
|
||||||
|
<TableColumn Name="Column1" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column2" Width="255.15"/>
|
||||||
|
<TableColumn Name="Column3" Width="56.7"/>
|
||||||
|
<TableColumn Name="Column4" Width="141.75"/>
|
||||||
|
<TableColumn Name="Column5" Width="141.75"/>
|
||||||
|
<TableColumn Name="Column6" Width="141.75"/>
|
||||||
|
<TableColumn Name="Column7" Width="217.35"/>
|
||||||
|
<TableColumn Name="Column8" Width="141.75"/>
|
||||||
|
<TableColumn Name="Column9" Width="217.35"/>
|
||||||
|
<TableColumn Name="Column10" Width="217.35"/>
|
||||||
|
<TableColumn Name="Column11" Width="75.6"/>
|
||||||
|
<TableRow Name="Row1" Height="94.5">
|
||||||
|
<TableCell Name="Cell1" Border.Lines="All" Text="ลำดับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell2" Border.Lines="All" Text="หน่วยงาน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell3" Border.Lines="All" Text="กรอบ (63-66) (ใหม่)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell4" Border.Lines="All" Text="ข้าราชการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell5" Border.Lines="All" Text="พนักงานมหาวิทยาลัย (งบประมาณ)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell26" Border.Lines="All" Text="พนักงานราชการ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell27" Border.Lines="All" Text="ลูกจ้างประจำ" HorzAlign="Center" Font="TH Sarabun New, 14pt">
|
||||||
|
<TextObject Name="Text30" Top="28.35" Width="28.35" Height="66.15" Border.Lines="All" Text="รวม อัตรา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TextObject Name="Text31" Left="28.35" Top="28.35" Width="94.5" Height="37.8" Border.Lines="All" Text="งานสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TextObject Name="Text32" Left="122.85" Top="28.35" Width="94.5" Height="37.8" Border.Lines="All" Text="งานภาคสนาม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableCell>
|
||||||
|
<TableCell Name="Cell28" Border.Lines="All" Text="ลูกจ้างชั่วคราว (งบแผ่นดิน)" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
<TableCell Name="Cell29" Border.Lines="All" Text="ลูกจ้างชั่วคราว (งบรายได้)" HorzAlign="Center" Font="TH Sarabun New, 14pt">
|
||||||
|
<TextObject Name="Text33" Top="28.35" Width="28.35" Height="66.15" Border.Lines="All" Text="รวม อัตรา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TextObject Name="Text35" Left="122.85" Top="28.35" Width="94.5" Height="37.8" Border.Lines="All" Text="งานภาคสนาม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TextObject Name="Text34" Left="28.35" Top="28.35" Width="94.5" Height="37.8" Border.Lines="All" Text="วิชาการ/ งานสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableCell>
|
||||||
|
<TableCell Name="Cell30" Border.Lines="All" Text="รวมบุคลากรทั้งสิ้น" HorzAlign="Center" Font="TH Sarabun New, 14pt">
|
||||||
|
<TextObject Name="Text37" Left="122.85" Top="28.35" Width="94.5" Height="37.8" Border.Lines="All" Text="งานภาคสนาม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TextObject Name="Text38" Left="28.35" Top="28.35" Width="94.5" Height="37.8" Border.Lines="All" Text="วิชาการ/ งานสนับสนุน" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TextObject Name="Text36" Top="28.35" Width="28.35" Height="66.15" Border.Lines="All" Text="รวม อัตรา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableCell>
|
||||||
|
<TableCell Name="Cell31" Border.Lines="All" Text="สถานะ กรอบ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table2" Left="359.1" Top="66.15" Width="141.75" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column12" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column13" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column14" Width="47.25"/>
|
||||||
|
<TableRow Name="Row2" Height="28.35">
|
||||||
|
<TableCell Name="Cell32" Border.Lines="All" Text="รวมอัตรา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell33" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell34" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table3" Left="500.85" Top="66.15" Width="141.75" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column15" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column16" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column17" Width="47.25"/>
|
||||||
|
<TableRow Name="Row3" Height="28.35">
|
||||||
|
<TableCell Name="Cell35" Border.Lines="All" Text="รวมอัตรา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell36" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell37" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table5" Left="812.7" Top="66.15" Width="94.5" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column21" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column22" Width="47.25"/>
|
||||||
|
<TableRow Name="Row5" Height="28.35">
|
||||||
|
<TableCell Name="Cell41" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell42" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table6" Left="907.2" Top="66.15" Width="94.5" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column23" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column24" Width="47.25"/>
|
||||||
|
<TableRow Name="Row6" Height="28.35">
|
||||||
|
<TableCell Name="Cell43" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell44" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table7" Left="1001.7" Top="66.15" Width="141.75" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column25" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column26" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column27" Width="47.25"/>
|
||||||
|
<TableRow Name="Row7" Height="28.35">
|
||||||
|
<TableCell Name="Cell45" Border.Lines="All" Text="รวมอัตรา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell46" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell47" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table8" Left="1171.8" Top="66.15" Width="94.5" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column28" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column29" Width="47.25"/>
|
||||||
|
<TableRow Name="Row8" Height="28.35">
|
||||||
|
<TableCell Name="Cell48" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell49" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table9" Left="1266.3" Top="66.15" Width="94.5" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column30" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column31" Width="47.25"/>
|
||||||
|
<TableRow Name="Row9" Height="28.35">
|
||||||
|
<TableCell Name="Cell50" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell51" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table10" Left="1389.15" Top="66.15" Width="94.5" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column32" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column33" Width="47.25"/>
|
||||||
|
<TableRow Name="Row10" Height="28.35">
|
||||||
|
<TableCell Name="Cell52" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell53" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table11" Left="1483.65" Top="66.15" Width="94.5" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column34" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column35" Width="47.25"/>
|
||||||
|
<TableRow Name="Row11" Height="28.35">
|
||||||
|
<TableCell Name="Cell54" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell55" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TableObject Name="Table13" Left="642.6" Top="66.15" Width="141.75" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column67" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column68" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column69" Width="47.25"/>
|
||||||
|
<TableRow Name="Row13" Height="28.35">
|
||||||
|
<TableCell Name="Cell107" Border.Lines="All" Text="รวมอัตรา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell108" Border.Lines="All" Text="บรรจุ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell109" Border.Lines="All" Text="อัตราว่าง" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<DataBand Name="Data2" Top="170.29" Width="1651.86" Height="28.35" DataSource="man_power">
|
||||||
|
<TableObject Name="Table14" Width="1653.75" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column70" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column71" Width="255.15"/>
|
||||||
|
<TableColumn Name="Column72" Width="56.7"/>
|
||||||
|
<TableColumn Name="Column73" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column74" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column75" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column76" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column77" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column78" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column79" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column80" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column81" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column82" Width="28.35"/>
|
||||||
|
<TableColumn Name="Column83" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column84" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column85" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column86" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column87" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column88" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column89" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column90" Width="28.35"/>
|
||||||
|
<TableColumn Name="Column91" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column92" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column93" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column94" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column95" Width="28.35"/>
|
||||||
|
<TableColumn Name="Column96" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column97" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column98" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column99" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column100" Width="75.6"/>
|
||||||
|
<TableRow Name="Row14" Height="28.35">
|
||||||
|
<TableCell Name="Cell110" Text="[man_power.no]" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell111" Border.Lines="All" Text="[man_power.agency_name]" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell112" Border.Lines="All" Text="[man_power.rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell113" Border.Lines="All" Text="[man_power.government_officer_totalrate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell114" Border.Lines="All" Text="[man_power.government_officer_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell135" Border.Lines="All" Text="[man_power.government_officer_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell136" Border.Lines="All" Text="[man_power.university_staff_totalrate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell137" Border.Lines="All" Text="[man_power.university_staff_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell138" Border.Lines="All" Text="[man_power.university_staff_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell139" Border.Lines="All" Text="[man_power.government_employee_totalrate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell140" Border.Lines="All" Text="[man_power.government_employee_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell141" Border.Lines="All" Text="[man_power.government_employee_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell142" Border.Lines="All" Text="[man_power.permanent_employee_totalrate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell143" Border.Lines="All" Text="[man_power.permanent_employee_support_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell144" Border.Lines="All" Text="[man_power.permanent_employee_support_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell145" Border.Lines="All" Text="[man_power.permanent_employee_field_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell146" Border.Lines="All" Text="[man_power.permanent_employee_field_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell147" Border.Lines="All" Text="[man_power.temporary_worker_land_totalrate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell148" Border.Lines="All" Text="[man_power.temporary_worker_land_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell149" Border.Lines="All" Text="[man_power.temporary_worker_land_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell150" Border.Lines="All" Text="[man_power.temporary_worker_income_totalrate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell151" Border.Lines="All" Text="[man_power.temporary_worker_income_support_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell152" Border.Lines="All" Text="[man_power.temporary_worker_income_support_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell153" Border.Lines="All" Text="[man_power.temporary_worker_income_field_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell154" Border.Lines="All" Text="[man_power.temporary_worker_income_field_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell155" Border.Lines="All" Text="[man_power.total_personnel_totalrate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell156" Border.Lines="All" Text="[man_power.total_personnel_support_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell157" Border.Lines="All" Text="[man_power.total_personnel_support_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell158" Border.Lines="All" Text="[man_power.total_personnel_field_packing]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell159" Border.Lines="All" Text="[man_power.total_personnel_field_rate]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
<TableCell Name="Cell160" Border.Lines="All" Text="[man_power.status]" VertAlign="Center" Font="TH Sarabun New, 10pt"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
</DataBand>
|
||||||
|
</DataBand>
|
||||||
|
<ReportSummaryBand Name="ReportSummary1" Top="203.46" Width="1651.86" Height="122.85">
|
||||||
|
<TableObject Name="Table15" Width="1653.75" Height="28.35" Border.Lines="All">
|
||||||
|
<TableColumn Name="Column101" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column102" Width="255.15"/>
|
||||||
|
<TableColumn Name="Column103" Width="56.7"/>
|
||||||
|
<TableColumn Name="Column104" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column105" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column106" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column107" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column108" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column109" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column110" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column111" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column112" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column113" Width="28.35"/>
|
||||||
|
<TableColumn Name="Column114" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column115" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column116" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column117" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column118" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column119" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column120" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column121" Width="28.35"/>
|
||||||
|
<TableColumn Name="Column122" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column123" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column124" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column125" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column126" Width="28.35"/>
|
||||||
|
<TableColumn Name="Column127" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column128" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column129" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column130" Width="47.25"/>
|
||||||
|
<TableColumn Name="Column131" Width="75.6"/>
|
||||||
|
<TableRow Name="Row15" Height="28.35">
|
||||||
|
<TableCell Name="Cell161" Text="รวมทั้งหมด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
|
||||||
|
<TableCell Name="Cell162" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell163" Border.Lines="All" Text="[Total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell164" Border.Lines="All" Text="[Total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell165" Border.Lines="All" Text="[Total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell166" Border.Lines="All" Text="[Total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell167" Border.Lines="All" Text="[Total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell168" Border.Lines="All" Text="[Total6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell169" Border.Lines="All" Text="[Total7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell170" Border.Lines="All" Text="[Total8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell171" Border.Lines="All" Text="[Total9]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell172" Border.Lines="All" Text="[Total10]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell173" Border.Lines="All" Text="[Total11]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell174" Border.Lines="All" Text="[Total12]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell175" Border.Lines="All" Text="[Total13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell176" Border.Lines="All" Text="[Total14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell177" Border.Lines="All" Text="[Total15]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell178" Border.Lines="All" Text="[Total16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell179" Border.Lines="All" Text="[Total17]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell180" Border.Lines="All" Text="[Total18]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell181" Border.Lines="All" Text="[Total19]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell182" Border.Lines="All" Text="[Total20]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell183" Border.Lines="All" Text="[Total21]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell184" Border.Lines="All" Text="[Total22]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell185" Border.Lines="All" Text="[Total23]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell186" Border.Lines="All" Text="[Total24]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell187" Border.Lines="All" Text="[Total25]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell188" Border.Lines="All" Text="[Total26]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell189" Border.Lines="All" Text="[Total27]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell190" Border.Lines="All" Text="[Total28]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell191" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 11pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<TextObject Name="Text39" Left="1001.7" Top="37.8" Width="652.05" Height="28.35" Text="งานโครงสร้างและอัตรากำลัง (กองบริหารงานบุคคล)" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
|
||||||
|
<TextObject Name="Text40" Top="66.15" Width="56.7" Height="28.35" Text="หมายเหตุ" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
|
||||||
|
<TextObject Name="Text41" Top="94.5" Width="510.3" Height="28.35" Text="จำนวนนักเรียนทุนที่อยู่ระหว่างการศึกษา จำนวน 18 อัตรา นับรวมในอัตราว่าง" VertAlign="Center" Font="TH Sarabun New, 12pt"/>
|
||||||
|
</ReportSummaryBand>
|
||||||
|
</ReportPage>
|
||||||
|
</Report>
|
||||||
159
wwwroot/reports/personnel_summary.frx
Normal file
159
wwwroot/reports/personnel_summary.frx
Normal file
@@ -0,0 +1,159 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="05/28/2022 18:19:34" ReportInfo.CreatorVersion="2022.1.0.0">
|
||||||
|
<Dictionary>
|
||||||
|
<BusinessObjectDataSource Name="personnel_summary" ReferenceName="personnel_summary" DataType="null" Enabled="true">
|
||||||
|
<Column Name="data_date" DataType="System.String"/>
|
||||||
|
<Column Name="total_pertype" DataType="System.Int32"/>
|
||||||
|
<BusinessObjectDataSource Name="personnel_types" DataType="null" Enabled="true">
|
||||||
|
<Column Name="type_name" DataType="System.String"/>
|
||||||
|
<Column Name="count" DataType="System.Int32"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
<BusinessObjectDataSource Name="lineofworks" DataType="null" Enabled="true">
|
||||||
|
<Column Name="work_name" DataType="System.String"/>
|
||||||
|
<Column Name="count" DataType="System.Int32"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
<BusinessObjectDataSource Name="positions" DataType="null" Enabled="true">
|
||||||
|
<Column Name="position_name" DataType="System.String"/>
|
||||||
|
<Column Name="count" DataType="System.Int32"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
<BusinessObjectDataSource Name="areas" DataType="null" Enabled="true">
|
||||||
|
<Column Name="area_name" DataType="System.String"/>
|
||||||
|
<Column Name="count" DataType="System.Int32"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
<BusinessObjectDataSource Name="qualifications" DataType="null" Enabled="true">
|
||||||
|
<Column Name="qualification_name" DataType="System.String"/>
|
||||||
|
<Column Name="count" DataType="System.Int32"/>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
</BusinessObjectDataSource>
|
||||||
|
</Dictionary>
|
||||||
|
<ReportPage Name="Page1" RawPaperSize="9" Watermark.Font="Arial, 60pt">
|
||||||
|
<PageHeaderBand Name="PageHeader1" Width="718.2" Height="94.5">
|
||||||
|
<TextObject Name="Text1" Left="75.6" Top="9.45" Width="548.1" Height="28.35" Text="ข้อมูลจำนวนบุคลากร" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 17pt, style=Bold"/>
|
||||||
|
<TextObject Name="Text29" Left="75.6" Top="37.8" Width="548.1" Height="28.35" Text="ในมหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 17pt, style=Bold"/>
|
||||||
|
<TextObject Name="Text30" Left="75.6" Top="66.15" Width="548.1" Height="28.35" Text="ข้อมูล ณ วันที่ [personnel_summary.data_date]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 17pt, style=Underline"/>
|
||||||
|
</PageHeaderBand>
|
||||||
|
<DataBand Name="Data2" Top="98.71" Width="718.2" Height="37.8">
|
||||||
|
<TableObject Name="Table1" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column1" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column2" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column3" Width="122.85"/>
|
||||||
|
<TableRow Name="Row1" Height="37.8">
|
||||||
|
<TableCell Name="Cell1" Border.Lines="All" Text="จำนวนบุคลากร ทั้งหมด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell2" Border.Lines="All" Text="[personnel_summary.total_pertype]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell3" Border.Lines="All" Text="ราย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<DataBand Name="Data1" Top="140.72" Width="718.2" Height="37.8" DataSource="personnel_types">
|
||||||
|
<TableObject Name="Table2" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column4" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column5" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column6" Width="122.85"/>
|
||||||
|
<TableRow Name="Row2" Height="37.8">
|
||||||
|
<TableCell Name="Cell4" Border.Lines="All" Text="[personnel_summary.personnel_types.type_name]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell5" Border.Lines="All" Text="[personnel_summary.personnel_types.count]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell6" Border.Lines="All" Text="ราย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
</DataBand>
|
||||||
|
</DataBand>
|
||||||
|
<DataBand Name="Data3" Top="182.73" Width="718.2" Height="37.8">
|
||||||
|
<TableObject Name="Table3" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column7" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column8" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column9" Width="122.85"/>
|
||||||
|
<TableRow Name="Row3" Height="37.8">
|
||||||
|
<TableCell Name="Cell7" Border.Lines="All" Text="ประเภทสายงาน" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold" ColSpan="3"/>
|
||||||
|
<TableCell Name="Cell8" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell9" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<DataBand Name="Data4" Top="224.74" Width="718.2" Height="37.8" DataSource="lineofworks">
|
||||||
|
<TableObject Name="Table4" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column10" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column11" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column12" Width="122.85"/>
|
||||||
|
<TableRow Name="Row4" Height="37.8">
|
||||||
|
<TableCell Name="Cell10" Border.Lines="All" Text="[personnel_summary.lineofworks.work_name]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell11" Border.Lines="All" Text="[personnel_summary.lineofworks.count]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell12" Border.Lines="All" Text="ราย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
</DataBand>
|
||||||
|
</DataBand>
|
||||||
|
<DataBand Name="Data5" Top="266.75" Width="718.2" Height="37.8">
|
||||||
|
<TableObject Name="Table5" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column13" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column14" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column15" Width="122.85"/>
|
||||||
|
<TableRow Name="Row5" Height="37.8">
|
||||||
|
<TableCell Name="Cell13" Border.Lines="All" Text="ตำแหน่งทางวิชาการ" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold" ColSpan="3"/>
|
||||||
|
<TableCell Name="Cell14" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell15" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<DataBand Name="Data6" Top="308.76" Width="718.2" Height="37.8" DataSource="positions">
|
||||||
|
<TableObject Name="Table6" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column16" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column17" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column18" Width="122.85"/>
|
||||||
|
<TableRow Name="Row6" Height="37.8">
|
||||||
|
<TableCell Name="Cell16" Border.Lines="All" Text="[personnel_summary.positions.position_name]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell17" Border.Lines="All" Text="[personnel_summary.positions.count]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell18" Border.Lines="All" Text="ราย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
</DataBand>
|
||||||
|
</DataBand>
|
||||||
|
<DataBand Name="Data7" Top="350.77" Width="718.2" Height="37.8">
|
||||||
|
<TableObject Name="Table9" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column25" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column26" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column27" Width="122.85"/>
|
||||||
|
<TableRow Name="Row9" Height="37.8">
|
||||||
|
<TableCell Name="Cell25" Border.Lines="All" Text="บุคลากรประจำพื้นที่" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold" ColSpan="3"/>
|
||||||
|
<TableCell Name="Cell26" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell27" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<DataBand Name="Data8" Top="392.78" Width="718.2" Height="37.8" DataSource="areas">
|
||||||
|
<TableObject Name="Table7" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column19" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column20" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column21" Width="122.85"/>
|
||||||
|
<TableRow Name="Row7" Height="37.8">
|
||||||
|
<TableCell Name="Cell19" Border.Lines="All" Text="[personnel_summary.areas.area_name]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell20" Border.Lines="All" Text="[personnel_summary.areas.count]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell21" Border.Lines="All" Text="ราย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
</DataBand>
|
||||||
|
</DataBand>
|
||||||
|
<DataBand Name="Data9" Top="434.79" Width="718.2" Height="37.8">
|
||||||
|
<TableObject Name="Table10" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column28" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column29" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column30" Width="122.85"/>
|
||||||
|
<TableRow Name="Row10" Height="37.8">
|
||||||
|
<TableCell Name="Cell28" Border.Lines="All" Text="คุณวุฒิสูงสุดของบุคลากรสายวิชาการ" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold" ColSpan="3"/>
|
||||||
|
<TableCell Name="Cell29" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell30" Border.Lines="All" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
<DataBand Name="Data10" Top="476.81" Width="718.2" Height="37.8" DataSource="qualifications">
|
||||||
|
<TableObject Name="Table8" Left="75.6" Width="548.1" Height="37.8">
|
||||||
|
<TableColumn Name="Column22" Width="302.4"/>
|
||||||
|
<TableColumn Name="Column23" Width="122.85"/>
|
||||||
|
<TableColumn Name="Column24" Width="122.85"/>
|
||||||
|
<TableRow Name="Row8" Height="37.8">
|
||||||
|
<TableCell Name="Cell22" Border.Lines="All" Text="[personnel_summary.qualifications.qualification_name]" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell23" Border.Lines="All" Text="[personnel_summary.qualifications.count]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
<TableCell Name="Cell24" Border.Lines="All" Text="ราย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt, style=Bold"/>
|
||||||
|
</TableRow>
|
||||||
|
</TableObject>
|
||||||
|
</DataBand>
|
||||||
|
</DataBand>
|
||||||
|
<ReportSummaryBand Name="ReportSummary1" Top="518.82" Width="718.2" Height="75.6">
|
||||||
|
<TextObject Name="Text31" Left="75.6" Width="548.1" Height="75.6" Text="ไม่รวมจำนวนนักเรียนทุนที่อยู่ระหว่างการศึกษา จำนวน 18 อัตรา ไม่นับรวมบุคลากรหน่วยงานในกำกับ" VertAlign="Center" Font="TH Sarabun New, 17pt, style=Bold"/>
|
||||||
|
</ReportSummaryBand>
|
||||||
|
</ReportPage>
|
||||||
|
</Report>
|
||||||
Reference in New Issue
Block a user