first commit
This commit is contained in:
commit
7f6949887c
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
db/data/
|
||||
bin
|
||||
obj
|
||||
20
StockingData/Containerfile
Normal file
20
StockingData/Containerfile
Normal file
@ -0,0 +1,20 @@
|
||||
FROM debian
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ENV LANG ja_JP.UTF-8
|
||||
|
||||
## Setup utils
|
||||
RUN apt update \
|
||||
&& apt install -y wget
|
||||
|
||||
## Setup Dotnet SDK
|
||||
RUN wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
|
||||
&& dpkg -i packages-microsoft-prod.deb \
|
||||
&& rm packages-microsoft-prod.deb \
|
||||
&& apt update \
|
||||
&& apt install -y dotnet-sdk-8.0
|
||||
|
||||
CMD ["dotnet", "run"]
|
||||
55
StockingData/Controllers/DisplayProductsController.cs
Normal file
55
StockingData/Controllers/DisplayProductsController.cs
Normal file
@ -0,0 +1,55 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using StockingData.Lib.IO.Repositories;
|
||||
using StockingData.Models;
|
||||
|
||||
namespace StockingData.Controllers;
|
||||
|
||||
public class DisplayProductsController : Controller
|
||||
{
|
||||
private readonly IStockRepository stockRepository;
|
||||
|
||||
public DisplayProductsController(IStockRepository stockRepository)
|
||||
{
|
||||
this.stockRepository = stockRepository;
|
||||
}
|
||||
|
||||
public IActionResult Register()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
public async ValueTask<IActionResult> Apply(ApplyProductModel model)
|
||||
{
|
||||
if (!ModelState.IsValid)
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (string.IsNullOrWhiteSpace(model.Date))
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (!DateOnly.TryParse(model.Date, out DateOnly date))
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (model.Products.Count() != model.ProductCounts.Count())
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
// Enumerate
|
||||
for (int i = 0 ; i < model.Products.Count() ; i++)
|
||||
{
|
||||
var product = model.Products.ElementAt(i);
|
||||
var count = model.ProductCounts.ElementAt(i);
|
||||
|
||||
var stockId = await this.stockRepository.CreateStockRecordAsync(date, product).ConfigureAwait(false);
|
||||
await this.stockRepository.UpdateDisplayCountAsync(stockId, count).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
return RedirectToAction("Register", "StockProducts");
|
||||
}
|
||||
}
|
||||
36
StockingData/Controllers/GraphController.cs
Normal file
36
StockingData/Controllers/GraphController.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using StockingData.Lib.IO.Repositories;
|
||||
using StockingData.Models;
|
||||
|
||||
namespace StockingData.Controllers;
|
||||
|
||||
public class GraphController : Controller
|
||||
{
|
||||
private readonly IStockRepository stockRepository;
|
||||
|
||||
public GraphController(IStockRepository stockRepository)
|
||||
{
|
||||
this.stockRepository = stockRepository;
|
||||
}
|
||||
|
||||
public async ValueTask<IActionResult> View(int id)
|
||||
{
|
||||
var product = await this.stockRepository.FetchProductByIdAsync(id).ConfigureAwait(false);
|
||||
if (product is null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
var records = await this.stockRepository.FetchStockRecordByIdAsync(product.ProductId).ConfigureAwait(false);
|
||||
|
||||
var model = new GraphViewModel()
|
||||
{
|
||||
ProductId = product.ProductId,
|
||||
Title = product.Title,
|
||||
Code = product.Code,
|
||||
Stocks = records,
|
||||
};
|
||||
|
||||
return View(model);
|
||||
}
|
||||
}
|
||||
27
StockingData/Controllers/HomeController.cs
Normal file
27
StockingData/Controllers/HomeController.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using System.Diagnostics;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using StockingData.Models;
|
||||
|
||||
namespace StockingData.Controllers;
|
||||
|
||||
public class HomeController : Controller
|
||||
{
|
||||
private readonly ILogger<HomeController> _logger;
|
||||
|
||||
public HomeController(ILogger<HomeController> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
public IActionResult Index()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
public IActionResult Error()
|
||||
{
|
||||
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
||||
}
|
||||
}
|
||||
76
StockingData/Controllers/ProductsController.cs
Normal file
76
StockingData/Controllers/ProductsController.cs
Normal file
@ -0,0 +1,76 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using StockingData.Lib.IO.Repositories;
|
||||
using StockingData.Models;
|
||||
|
||||
namespace StockingData.Controllers;
|
||||
|
||||
public class ProductsController : Controller
|
||||
{
|
||||
private readonly IStockRepository stockRepository;
|
||||
|
||||
public ProductsController(IStockRepository stockRepository)
|
||||
{
|
||||
this.stockRepository = stockRepository;
|
||||
}
|
||||
|
||||
public async ValueTask<IActionResult> ListJson()
|
||||
{
|
||||
var ret = await this.stockRepository.FetchProductsAsync().ConfigureAwait(false);
|
||||
var products = ret.Select(x => {
|
||||
return new ProductModel()
|
||||
{
|
||||
ProductId = x.ProductId,
|
||||
Title = x.Title,
|
||||
Code = x.Code,
|
||||
};
|
||||
});
|
||||
|
||||
return Json(products);
|
||||
}
|
||||
|
||||
public async ValueTask<IActionResult> List()
|
||||
{
|
||||
var ret = await this.stockRepository.FetchProductsAsync().ConfigureAwait(false);
|
||||
var products = ret.Select(x => {
|
||||
return new ProductModel()
|
||||
{
|
||||
ProductId = x.ProductId,
|
||||
Title = x.Title,
|
||||
Code = x.Code,
|
||||
};
|
||||
});
|
||||
|
||||
return View(products);
|
||||
}
|
||||
|
||||
public async ValueTask<IActionResult> CreateApply(CreateProductModel model)
|
||||
{
|
||||
if (!ModelState.IsValid)
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (string.IsNullOrWhiteSpace(model.Title) || string.IsNullOrWhiteSpace(model.Code))
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (model.Title.Length > 50 || model.Code.Length > 50)
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
int productId = await this.stockRepository.CreateProductAsync(model.Title, model.Code).ConfigureAwait(false);
|
||||
if (productId == -1)
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
return RedirectToAction("List");
|
||||
}
|
||||
|
||||
public IActionResult Create()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
}
|
||||
55
StockingData/Controllers/SaleProductsController.cs
Normal file
55
StockingData/Controllers/SaleProductsController.cs
Normal file
@ -0,0 +1,55 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using StockingData.Lib.IO.Repositories;
|
||||
using StockingData.Models;
|
||||
|
||||
namespace StockingData.Controllers;
|
||||
|
||||
public class SaleProductsController : Controller
|
||||
{
|
||||
private readonly IStockRepository stockRepository;
|
||||
|
||||
public SaleProductsController(IStockRepository stockRepository)
|
||||
{
|
||||
this.stockRepository = stockRepository;
|
||||
}
|
||||
|
||||
public IActionResult Register()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
public async ValueTask<IActionResult> Apply(ApplyProductModel model)
|
||||
{
|
||||
if (!ModelState.IsValid)
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (string.IsNullOrWhiteSpace(model.Date))
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (!DateOnly.TryParse(model.Date, out DateOnly date))
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (model.Products.Count() != model.ProductCounts.Count())
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
// Enumerate
|
||||
for (int i = 0 ; i < model.Products.Count() ; i++)
|
||||
{
|
||||
var product = model.Products.ElementAt(i);
|
||||
var count = model.ProductCounts.ElementAt(i);
|
||||
|
||||
var stockId = await this.stockRepository.CreateStockRecordAsync(date, product).ConfigureAwait(false);
|
||||
await this.stockRepository.UpdateSaleCountAsync(stockId, count).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
return RedirectToAction("List", "Products");
|
||||
}
|
||||
}
|
||||
55
StockingData/Controllers/StockProductsController.cs
Normal file
55
StockingData/Controllers/StockProductsController.cs
Normal file
@ -0,0 +1,55 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using StockingData.Lib.IO.Repositories;
|
||||
using StockingData.Models;
|
||||
|
||||
namespace StockingData.Controllers;
|
||||
|
||||
public class StockProductsController : Controller
|
||||
{
|
||||
private readonly IStockRepository stockRepository;
|
||||
|
||||
public StockProductsController(IStockRepository stockRepository)
|
||||
{
|
||||
this.stockRepository = stockRepository;
|
||||
}
|
||||
|
||||
public IActionResult Register()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
public async ValueTask<IActionResult> Apply(ApplyProductModel model)
|
||||
{
|
||||
if (!ModelState.IsValid)
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (string.IsNullOrWhiteSpace(model.Date))
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (!DateOnly.TryParse(model.Date, out DateOnly date))
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
if (model.Products.Count() != model.ProductCounts.Count())
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
// Enumerate
|
||||
for (int i = 0 ; i < model.Products.Count() ; i++)
|
||||
{
|
||||
var product = model.Products.ElementAt(i);
|
||||
var count = model.ProductCounts.ElementAt(i);
|
||||
|
||||
var stockId = await this.stockRepository.CreateStockRecordAsync(date, product).ConfigureAwait(false);
|
||||
await this.stockRepository.UpdateStockCountAsync(stockId, count).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
return RedirectToAction("Register", "SaleProducts");
|
||||
}
|
||||
}
|
||||
17
StockingData/Lib/Data/ProductTable.cs
Normal file
17
StockingData/Lib/Data/ProductTable.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using PetaPoco;
|
||||
|
||||
namespace StockingData.Lib.Data;
|
||||
|
||||
[TableName("products")]
|
||||
[PrimaryKey("product_id", AutoIncrement = true)]
|
||||
public class ProductTable
|
||||
{
|
||||
[Column("product_id")]
|
||||
public int ProductId { get; set; }
|
||||
|
||||
[Column("code")]
|
||||
public string Code { get; set; }
|
||||
|
||||
[Column("title")]
|
||||
public string Title { get; set; }
|
||||
}
|
||||
26
StockingData/Lib/Data/StockTable.cs
Normal file
26
StockingData/Lib/Data/StockTable.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using PetaPoco;
|
||||
|
||||
namespace StockingData.Lib.Data;
|
||||
|
||||
[TableName("stocks")]
|
||||
[PrimaryKey("stock_id", AutoIncrement = true)]
|
||||
public class StockTable
|
||||
{
|
||||
[Column("stock_id")]
|
||||
public long StockId { get; set; }
|
||||
|
||||
[Column("date")]
|
||||
public DateOnly Date { get; set; }
|
||||
|
||||
[Column("product_id")]
|
||||
public int ProductId { get; set; }
|
||||
|
||||
[Column("display_count")]
|
||||
public int DisplayCount { get; set; }
|
||||
|
||||
[Column("stock_count")]
|
||||
public int StockCount { get; set; }
|
||||
|
||||
[Column("sale_count")]
|
||||
public int SaleCount { get; set; }
|
||||
}
|
||||
27
StockingData/Lib/IO/Databases/DatabaseContext.cs
Normal file
27
StockingData/Lib/IO/Databases/DatabaseContext.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using PetaPoco;
|
||||
|
||||
namespace StockingData.Lib.IO.Databases;
|
||||
|
||||
public static class DatabaseContext
|
||||
{
|
||||
public static Database GetDatabase()
|
||||
{
|
||||
var dbname = Environment.GetEnvironmentVariable("RDBNAME");
|
||||
var dbhost = Environment.GetEnvironmentVariable("RDBHOST");
|
||||
var dbuser = Environment.GetEnvironmentVariable("RDBUSER");
|
||||
var dbpass = Environment.GetEnvironmentVariable("RDBPASS");
|
||||
|
||||
if (
|
||||
string.IsNullOrWhiteSpace(dbname) ||
|
||||
string.IsNullOrWhiteSpace(dbhost) ||
|
||||
string.IsNullOrWhiteSpace(dbuser) ||
|
||||
string.IsNullOrWhiteSpace(dbpass)
|
||||
)
|
||||
{
|
||||
throw new Exception("Required envirnoment variables are not settings.");
|
||||
}
|
||||
|
||||
var connectionString = $"database={dbname};server={dbhost};user={dbuser};password={dbpass};Allow User Variables=true;";
|
||||
return new MySqlDatabase(connectionString, "MySqlConnector", new DateMapper());
|
||||
}
|
||||
}
|
||||
36
StockingData/Lib/IO/Databases/DateMapper.cs
Normal file
36
StockingData/Lib/IO/Databases/DateMapper.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using PetaPoco;
|
||||
|
||||
namespace StockingData.Lib.IO.Databases;
|
||||
|
||||
public class DateMapper : ConventionMapper
|
||||
{
|
||||
public override Func<object, object> GetFromDbConverter(PropertyInfo targetProperty, Type sourceType)
|
||||
{
|
||||
if (targetProperty.PropertyType == typeof(DateOnly) && sourceType == typeof(DateTime))
|
||||
{
|
||||
return o => DateOnly.FromDateTime((DateTime) o);
|
||||
}
|
||||
|
||||
if (targetProperty.PropertyType == typeof(TimeOnly) && sourceType == typeof(DateTime))
|
||||
{
|
||||
return o => TimeOnly.FromDateTime((DateTime) o);
|
||||
}
|
||||
|
||||
if (targetProperty.PropertyType == typeof(TimeOnly) && sourceType == typeof(TimeSpan))
|
||||
{
|
||||
return o => TimeOnly.FromTimeSpan((TimeSpan) o);
|
||||
}
|
||||
|
||||
if (targetProperty.PropertyType == typeof(TimeOnly?) && sourceType == typeof(TimeSpan))
|
||||
{
|
||||
return o => o is null ? null : TimeOnly.FromTimeSpan((TimeSpan) o);
|
||||
}
|
||||
// Console.WriteLine(sourceType.FullName);
|
||||
|
||||
// see if there's already a converter on the class/property
|
||||
var result = base.GetFromDbConverter(targetProperty, sourceType);
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
34
StockingData/Lib/IO/Databases/MySqlDatabase.cs
Normal file
34
StockingData/Lib/IO/Databases/MySqlDatabase.cs
Normal file
@ -0,0 +1,34 @@
|
||||
using System.Data;
|
||||
using System.Data.Common;
|
||||
using PetaPoco;
|
||||
using PetaPoco.Core;
|
||||
|
||||
namespace StockingData.Lib.IO.Databases;
|
||||
|
||||
public class MySqlDatabase : Database
|
||||
{
|
||||
public MySqlDatabase(IDatabaseBuildConfiguration configuration): base(configuration)
|
||||
{
|
||||
}
|
||||
|
||||
public MySqlDatabase(IDbConnection connection, IMapper? defaultMapper = null): base(connection, defaultMapper)
|
||||
{
|
||||
}
|
||||
|
||||
public MySqlDatabase(string connectionString, string providerName, IMapper? defaultMapper = null): base(connectionString, providerName, defaultMapper)
|
||||
{
|
||||
}
|
||||
|
||||
public MySqlDatabase(string connectionString, DbProviderFactory factory, IMapper? defaultMapper = null): base(connectionString, factory, defaultMapper)
|
||||
{
|
||||
}
|
||||
|
||||
public MySqlDatabase(string connectionString, IProvider provider, IMapper? defaultMapper = null): base(connectionString, provider, defaultMapper)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool OnException(Exception ex)
|
||||
{
|
||||
return base.OnException(ex);
|
||||
}
|
||||
}
|
||||
22
StockingData/Lib/IO/Repositories/IStockRepository.cs
Normal file
22
StockingData/Lib/IO/Repositories/IStockRepository.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using StockingData.Lib.Data;
|
||||
|
||||
namespace StockingData.Lib.IO.Repositories;
|
||||
|
||||
public interface IStockRepository : IDisposable
|
||||
{
|
||||
public ValueTask<int> CreateProductAsync(string title, string code);
|
||||
|
||||
public ValueTask<ProductTable?> FetchProductByIdAsync(int id);
|
||||
|
||||
public ValueTask<IEnumerable<ProductTable>> FetchProductsAsync();
|
||||
|
||||
public ValueTask<long> CreateStockRecordAsync(DateOnly date, int productId);
|
||||
|
||||
public ValueTask<bool> UpdateDisplayCountAsync(long stockId, int displayCount);
|
||||
|
||||
public ValueTask<bool> UpdateStockCountAsync(long stockId, int stockCount);
|
||||
|
||||
public ValueTask<bool> UpdateSaleCountAsync(long stockId, int saleCount);
|
||||
|
||||
public ValueTask<IEnumerable<StockTable>> FetchStockRecordByIdAsync(int productId);
|
||||
}
|
||||
169
StockingData/Lib/IO/Repositories/MockStockRepository.cs
Normal file
169
StockingData/Lib/IO/Repositories/MockStockRepository.cs
Normal file
@ -0,0 +1,169 @@
|
||||
using StockingData.Lib.Data;
|
||||
|
||||
namespace StockingData.Lib.IO.Repositories;
|
||||
|
||||
public class MockStockRepository : IStockRepository
|
||||
{
|
||||
private static List<ProductTable> products = new List<ProductTable>()
|
||||
{
|
||||
new ProductTable()
|
||||
{
|
||||
ProductId = 1,
|
||||
Title = "マグロ",
|
||||
Code = "0000",
|
||||
},
|
||||
new ProductTable()
|
||||
{
|
||||
ProductId = 2,
|
||||
Title = "サーモン",
|
||||
Code = "0001",
|
||||
},
|
||||
};
|
||||
|
||||
private static List<StockTable> stocks = new List<StockTable>()
|
||||
{
|
||||
new StockTable()
|
||||
{
|
||||
StockId = 1,
|
||||
ProductId = 1,
|
||||
DisplayCount = 10,
|
||||
StockCount = 5,
|
||||
SaleCount = 10,
|
||||
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(-2)),
|
||||
},
|
||||
new StockTable()
|
||||
{
|
||||
StockId = 2,
|
||||
ProductId = 1,
|
||||
DisplayCount = 15,
|
||||
StockCount = 5,
|
||||
SaleCount = 8,
|
||||
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(-1)),
|
||||
},
|
||||
new StockTable()
|
||||
{
|
||||
StockId = 3,
|
||||
ProductId = 1,
|
||||
DisplayCount = 8,
|
||||
StockCount = 10,
|
||||
SaleCount = 20,
|
||||
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(0)),
|
||||
},
|
||||
new StockTable()
|
||||
{
|
||||
StockId = 4,
|
||||
ProductId = 1,
|
||||
DisplayCount = 9,
|
||||
StockCount = 11,
|
||||
SaleCount = 11,
|
||||
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(1)),
|
||||
},
|
||||
new StockTable()
|
||||
{
|
||||
StockId = 5,
|
||||
ProductId = 1,
|
||||
DisplayCount = 10,
|
||||
StockCount = 12,
|
||||
SaleCount = 12,
|
||||
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(2)),
|
||||
},
|
||||
};
|
||||
|
||||
public ValueTask<int> CreateProductAsync(string title, string code)
|
||||
{
|
||||
var x = products.FirstOrDefault(x => x.Title == title && x.Code == code);
|
||||
if (x is object)
|
||||
{
|
||||
return ValueTask.FromResult(x.ProductId);
|
||||
}
|
||||
|
||||
int productId = products.Count() + 1;
|
||||
|
||||
products.Add(new ProductTable()
|
||||
{
|
||||
ProductId = productId,
|
||||
Title = title,
|
||||
Code = code,
|
||||
});
|
||||
|
||||
return ValueTask.FromResult(productId);
|
||||
}
|
||||
|
||||
public ValueTask<long> CreateStockRecordAsync(DateOnly date, int productId)
|
||||
{
|
||||
var record = stocks.FirstOrDefault(x => x.Date == date && x.ProductId == productId);
|
||||
if (record is object)
|
||||
{
|
||||
return ValueTask.FromResult(record.StockId);
|
||||
}
|
||||
|
||||
long stockId = stocks.LongCount() + 1;
|
||||
stocks.Add(new StockTable()
|
||||
{
|
||||
StockId = stockId,
|
||||
Date = date,
|
||||
ProductId = productId,
|
||||
DisplayCount = 0,
|
||||
StockCount = 0,
|
||||
SaleCount = 0,
|
||||
});
|
||||
|
||||
return ValueTask.FromResult(stockId);
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
|
||||
public ValueTask<IEnumerable<ProductTable>> FetchProductsAsync()
|
||||
{
|
||||
return ValueTask.FromResult(products.Skip(0));
|
||||
}
|
||||
|
||||
public ValueTask<ProductTable?> FetchProductByIdAsync(int id)
|
||||
{
|
||||
var x = products.FirstOrDefault(x => x.ProductId == id);
|
||||
return ValueTask.FromResult(x);
|
||||
}
|
||||
|
||||
public ValueTask<IEnumerable<StockTable>> FetchStockRecordByIdAsync(int productId)
|
||||
{
|
||||
return ValueTask.FromResult(stocks.Where(x => x.ProductId == productId));
|
||||
}
|
||||
|
||||
public ValueTask<bool> UpdateDisplayCountAsync(long stockId, int displayCount)
|
||||
{
|
||||
var record = stocks.FirstOrDefault(x => x.StockId == stockId);
|
||||
if (record is null)
|
||||
{
|
||||
return ValueTask.FromResult(false);
|
||||
}
|
||||
|
||||
record.DisplayCount = displayCount;
|
||||
return ValueTask.FromResult(true);
|
||||
}
|
||||
|
||||
public ValueTask<bool> UpdateSaleCountAsync(long stockId, int saleCount)
|
||||
{
|
||||
var record = stocks.FirstOrDefault(x => x.StockId == stockId);
|
||||
if (record is null)
|
||||
{
|
||||
return ValueTask.FromResult(false);
|
||||
}
|
||||
|
||||
record.SaleCount = saleCount;
|
||||
return ValueTask.FromResult(true);
|
||||
}
|
||||
|
||||
public ValueTask<bool> UpdateStockCountAsync(long stockId, int stockCount)
|
||||
{
|
||||
var record = stocks.FirstOrDefault(x => x.StockId == stockId);
|
||||
if (record is null)
|
||||
{
|
||||
return ValueTask.FromResult(false);
|
||||
}
|
||||
|
||||
record.StockCount = stockCount;
|
||||
return ValueTask.FromResult(true);
|
||||
}
|
||||
}
|
||||
126
StockingData/Lib/IO/Repositories/MySqlRepository.cs
Normal file
126
StockingData/Lib/IO/Repositories/MySqlRepository.cs
Normal file
@ -0,0 +1,126 @@
|
||||
using PetaPoco;
|
||||
using StockingData.Lib.Data;
|
||||
|
||||
namespace StockingData.Lib.IO.Repositories;
|
||||
|
||||
public class MySqlStockRepository : IStockRepository
|
||||
{
|
||||
private readonly Database database;
|
||||
|
||||
public MySqlStockRepository(Database database)
|
||||
{
|
||||
this.database = database;
|
||||
}
|
||||
|
||||
public async ValueTask<int> CreateProductAsync(string title, string code)
|
||||
{
|
||||
var ret = await this.database.SingleOrDefaultAsync<ProductTable>(
|
||||
$"SELECT * FROM products WHERE title = @0 AND code = @1",
|
||||
title,
|
||||
code
|
||||
).ConfigureAwait(false);
|
||||
if (ret is object)
|
||||
{
|
||||
return ret.ProductId;
|
||||
}
|
||||
var model = new ProductTable()
|
||||
{
|
||||
Title = title,
|
||||
Code = code,
|
||||
};
|
||||
|
||||
var result = await this.database.InsertAsync(model).ConfigureAwait(false);
|
||||
|
||||
return (int) (ulong) result;
|
||||
}
|
||||
|
||||
public async ValueTask<long> CreateStockRecordAsync(DateOnly date, int productId)
|
||||
{
|
||||
var ret = await this.database.SingleOrDefaultAsync<StockTable>(
|
||||
$"SELECT * FROM stocks WHERE date = @0 AND product_id = @1",
|
||||
date,
|
||||
productId
|
||||
).ConfigureAwait(false);
|
||||
if (ret is object)
|
||||
{
|
||||
return ret.StockId;
|
||||
}
|
||||
|
||||
var model = new StockTable()
|
||||
{
|
||||
Date = date,
|
||||
ProductId = productId,
|
||||
DisplayCount = 0,
|
||||
StockCount = 0,
|
||||
SaleCount = 0,
|
||||
};
|
||||
|
||||
var result = await this.database.InsertAsync(model).ConfigureAwait(false);
|
||||
|
||||
return (long) (ulong) result;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
this.database.Dispose();
|
||||
}
|
||||
|
||||
public async ValueTask<IEnumerable<ProductTable>> FetchProductsAsync()
|
||||
{
|
||||
var ret = await this.database.FetchAsync<ProductTable>().ConfigureAwait(false);
|
||||
return ret;
|
||||
}
|
||||
|
||||
public async ValueTask<ProductTable?> FetchProductByIdAsync(int id)
|
||||
{
|
||||
var ret = await this.database.SingleOrDefaultAsync<ProductTable>(
|
||||
$"SELECT * FROM products WHERE product_id = @0",
|
||||
id
|
||||
).ConfigureAwait(false);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
public async ValueTask<IEnumerable<StockTable>> FetchStockRecordByIdAsync(int productId)
|
||||
{
|
||||
var ret = await this.database.FetchAsync<StockTable>(
|
||||
$"SELECT * FROM stocks WHERE product_id = @0 ORDER BY date DESC",
|
||||
productId
|
||||
).ConfigureAwait(false);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
public async ValueTask<bool> UpdateDisplayCountAsync(long stockId, int displayCount)
|
||||
{
|
||||
var ret = await this.database.ExecuteAsync(
|
||||
$"UPDATE stocks SET display_count = @0 WHERE stock_id = @1",
|
||||
displayCount,
|
||||
stockId
|
||||
).ConfigureAwait(false);
|
||||
|
||||
return ret > 0;
|
||||
}
|
||||
|
||||
public async ValueTask<bool> UpdateSaleCountAsync(long stockId, int saleCount)
|
||||
{
|
||||
var ret = await this.database.ExecuteAsync(
|
||||
$"UPDATE stocks SET sale_count = @0 WHERE stock_id = @1",
|
||||
saleCount,
|
||||
stockId
|
||||
).ConfigureAwait(false);
|
||||
|
||||
return ret > 0;
|
||||
}
|
||||
|
||||
public async ValueTask<bool> UpdateStockCountAsync(long stockId, int stockCount)
|
||||
{
|
||||
var ret = await this.database.ExecuteAsync(
|
||||
$"UPDATE stocks SET stock_count = @0 WHERE stock_id = @1",
|
||||
stockCount,
|
||||
stockId
|
||||
).ConfigureAwait(false);
|
||||
|
||||
return ret > 0;
|
||||
}
|
||||
}
|
||||
12
StockingData/Lib/IO/Repositories/RepositoryFactory.cs
Normal file
12
StockingData/Lib/IO/Repositories/RepositoryFactory.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using StockingData.Lib.IO.Databases;
|
||||
|
||||
namespace StockingData.Lib.IO.Repositories;
|
||||
|
||||
public static class RepositoryFactory
|
||||
{
|
||||
public static IStockRepository CreateStockRepository()
|
||||
{
|
||||
var db = DatabaseContext.GetDatabase();
|
||||
return new MySqlStockRepository(db);
|
||||
}
|
||||
}
|
||||
10
StockingData/Lib/Math/AverageMath.cs
Normal file
10
StockingData/Lib/Math/AverageMath.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace StockingData.Lib.Math;
|
||||
|
||||
public static class AverageMath
|
||||
{
|
||||
public static double Average(IEnumerable<int> values)
|
||||
{
|
||||
double sum = values.Sum();
|
||||
return sum / values.Count();
|
||||
}
|
||||
}
|
||||
15
StockingData/Models/ApplyProductModel.cs
Normal file
15
StockingData/Models/ApplyProductModel.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace StockingData.Models;
|
||||
|
||||
public class ApplyProductModel
|
||||
{
|
||||
[Required]
|
||||
public string? Date { get; set; }
|
||||
|
||||
[Required]
|
||||
public IEnumerable<int> Products { get; set; }
|
||||
|
||||
[Required]
|
||||
public IEnumerable<int> ProductCounts { get; set; }
|
||||
}
|
||||
12
StockingData/Models/CreateProductModel.cs
Normal file
12
StockingData/Models/CreateProductModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace StockingData.Models;
|
||||
|
||||
public class CreateProductModel
|
||||
{
|
||||
[Required]
|
||||
public string? Title { get; set; }
|
||||
|
||||
[Required]
|
||||
public string? Code { get; set; }
|
||||
}
|
||||
8
StockingData/Models/ErrorViewModel.cs
Normal file
8
StockingData/Models/ErrorViewModel.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace StockingData.Models;
|
||||
|
||||
public class ErrorViewModel
|
||||
{
|
||||
public string? RequestId { get; set; }
|
||||
|
||||
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||||
}
|
||||
14
StockingData/Models/GraphViewModel.cs
Normal file
14
StockingData/Models/GraphViewModel.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using StockingData.Lib.Data;
|
||||
|
||||
namespace StockingData.Models;
|
||||
|
||||
public class GraphViewModel
|
||||
{
|
||||
public required int ProductId { get; set; }
|
||||
|
||||
public required string? Title { get; set; }
|
||||
|
||||
public required string? Code { get; set; }
|
||||
|
||||
public required IEnumerable<StockTable> Stocks { get; set; }
|
||||
}
|
||||
9
StockingData/Models/ProductModel.cs
Normal file
9
StockingData/Models/ProductModel.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace StockingData.Models;
|
||||
|
||||
public class ProductModel
|
||||
{
|
||||
public int ProductId { get; set; }
|
||||
public required string Title { get; set; }
|
||||
|
||||
public required string Code { get; set; }
|
||||
}
|
||||
31
StockingData/Program.cs
Normal file
31
StockingData/Program.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using StockingData.Lib.IO.Repositories;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
builder.Services.AddScoped<IStockRepository>(_ => RepositoryFactory.CreateStockRepository());
|
||||
|
||||
// Add services to the container.
|
||||
builder.Services.AddControllersWithViews();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (!app.Environment.IsDevelopment())
|
||||
{
|
||||
app.UseExceptionHandler("/Home/Error");
|
||||
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
||||
app.UseHsts();
|
||||
}
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
app.UseStaticFiles();
|
||||
|
||||
app.UseRouting();
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
app.MapControllerRoute(
|
||||
name: "default",
|
||||
pattern: "{controller=Home}/{action=Index}/{id?}");
|
||||
|
||||
app.Run();
|
||||
14
StockingData/StockingData.csproj
Normal file
14
StockingData/StockingData.csproj
Normal file
@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MySqlConnector" Version="2.3.7" />
|
||||
<PackageReference Include="PetaPoco.Compiled" Version="6.0.683" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
24
StockingData/StockingData.sln
Normal file
24
StockingData/StockingData.sln
Normal file
@ -0,0 +1,24 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.2.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StockingData", "StockingData.csproj", "{7C646849-1A03-7C51-B281-EC909F76CFF1}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{7C646849-1A03-7C51-B281-EC909F76CFF1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7C646849-1A03-7C51-B281-EC909F76CFF1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7C646849-1A03-7C51-B281-EC909F76CFF1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7C646849-1A03-7C51-B281-EC909F76CFF1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {BEA0D3A3-5BF9-47DE-9F4A-8249365A54F4}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
38
StockingData/Views/DisplayProducts/Register.cshtml
Normal file
38
StockingData/Views/DisplayProducts/Register.cshtml
Normal file
@ -0,0 +1,38 @@
|
||||
@{
|
||||
ViewData["Title"] = "出品数登録";
|
||||
}
|
||||
|
||||
<h1>出品数登録</h1>
|
||||
<hr class="my-4" />
|
||||
<form method="post" asp-controller="DisplayProducts" asp-action="Apply">
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-3">
|
||||
<label class="form-label" for="Date">日付</label>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<input type="date" name="Date" id="Date" class="form-control" required value="@(DateTime.Now.ToString("yyyy-MM-dd"))" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="my-4" />
|
||||
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-6">
|
||||
商品名
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
出品数
|
||||
</div>
|
||||
</div>
|
||||
<div id="records"></div>
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-6">
|
||||
<button type="button" id="AddRecord" class="btn btn-outline-info">商品追加</button>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<button type="submit" class="btn btn-success">登録</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script defer src="~/js/register.js" asp-append-version="true"></script>
|
||||
71
StockingData/Views/Graph/View.cshtml
Normal file
71
StockingData/Views/Graph/View.cshtml
Normal file
@ -0,0 +1,71 @@
|
||||
@using StockingData.Lib.Math;
|
||||
@model GraphViewModel;
|
||||
@{
|
||||
ViewData["Title"] = $"{Model.Title} ({Model.Code}) の販売情報";
|
||||
}
|
||||
|
||||
<h1>@(Model.Title) (@(Model.Code)) の販売情報</h1>
|
||||
<div class="row m-2">
|
||||
<div class="col-xl-6">
|
||||
<h2>グラフ</h2>
|
||||
<div class="graph">
|
||||
<!-- Todo graph -->
|
||||
<canvas id="chartGraph"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-6">
|
||||
<h2>平均値</h2>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-stripped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>出品数</th>
|
||||
<th>在庫数</th>
|
||||
<th>販売数</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
@(AverageMath.Average(Model.Stocks.Select(x => x.DisplayCount)))
|
||||
</td>
|
||||
<td>
|
||||
@(AverageMath.Average(Model.Stocks.Select(x => x.StockCount)))
|
||||
</td>
|
||||
<td>
|
||||
@(AverageMath.Average(Model.Stocks.Select(x => x.SaleCount)))
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<h2>実績</h2>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-stripped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>日付</th>
|
||||
<th>出品数</th>
|
||||
<th>在庫数</th>
|
||||
<th>販売数</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach(var item in Model.Stocks){
|
||||
<tr>
|
||||
<td>@(item.Date.ToShortDateString())</td>
|
||||
<td>@(item.DisplayCount)</td>
|
||||
<td>@(item.StockCount)</td>
|
||||
<td>@(item.SaleCount)</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script defer src="~/lib/chart.js/chart.js"></script>
|
||||
<script defer src="~/js/graph_view.js" asp-append-version="true"></script>
|
||||
<script type="application/json" id="chartData">@Json.Serialize(Model.Stocks)</script>
|
||||
8
StockingData/Views/Home/Index.cshtml
Normal file
8
StockingData/Views/Home/Index.cshtml
Normal file
@ -0,0 +1,8 @@
|
||||
@{
|
||||
ViewData["Title"] = "Home Page";
|
||||
}
|
||||
|
||||
<div class="text-center">
|
||||
<h1 class="display-4">Welcome</h1>
|
||||
<p>Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
|
||||
</div>
|
||||
30
StockingData/Views/Products/Create.cshtml
Normal file
30
StockingData/Views/Products/Create.cshtml
Normal file
@ -0,0 +1,30 @@
|
||||
@{
|
||||
ViewData["Title"] = "商品登録";
|
||||
}
|
||||
|
||||
<h1>商品登録</h1>
|
||||
<form method="post" asp-controller="Products" asp-action="CreateApply">
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-3">
|
||||
<label class="form-label" for="Title">商品名</label>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<input type="text" name="Title" id="Title" class="form-control" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-3">
|
||||
<label class="form-label" for="Code">JANコード</label>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<input type="text" name="Code" id="Code" class="form-control" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-3">
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<button type="submit" class="btn btn-outline-secondary">登録</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
32
StockingData/Views/Products/List.cshtml
Normal file
32
StockingData/Views/Products/List.cshtml
Normal file
@ -0,0 +1,32 @@
|
||||
@model IEnumerable<ProductModel>;
|
||||
@{
|
||||
ViewData["Title"] = "登録商品一覧";
|
||||
}
|
||||
|
||||
<h1>登録商品一覧</h1>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>商品名</th>
|
||||
<th>JANコード</th>
|
||||
<th>販売情報</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach(var item in Model)
|
||||
{
|
||||
<tr>
|
||||
<td>@(item.ProductId)</td>
|
||||
<td>@(item.Title)</td>
|
||||
<td>@(item.Code)</td>
|
||||
<td>
|
||||
<a asp-action="View" asp-controller="Graph" asp-route-id="@(item.ProductId)">販売情報</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
38
StockingData/Views/SaleProducts/Register.cshtml
Normal file
38
StockingData/Views/SaleProducts/Register.cshtml
Normal file
@ -0,0 +1,38 @@
|
||||
@{
|
||||
ViewData["Title"] = "販売個数登録";
|
||||
}
|
||||
|
||||
<h1>販売個数登録</h1>
|
||||
<hr class="my-4" />
|
||||
<form method="post" asp-controller="SaleProducts" asp-action="Apply">
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-3">
|
||||
<label class="form-label" for="Date">日付</label>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<input type="date" name="Date" id="Date" class="form-control" required value="@(DateTime.Now.ToString("yyyy-MM-dd"))" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="my-4" />
|
||||
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-6">
|
||||
商品名
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
販売数
|
||||
</div>
|
||||
</div>
|
||||
<div id="records"></div>
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-6">
|
||||
<button type="button" id="AddRecord" class="btn btn-outline-info">商品追加</button>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<button type="submit" class="btn btn-success">登録</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script defer src="~/js/register.js" asp-append-version="true"></script>
|
||||
25
StockingData/Views/Shared/Error.cshtml
Normal file
25
StockingData/Views/Shared/Error.cshtml
Normal file
@ -0,0 +1,25 @@
|
||||
@model ErrorViewModel
|
||||
@{
|
||||
ViewData["Title"] = "Error";
|
||||
}
|
||||
|
||||
<h1 class="text-danger">Error.</h1>
|
||||
<h2 class="text-danger">An error occurred while processing your request.</h2>
|
||||
|
||||
@if (Model.ShowRequestId)
|
||||
{
|
||||
<p>
|
||||
<strong>Request ID:</strong> <code>@Model.RequestId</code>
|
||||
</p>
|
||||
}
|
||||
|
||||
<h3>Development Mode</h3>
|
||||
<p>
|
||||
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
|
||||
</p>
|
||||
<p>
|
||||
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
|
||||
It can result in displaying sensitive information from exceptions to end users.
|
||||
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
|
||||
and restarting the app.
|
||||
</p>
|
||||
61
StockingData/Views/Shared/_Layout.cshtml
Normal file
61
StockingData/Views/Shared/_Layout.cshtml
Normal file
@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ja">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>@ViewData["Title"] - 720品出しデータ</title>
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/StockingData.styles.css" asp-append-version="true" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">720品出しデータ</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
|
||||
<ul class="navbar-nav flex-grow-1">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">ホーム</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Products" asp-action="Create">商品登録</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="DisplayProducts" asp-action="Register">出品数登録</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="StockProducts" asp-action="Register">在庫数登録</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="SaleProducts" asp-action="Register">販売個数登録</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Products" asp-action="List">商品一覧</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<div class="container">
|
||||
<main role="main" class="pb-3">
|
||||
@RenderBody()
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<footer class="border-top footer text-muted">
|
||||
<div class="container">
|
||||
© 2025 - 720品出しデータ
|
||||
</div>
|
||||
</footer>
|
||||
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
||||
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
@await RenderSectionAsync("Scripts", required: false)
|
||||
</body>
|
||||
</html>
|
||||
48
StockingData/Views/Shared/_Layout.cshtml.css
Normal file
48
StockingData/Views/Shared/_Layout.cshtml.css
Normal file
@ -0,0 +1,48 @@
|
||||
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
for details on configuring this project to bundle and minify static web assets. */
|
||||
|
||||
a.navbar-brand {
|
||||
white-space: normal;
|
||||
text-align: center;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0077cc;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.border-top {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.border-bottom {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.box-shadow {
|
||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||
}
|
||||
|
||||
button.accept-policy {
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
line-height: 60px;
|
||||
}
|
||||
@ -0,0 +1,2 @@
|
||||
<script src="~/lib/jquery-validation/dist/jquery.validate.min.js"></script>
|
||||
<script src="~/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"></script>
|
||||
38
StockingData/Views/StockProducts/Register.cshtml
Normal file
38
StockingData/Views/StockProducts/Register.cshtml
Normal file
@ -0,0 +1,38 @@
|
||||
@{
|
||||
ViewData["Title"] = "在庫数登録";
|
||||
}
|
||||
|
||||
<h1>在庫数登録</h1>
|
||||
<hr class="my-4" />
|
||||
<form method="post" asp-controller="StockProducts" asp-action="Apply">
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-3">
|
||||
<label class="form-label" for="Date">日付</label>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<input type="date" name="Date" id="Date" class="form-control" required value="@(DateTime.Now.ToString("yyyy-MM-dd"))" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="my-4" />
|
||||
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-6">
|
||||
商品名
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
在庫数
|
||||
</div>
|
||||
</div>
|
||||
<div id="records"></div>
|
||||
<div class="form-group row m-2">
|
||||
<div class="col-md-6">
|
||||
<button type="button" id="AddRecord" class="btn btn-outline-info">商品追加</button>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<button type="submit" class="btn btn-success">登録</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script defer src="~/js/register.js" asp-append-version="true"></script>
|
||||
3
StockingData/Views/_ViewImports.cshtml
Normal file
3
StockingData/Views/_ViewImports.cshtml
Normal file
@ -0,0 +1,3 @@
|
||||
@using StockingData
|
||||
@using StockingData.Models
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
3
StockingData/Views/_ViewStart.cshtml
Normal file
3
StockingData/Views/_ViewStart.cshtml
Normal file
@ -0,0 +1,3 @@
|
||||
@{
|
||||
Layout = "_Layout";
|
||||
}
|
||||
8
StockingData/appsettings.Development.json
Normal file
8
StockingData/appsettings.Development.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
10
StockingData/appsettings.json
Normal file
10
StockingData/appsettings.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"Urls": "http://*:5000",
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
22
StockingData/wwwroot/css/site.css
Normal file
22
StockingData/wwwroot/css/site.css
Normal file
@ -0,0 +1,22 @@
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
|
||||
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
||||
}
|
||||
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
BIN
StockingData/wwwroot/favicon.ico
Normal file
BIN
StockingData/wwwroot/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.3 KiB |
44
StockingData/wwwroot/js/graph_view.js
Normal file
44
StockingData/wwwroot/js/graph_view.js
Normal file
@ -0,0 +1,44 @@
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const ctx = document.getElementById('chartGraph');
|
||||
const rawData = document.getElementById('chartData')?.textContent;
|
||||
const data = JSON.parse(rawData);
|
||||
console.log(data);
|
||||
|
||||
const chart = new Chart(
|
||||
ctx,
|
||||
{
|
||||
type: "line",
|
||||
data: {
|
||||
labels: data.map(item => item.date),
|
||||
datasets: [
|
||||
{
|
||||
label: "出品数",
|
||||
data: data.map(item => item.displayCount),
|
||||
borderWidth: 3,
|
||||
borderColor: "rgba(255, 0, 0, 1)",
|
||||
},
|
||||
{
|
||||
label: "在庫数",
|
||||
data: data.map(item => item.stockCount),
|
||||
borderWidth: 3,
|
||||
borderColor: "rgb(25, 0, 255)",
|
||||
},
|
||||
{
|
||||
label: "販売数",
|
||||
data: data.map(item => item.saleCount),
|
||||
borderWidth: 3,
|
||||
borderColor: "rgb(0, 255, 136)",
|
||||
},
|
||||
]
|
||||
},
|
||||
options: {
|
||||
scales: {
|
||||
y: {
|
||||
beginAtZero: true,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
});
|
||||
70
StockingData/wwwroot/js/register.js
Normal file
70
StockingData/wwwroot/js/register.js
Normal file
@ -0,0 +1,70 @@
|
||||
document.addEventListener('DOMContentLoaded', async () => {
|
||||
const addRecordButton = document.getElementById('AddRecord');
|
||||
const records = document.getElementById('records');
|
||||
|
||||
const fetchProducts = async () => {
|
||||
const response = await fetch('/Products/ListJson');
|
||||
const json = await response.json();
|
||||
return json;
|
||||
};
|
||||
|
||||
const products = await fetchProducts();
|
||||
|
||||
let recordCount = 0;
|
||||
const buildRecord = () => {
|
||||
recordCount++;
|
||||
|
||||
const div = document.createElement('div');
|
||||
div.classList.add('form-group');
|
||||
div.classList.add('row');
|
||||
div.classList.add('m-2');
|
||||
|
||||
const leftDiv = document.createElement('div');
|
||||
leftDiv.classList.add('col-md-6');
|
||||
|
||||
const select = document.createElement('select');
|
||||
select.classList.add('form-control');
|
||||
select.name = "Products[]";
|
||||
select.required = true;
|
||||
leftDiv.append(select);
|
||||
|
||||
{
|
||||
const option = document.createElement('option');
|
||||
option.value = "";
|
||||
option.textContent = `選択してください`;
|
||||
select.append(option);
|
||||
}
|
||||
|
||||
for (const product of products) {
|
||||
const option = document.createElement('option');
|
||||
option.value = product.productId;
|
||||
option.textContent = product.title;
|
||||
select.append(option);
|
||||
}
|
||||
|
||||
const rightDiv = document.createElement('div');
|
||||
rightDiv.classList.add('col-md-6');
|
||||
|
||||
const input = document.createElement('input');
|
||||
input.classList.add('form-control');
|
||||
input.name = "ProductCounts[]";
|
||||
input.type = "number";
|
||||
input.required = true;
|
||||
input.value = "0";
|
||||
rightDiv.append(input);
|
||||
|
||||
div.append(leftDiv, rightDiv);
|
||||
|
||||
return div;
|
||||
};
|
||||
|
||||
|
||||
records.append(buildRecord());
|
||||
|
||||
addRecordButton?.addEventListener('click', () => {
|
||||
if (recordCount === products.length) {
|
||||
return;
|
||||
}
|
||||
records.append(buildRecord());
|
||||
});
|
||||
});
|
||||
4
StockingData/wwwroot/js/site.js
Normal file
4
StockingData/wwwroot/js/site.js
Normal file
@ -0,0 +1,4 @@
|
||||
// Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
// for details on configuring this project to bundle and minify static web assets.
|
||||
|
||||
// Write your JavaScript code.
|
||||
22
StockingData/wwwroot/lib/bootstrap/LICENSE
Normal file
22
StockingData/wwwroot/lib/bootstrap/LICENSE
Normal file
@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2011-2021 Twitter, Inc.
|
||||
Copyright (c) 2011-2021 The Bootstrap Authors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
4997
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css
vendored
Normal file
4997
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
4996
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css
vendored
Normal file
4996
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
427
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css
vendored
Normal file
427
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css
vendored
Normal file
@ -0,0 +1,427 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v5.1.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2021 The Bootstrap Authors
|
||||
* Copyright 2011-2021 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
:root {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: var(--bs-body-font-family);
|
||||
font-size: var(--bs-body-font-size);
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: var(--bs-body-color);
|
||||
text-align: var(--bs-body-text-align);
|
||||
background-color: var(--bs-body-bg);
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 1rem 0;
|
||||
color: inherit;
|
||||
background-color: currentColor;
|
||||
border: 0;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
hr:not([size]) {
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
h6, h5, h4, h3, h2, h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: calc(1.375rem + 1.5vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: calc(1.325rem + 0.9vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: calc(1.3rem + 0.6vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title],
|
||||
abbr[data-bs-original-title] {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
-webkit-text-decoration-skip-ink: none;
|
||||
text-decoration-skip-ink: none;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: 0.5rem;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.875em;
|
||||
}
|
||||
|
||||
mark {
|
||||
padding: 0.2em;
|
||||
background-color: #fcf8e3;
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 0.75em;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0d6efd;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
color: #0a58ca;
|
||||
}
|
||||
|
||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
font-size: 1em;
|
||||
direction: ltr /* rtl:ignore */;
|
||||
unicode-bidi: bidi-override;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
pre code {
|
||||
font-size: inherit;
|
||||
color: inherit;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 0.875em;
|
||||
color: #d63384;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a > code {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
kbd {
|
||||
padding: 0.2rem 0.4rem;
|
||||
font-size: 0.875em;
|
||||
color: #fff;
|
||||
background-color: #212529;
|
||||
border-radius: 0.2rem;
|
||||
}
|
||||
kbd kbd {
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img,
|
||||
svg {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table {
|
||||
caption-side: bottom;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
color: #6c757d;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
text-align: -webkit-match-parent;
|
||||
}
|
||||
|
||||
thead,
|
||||
tbody,
|
||||
tfoot,
|
||||
tr,
|
||||
td,
|
||||
th {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
[role=button] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
select {
|
||||
word-wrap: normal;
|
||||
}
|
||||
select:disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[list]::-webkit-calendar-picker-indicator {
|
||||
display: none;
|
||||
}
|
||||
|
||||
button,
|
||||
[type=button],
|
||||
[type=reset],
|
||||
[type=submit] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
button:not(:disabled),
|
||||
[type=button]:not(:disabled),
|
||||
[type=reset]:not(:disabled),
|
||||
[type=submit]:not(:disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
float: left;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
line-height: inherit;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
legend {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
legend + * {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit-fields-wrapper,
|
||||
::-webkit-datetime-edit-text,
|
||||
::-webkit-datetime-edit-minute,
|
||||
::-webkit-datetime-edit-hour-field,
|
||||
::-webkit-datetime-edit-day-field,
|
||||
::-webkit-datetime-edit-month-field,
|
||||
::-webkit-datetime-edit-year-field {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-inner-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type=search] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: textfield;
|
||||
}
|
||||
|
||||
/* rtl:raw:
|
||||
[type="tel"],
|
||||
[type="url"],
|
||||
[type="email"],
|
||||
[type="number"] {
|
||||
direction: ltr;
|
||||
}
|
||||
*/
|
||||
::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-color-swatch-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::file-selector-button {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
||||
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
8
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css
vendored
Normal file
8
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v5.1.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2021 The Bootstrap Authors
|
||||
* Copyright 2011-2021 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}
|
||||
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
|
||||
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
424
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css
vendored
Normal file
424
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css
vendored
Normal file
@ -0,0 +1,424 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v5.1.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2021 The Bootstrap Authors
|
||||
* Copyright 2011-2021 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
:root {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: var(--bs-body-font-family);
|
||||
font-size: var(--bs-body-font-size);
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: var(--bs-body-color);
|
||||
text-align: var(--bs-body-text-align);
|
||||
background-color: var(--bs-body-bg);
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 1rem 0;
|
||||
color: inherit;
|
||||
background-color: currentColor;
|
||||
border: 0;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
hr:not([size]) {
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
h6, h5, h4, h3, h2, h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: calc(1.375rem + 1.5vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: calc(1.325rem + 0.9vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: calc(1.3rem + 0.6vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title],
|
||||
abbr[data-bs-original-title] {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
-webkit-text-decoration-skip-ink: none;
|
||||
text-decoration-skip-ink: none;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
padding-right: 2rem;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: 0.5rem;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.875em;
|
||||
}
|
||||
|
||||
mark {
|
||||
padding: 0.2em;
|
||||
background-color: #fcf8e3;
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 0.75em;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0d6efd;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
color: #0a58ca;
|
||||
}
|
||||
|
||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
font-size: 1em;
|
||||
direction: ltr ;
|
||||
unicode-bidi: bidi-override;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
pre code {
|
||||
font-size: inherit;
|
||||
color: inherit;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 0.875em;
|
||||
color: #d63384;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a > code {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
kbd {
|
||||
padding: 0.2rem 0.4rem;
|
||||
font-size: 0.875em;
|
||||
color: #fff;
|
||||
background-color: #212529;
|
||||
border-radius: 0.2rem;
|
||||
}
|
||||
kbd kbd {
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img,
|
||||
svg {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table {
|
||||
caption-side: bottom;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
color: #6c757d;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
text-align: -webkit-match-parent;
|
||||
}
|
||||
|
||||
thead,
|
||||
tbody,
|
||||
tfoot,
|
||||
tr,
|
||||
td,
|
||||
th {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
[role=button] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
select {
|
||||
word-wrap: normal;
|
||||
}
|
||||
select:disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[list]::-webkit-calendar-picker-indicator {
|
||||
display: none;
|
||||
}
|
||||
|
||||
button,
|
||||
[type=button],
|
||||
[type=reset],
|
||||
[type=submit] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
button:not(:disabled),
|
||||
[type=button]:not(:disabled),
|
||||
[type=reset]:not(:disabled),
|
||||
[type=submit]:not(:disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
float: right;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
line-height: inherit;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
legend {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
legend + * {
|
||||
clear: right;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit-fields-wrapper,
|
||||
::-webkit-datetime-edit-text,
|
||||
::-webkit-datetime-edit-minute,
|
||||
::-webkit-datetime-edit-hour-field,
|
||||
::-webkit-datetime-edit-day-field,
|
||||
::-webkit-datetime-edit-month-field,
|
||||
::-webkit-datetime-edit-year-field {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-inner-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type=search] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: textfield;
|
||||
}
|
||||
|
||||
[type="tel"],
|
||||
[type="url"],
|
||||
[type="email"],
|
||||
[type="number"] {
|
||||
direction: ltr;
|
||||
}
|
||||
::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-color-swatch-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::file-selector-button {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-reboot.rtl.css.map */
|
||||
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
8
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css
vendored
Normal file
8
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v5.1.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2021 The Bootstrap Authors
|
||||
* Copyright 2011-2021 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}
|
||||
/*# sourceMappingURL=bootstrap-reboot.rtl.min.css.map */
|
||||
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
4866
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css
vendored
Normal file
4866
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
4857
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css
vendored
Normal file
4857
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
11221
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.css
vendored
Normal file
11221
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
11197
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css
vendored
Normal file
11197
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
6780
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js
vendored
Normal file
6780
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
4977
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js
vendored
Normal file
4977
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
5026
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.js
vendored
Normal file
5026
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js
vendored
Normal file
7
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map
vendored
Normal file
1
StockingData/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
20
StockingData/wwwroot/lib/chart.js/chart.js
Normal file
20
StockingData/wwwroot/lib/chart.js/chart.js
Normal file
File diff suppressed because one or more lines are too long
@ -0,0 +1,23 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) .NET Foundation and Contributors
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
435
StockingData/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
vendored
Normal file
435
StockingData/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
vendored
Normal file
@ -0,0 +1,435 @@
|
||||
/**
|
||||
* @license
|
||||
* Unobtrusive validation support library for jQuery and jQuery Validate
|
||||
* Copyright (c) .NET Foundation. All rights reserved.
|
||||
* Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
* @version v4.0.0
|
||||
*/
|
||||
|
||||
/*jslint white: true, browser: true, onevar: true, undef: true, nomen: true, eqeqeq: true, plusplus: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: false */
|
||||
/*global document: false, jQuery: false */
|
||||
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define("jquery.validate.unobtrusive", ['jquery-validation'], factory);
|
||||
} else if (typeof module === 'object' && module.exports) {
|
||||
// CommonJS-like environments that support module.exports
|
||||
module.exports = factory(require('jquery-validation'));
|
||||
} else {
|
||||
// Browser global
|
||||
jQuery.validator.unobtrusive = factory(jQuery);
|
||||
}
|
||||
}(function ($) {
|
||||
var $jQval = $.validator,
|
||||
adapters,
|
||||
data_validation = "unobtrusiveValidation";
|
||||
|
||||
function setValidationValues(options, ruleName, value) {
|
||||
options.rules[ruleName] = value;
|
||||
if (options.message) {
|
||||
options.messages[ruleName] = options.message;
|
||||
}
|
||||
}
|
||||
|
||||
function splitAndTrim(value) {
|
||||
return value.replace(/^\s+|\s+$/g, "").split(/\s*,\s*/g);
|
||||
}
|
||||
|
||||
function escapeAttributeValue(value) {
|
||||
// As mentioned on http://api.jquery.com/category/selectors/
|
||||
return value.replace(/([!"#$%&'()*+,./:;<=>?@\[\\\]^`{|}~])/g, "\\$1");
|
||||
}
|
||||
|
||||
function getModelPrefix(fieldName) {
|
||||
return fieldName.substr(0, fieldName.lastIndexOf(".") + 1);
|
||||
}
|
||||
|
||||
function appendModelPrefix(value, prefix) {
|
||||
if (value.indexOf("*.") === 0) {
|
||||
value = value.replace("*.", prefix);
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
function onError(error, inputElement) { // 'this' is the form element
|
||||
var container = $(this).find("[data-valmsg-for='" + escapeAttributeValue(inputElement[0].name) + "']"),
|
||||
replaceAttrValue = container.attr("data-valmsg-replace"),
|
||||
replace = replaceAttrValue ? $.parseJSON(replaceAttrValue) !== false : null;
|
||||
|
||||
container.removeClass("field-validation-valid").addClass("field-validation-error");
|
||||
error.data("unobtrusiveContainer", container);
|
||||
|
||||
if (replace) {
|
||||
container.empty();
|
||||
error.removeClass("input-validation-error").appendTo(container);
|
||||
}
|
||||
else {
|
||||
error.hide();
|
||||
}
|
||||
}
|
||||
|
||||
function onErrors(event, validator) { // 'this' is the form element
|
||||
var container = $(this).find("[data-valmsg-summary=true]"),
|
||||
list = container.find("ul");
|
||||
|
||||
if (list && list.length && validator.errorList.length) {
|
||||
list.empty();
|
||||
container.addClass("validation-summary-errors").removeClass("validation-summary-valid");
|
||||
|
||||
$.each(validator.errorList, function () {
|
||||
$("<li />").html(this.message).appendTo(list);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function onSuccess(error) { // 'this' is the form element
|
||||
var container = error.data("unobtrusiveContainer");
|
||||
|
||||
if (container) {
|
||||
var replaceAttrValue = container.attr("data-valmsg-replace"),
|
||||
replace = replaceAttrValue ? $.parseJSON(replaceAttrValue) : null;
|
||||
|
||||
container.addClass("field-validation-valid").removeClass("field-validation-error");
|
||||
error.removeData("unobtrusiveContainer");
|
||||
|
||||
if (replace) {
|
||||
container.empty();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function onReset(event) { // 'this' is the form element
|
||||
var $form = $(this),
|
||||
key = '__jquery_unobtrusive_validation_form_reset';
|
||||
if ($form.data(key)) {
|
||||
return;
|
||||
}
|
||||
// Set a flag that indicates we're currently resetting the form.
|
||||
$form.data(key, true);
|
||||
try {
|
||||
$form.data("validator").resetForm();
|
||||
} finally {
|
||||
$form.removeData(key);
|
||||
}
|
||||
|
||||
$form.find(".validation-summary-errors")
|
||||
.addClass("validation-summary-valid")
|
||||
.removeClass("validation-summary-errors");
|
||||
$form.find(".field-validation-error")
|
||||
.addClass("field-validation-valid")
|
||||
.removeClass("field-validation-error")
|
||||
.removeData("unobtrusiveContainer")
|
||||
.find(">*") // If we were using valmsg-replace, get the underlying error
|
||||
.removeData("unobtrusiveContainer");
|
||||
}
|
||||
|
||||
function validationInfo(form) {
|
||||
var $form = $(form),
|
||||
result = $form.data(data_validation),
|
||||
onResetProxy = $.proxy(onReset, form),
|
||||
defaultOptions = $jQval.unobtrusive.options || {},
|
||||
execInContext = function (name, args) {
|
||||
var func = defaultOptions[name];
|
||||
func && $.isFunction(func) && func.apply(form, args);
|
||||
};
|
||||
|
||||
if (!result) {
|
||||
result = {
|
||||
options: { // options structure passed to jQuery Validate's validate() method
|
||||
errorClass: defaultOptions.errorClass || "input-validation-error",
|
||||
errorElement: defaultOptions.errorElement || "span",
|
||||
errorPlacement: function () {
|
||||
onError.apply(form, arguments);
|
||||
execInContext("errorPlacement", arguments);
|
||||
},
|
||||
invalidHandler: function () {
|
||||
onErrors.apply(form, arguments);
|
||||
execInContext("invalidHandler", arguments);
|
||||
},
|
||||
messages: {},
|
||||
rules: {},
|
||||
success: function () {
|
||||
onSuccess.apply(form, arguments);
|
||||
execInContext("success", arguments);
|
||||
}
|
||||
},
|
||||
attachValidation: function () {
|
||||
$form
|
||||
.off("reset." + data_validation, onResetProxy)
|
||||
.on("reset." + data_validation, onResetProxy)
|
||||
.validate(this.options);
|
||||
},
|
||||
validate: function () { // a validation function that is called by unobtrusive Ajax
|
||||
$form.validate();
|
||||
return $form.valid();
|
||||
}
|
||||
};
|
||||
$form.data(data_validation, result);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
$jQval.unobtrusive = {
|
||||
adapters: [],
|
||||
|
||||
parseElement: function (element, skipAttach) {
|
||||
/// <summary>
|
||||
/// Parses a single HTML element for unobtrusive validation attributes.
|
||||
/// </summary>
|
||||
/// <param name="element" domElement="true">The HTML element to be parsed.</param>
|
||||
/// <param name="skipAttach" type="Boolean">[Optional] true to skip attaching the
|
||||
/// validation to the form. If parsing just this single element, you should specify true.
|
||||
/// If parsing several elements, you should specify false, and manually attach the validation
|
||||
/// to the form when you are finished. The default is false.</param>
|
||||
var $element = $(element),
|
||||
form = $element.parents("form")[0],
|
||||
valInfo, rules, messages;
|
||||
|
||||
if (!form) { // Cannot do client-side validation without a form
|
||||
return;
|
||||
}
|
||||
|
||||
valInfo = validationInfo(form);
|
||||
valInfo.options.rules[element.name] = rules = {};
|
||||
valInfo.options.messages[element.name] = messages = {};
|
||||
|
||||
$.each(this.adapters, function () {
|
||||
var prefix = "data-val-" + this.name,
|
||||
message = $element.attr(prefix),
|
||||
paramValues = {};
|
||||
|
||||
if (message !== undefined) { // Compare against undefined, because an empty message is legal (and falsy)
|
||||
prefix += "-";
|
||||
|
||||
$.each(this.params, function () {
|
||||
paramValues[this] = $element.attr(prefix + this);
|
||||
});
|
||||
|
||||
this.adapt({
|
||||
element: element,
|
||||
form: form,
|
||||
message: message,
|
||||
params: paramValues,
|
||||
rules: rules,
|
||||
messages: messages
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
$.extend(rules, { "__dummy__": true });
|
||||
|
||||
if (!skipAttach) {
|
||||
valInfo.attachValidation();
|
||||
}
|
||||
},
|
||||
|
||||
parse: function (selector) {
|
||||
/// <summary>
|
||||
/// Parses all the HTML elements in the specified selector. It looks for input elements decorated
|
||||
/// with the [data-val=true] attribute value and enables validation according to the data-val-*
|
||||
/// attribute values.
|
||||
/// </summary>
|
||||
/// <param name="selector" type="String">Any valid jQuery selector.</param>
|
||||
|
||||
// $forms includes all forms in selector's DOM hierarchy (parent, children and self) that have at least one
|
||||
// element with data-val=true
|
||||
var $selector = $(selector),
|
||||
$forms = $selector.parents()
|
||||
.addBack()
|
||||
.filter("form")
|
||||
.add($selector.find("form"))
|
||||
.has("[data-val=true]");
|
||||
|
||||
$selector.find("[data-val=true]").each(function () {
|
||||
$jQval.unobtrusive.parseElement(this, true);
|
||||
});
|
||||
|
||||
$forms.each(function () {
|
||||
var info = validationInfo(this);
|
||||
if (info) {
|
||||
info.attachValidation();
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
adapters = $jQval.unobtrusive.adapters;
|
||||
|
||||
adapters.add = function (adapterName, params, fn) {
|
||||
/// <summary>Adds a new adapter to convert unobtrusive HTML into a jQuery Validate validation.</summary>
|
||||
/// <param name="adapterName" type="String">The name of the adapter to be added. This matches the name used
|
||||
/// in the data-val-nnnn HTML attribute (where nnnn is the adapter name).</param>
|
||||
/// <param name="params" type="Array" optional="true">[Optional] An array of parameter names (strings) that will
|
||||
/// be extracted from the data-val-nnnn-mmmm HTML attributes (where nnnn is the adapter name, and
|
||||
/// mmmm is the parameter name).</param>
|
||||
/// <param name="fn" type="Function">The function to call, which adapts the values from the HTML
|
||||
/// attributes into jQuery Validate rules and/or messages.</param>
|
||||
/// <returns type="jQuery.validator.unobtrusive.adapters" />
|
||||
if (!fn) { // Called with no params, just a function
|
||||
fn = params;
|
||||
params = [];
|
||||
}
|
||||
this.push({ name: adapterName, params: params, adapt: fn });
|
||||
return this;
|
||||
};
|
||||
|
||||
adapters.addBool = function (adapterName, ruleName) {
|
||||
/// <summary>Adds a new adapter to convert unobtrusive HTML into a jQuery Validate validation, where
|
||||
/// the jQuery Validate validation rule has no parameter values.</summary>
|
||||
/// <param name="adapterName" type="String">The name of the adapter to be added. This matches the name used
|
||||
/// in the data-val-nnnn HTML attribute (where nnnn is the adapter name).</param>
|
||||
/// <param name="ruleName" type="String" optional="true">[Optional] The name of the jQuery Validate rule. If not provided, the value
|
||||
/// of adapterName will be used instead.</param>
|
||||
/// <returns type="jQuery.validator.unobtrusive.adapters" />
|
||||
return this.add(adapterName, function (options) {
|
||||
setValidationValues(options, ruleName || adapterName, true);
|
||||
});
|
||||
};
|
||||
|
||||
adapters.addMinMax = function (adapterName, minRuleName, maxRuleName, minMaxRuleName, minAttribute, maxAttribute) {
|
||||
/// <summary>Adds a new adapter to convert unobtrusive HTML into a jQuery Validate validation, where
|
||||
/// the jQuery Validate validation has three potential rules (one for min-only, one for max-only, and
|
||||
/// one for min-and-max). The HTML parameters are expected to be named -min and -max.</summary>
|
||||
/// <param name="adapterName" type="String">The name of the adapter to be added. This matches the name used
|
||||
/// in the data-val-nnnn HTML attribute (where nnnn is the adapter name).</param>
|
||||
/// <param name="minRuleName" type="String">The name of the jQuery Validate rule to be used when you only
|
||||
/// have a minimum value.</param>
|
||||
/// <param name="maxRuleName" type="String">The name of the jQuery Validate rule to be used when you only
|
||||
/// have a maximum value.</param>
|
||||
/// <param name="minMaxRuleName" type="String">The name of the jQuery Validate rule to be used when you
|
||||
/// have both a minimum and maximum value.</param>
|
||||
/// <param name="minAttribute" type="String" optional="true">[Optional] The name of the HTML attribute that
|
||||
/// contains the minimum value. The default is "min".</param>
|
||||
/// <param name="maxAttribute" type="String" optional="true">[Optional] The name of the HTML attribute that
|
||||
/// contains the maximum value. The default is "max".</param>
|
||||
/// <returns type="jQuery.validator.unobtrusive.adapters" />
|
||||
return this.add(adapterName, [minAttribute || "min", maxAttribute || "max"], function (options) {
|
||||
var min = options.params.min,
|
||||
max = options.params.max;
|
||||
|
||||
if (min && max) {
|
||||
setValidationValues(options, minMaxRuleName, [min, max]);
|
||||
}
|
||||
else if (min) {
|
||||
setValidationValues(options, minRuleName, min);
|
||||
}
|
||||
else if (max) {
|
||||
setValidationValues(options, maxRuleName, max);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
adapters.addSingleVal = function (adapterName, attribute, ruleName) {
|
||||
/// <summary>Adds a new adapter to convert unobtrusive HTML into a jQuery Validate validation, where
|
||||
/// the jQuery Validate validation rule has a single value.</summary>
|
||||
/// <param name="adapterName" type="String">The name of the adapter to be added. This matches the name used
|
||||
/// in the data-val-nnnn HTML attribute(where nnnn is the adapter name).</param>
|
||||
/// <param name="attribute" type="String">[Optional] The name of the HTML attribute that contains the value.
|
||||
/// The default is "val".</param>
|
||||
/// <param name="ruleName" type="String" optional="true">[Optional] The name of the jQuery Validate rule. If not provided, the value
|
||||
/// of adapterName will be used instead.</param>
|
||||
/// <returns type="jQuery.validator.unobtrusive.adapters" />
|
||||
return this.add(adapterName, [attribute || "val"], function (options) {
|
||||
setValidationValues(options, ruleName || adapterName, options.params[attribute]);
|
||||
});
|
||||
};
|
||||
|
||||
$jQval.addMethod("__dummy__", function (value, element, params) {
|
||||
return true;
|
||||
});
|
||||
|
||||
$jQval.addMethod("regex", function (value, element, params) {
|
||||
var match;
|
||||
if (this.optional(element)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
match = new RegExp(params).exec(value);
|
||||
return (match && (match.index === 0) && (match[0].length === value.length));
|
||||
});
|
||||
|
||||
$jQval.addMethod("nonalphamin", function (value, element, nonalphamin) {
|
||||
var match;
|
||||
if (nonalphamin) {
|
||||
match = value.match(/\W/g);
|
||||
match = match && match.length >= nonalphamin;
|
||||
}
|
||||
return match;
|
||||
});
|
||||
|
||||
if ($jQval.methods.extension) {
|
||||
adapters.addSingleVal("accept", "mimtype");
|
||||
adapters.addSingleVal("extension", "extension");
|
||||
} else {
|
||||
// for backward compatibility, when the 'extension' validation method does not exist, such as with versions
|
||||
// of JQuery Validation plugin prior to 1.10, we should use the 'accept' method for
|
||||
// validating the extension, and ignore mime-type validations as they are not supported.
|
||||
adapters.addSingleVal("extension", "extension", "accept");
|
||||
}
|
||||
|
||||
adapters.addSingleVal("regex", "pattern");
|
||||
adapters.addBool("creditcard").addBool("date").addBool("digits").addBool("email").addBool("number").addBool("url");
|
||||
adapters.addMinMax("length", "minlength", "maxlength", "rangelength").addMinMax("range", "min", "max", "range");
|
||||
adapters.addMinMax("minlength", "minlength").addMinMax("maxlength", "minlength", "maxlength");
|
||||
adapters.add("equalto", ["other"], function (options) {
|
||||
var prefix = getModelPrefix(options.element.name),
|
||||
other = options.params.other,
|
||||
fullOtherName = appendModelPrefix(other, prefix),
|
||||
element = $(options.form).find(":input").filter("[name='" + escapeAttributeValue(fullOtherName) + "']")[0];
|
||||
|
||||
setValidationValues(options, "equalTo", element);
|
||||
});
|
||||
adapters.add("required", function (options) {
|
||||
// jQuery Validate equates "required" with "mandatory" for checkbox elements
|
||||
if (options.element.tagName.toUpperCase() !== "INPUT" || options.element.type.toUpperCase() !== "CHECKBOX") {
|
||||
setValidationValues(options, "required", true);
|
||||
}
|
||||
});
|
||||
adapters.add("remote", ["url", "type", "additionalfields"], function (options) {
|
||||
var value = {
|
||||
url: options.params.url,
|
||||
type: options.params.type || "GET",
|
||||
data: {}
|
||||
},
|
||||
prefix = getModelPrefix(options.element.name);
|
||||
|
||||
$.each(splitAndTrim(options.params.additionalfields || options.element.name), function (i, fieldName) {
|
||||
var paramName = appendModelPrefix(fieldName, prefix);
|
||||
value.data[paramName] = function () {
|
||||
var field = $(options.form).find(":input").filter("[name='" + escapeAttributeValue(paramName) + "']");
|
||||
// For checkboxes and radio buttons, only pick up values from checked fields.
|
||||
if (field.is(":checkbox")) {
|
||||
return field.filter(":checked").val() || field.filter(":hidden").val() || '';
|
||||
}
|
||||
else if (field.is(":radio")) {
|
||||
return field.filter(":checked").val() || '';
|
||||
}
|
||||
return field.val();
|
||||
};
|
||||
});
|
||||
|
||||
setValidationValues(options, "remote", value);
|
||||
});
|
||||
adapters.add("password", ["min", "nonalphamin", "regex"], function (options) {
|
||||
if (options.params.min) {
|
||||
setValidationValues(options, "minlength", options.params.min);
|
||||
}
|
||||
if (options.params.nonalphamin) {
|
||||
setValidationValues(options, "nonalphamin", options.params.nonalphamin);
|
||||
}
|
||||
if (options.params.regex) {
|
||||
setValidationValues(options, "regex", options.params.regex);
|
||||
}
|
||||
});
|
||||
adapters.add("fileextensions", ["extensions"], function (options) {
|
||||
setValidationValues(options, "extension", options.params.extensions);
|
||||
});
|
||||
|
||||
$(function () {
|
||||
$jQval.unobtrusive.parse(document);
|
||||
});
|
||||
|
||||
return $jQval.unobtrusive;
|
||||
}));
|
||||
8
StockingData/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js
vendored
Normal file
8
StockingData/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
22
StockingData/wwwroot/lib/jquery-validation/LICENSE.md
Normal file
22
StockingData/wwwroot/lib/jquery-validation/LICENSE.md
Normal file
@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
=====================
|
||||
|
||||
Copyright Jörn Zaefferer
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
1512
StockingData/wwwroot/lib/jquery-validation/dist/additional-methods.js
vendored
Normal file
1512
StockingData/wwwroot/lib/jquery-validation/dist/additional-methods.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4
StockingData/wwwroot/lib/jquery-validation/dist/additional-methods.min.js
vendored
Normal file
4
StockingData/wwwroot/lib/jquery-validation/dist/additional-methods.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1661
StockingData/wwwroot/lib/jquery-validation/dist/jquery.validate.js
vendored
Normal file
1661
StockingData/wwwroot/lib/jquery-validation/dist/jquery.validate.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4
StockingData/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js
vendored
Normal file
4
StockingData/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user