Ну теперь куда не шло.

This commit is contained in:
Programmist73 2023-05-10 17:32:24 +04:00
parent e2dd2aaf7b
commit f11c5b871a
11 changed files with 80 additions and 31 deletions

View File

@ -9,7 +9,7 @@ namespace TransportCompamyMongoDBImplementer
{ {
public class DBMSContext public class DBMSContext
{ {
private const string ConnectionString = "mongodb://192.168.1.135:27017"; private const string ConnectionString = "mongodb://127.0.0.1:27017";
private const string DatabaseName = "transportcompany"; private const string DatabaseName = "transportcompany";

View File

@ -96,9 +96,9 @@ namespace TransportCompamyMongoDBImplementer.Implements
public bool InsertFromPostgres(List<TruckingViewModel> model) public bool InsertFromPostgres(List<TruckingViewModel> model)
{ {
var clientCollection = context.ConnectToMongo<Trucking>("client"); var clientCollection = context.ConnectToMongo<Client>("client");
var cargoCollection = context.ConnectToMongo<Trucking>("cargo"); var cargoCollection = context.ConnectToMongo<Cargo>("cargo");
var transportCollection = context.ConnectToMongo<Trucking>("transport"); var transportCollection = context.ConnectToMongo<Transport>("transport");
var truckingCollection = context.ConnectToMongo<Trucking>("trucking"); var truckingCollection = context.ConnectToMongo<Trucking>("trucking");
//список, который по итогу и будем вставлять //список, который по итогу и будем вставлять
@ -111,9 +111,9 @@ namespace TransportCompamyMongoDBImplementer.Implements
newTrucking.DateStart = element.DateStart; newTrucking.DateStart = element.DateStart;
newTrucking.DateEnd = element.DateEnd; newTrucking.DateEnd = element.DateEnd;
newTrucking.Price = element.Price; newTrucking.Price = element.Price;
newTrucking.Cargo = cargoCollection.Find(x => x.Cargo.TypeCargo == element.Cargo).FirstOrDefault().Id; newTrucking.Cargo = cargoCollection.Find(x => x.TypeCargo == element.Cargo).FirstOrDefault().Id;
newTrucking.Client = clientCollection.Find(x => x.Client.Email == element.ClientEmail).FirstOrDefault().Id; newTrucking.Client = clientCollection.Find(x => x.Email == element.ClientEmail).FirstOrDefault().Id;
newTrucking.Transport = transportCollection.Find(x => x.Transport.TransportType == element.TransportName).FirstOrDefault().Id; newTrucking.Transport = transportCollection.Find(x => x.TransportType == element.TransportName).FirstOrDefault().Id;
models.Add(Trucking.Create(context, newTrucking)); models.Add(Trucking.Create(context, newTrucking));
} }

View File

@ -69,7 +69,9 @@ namespace TransportCompamyMongoDBImplementer.Models
ClientName = Client == null ? string.Empty : Client.Name, ClientName = Client == null ? string.Empty : Client.Name,
ClientSurname = Client == null ? string.Empty : Client.Surname, ClientSurname = Client == null ? string.Empty : Client.Surname,
ClientPatronymic = Client == null ? string.Empty : Client.Patronymic, ClientPatronymic = Client == null ? string.Empty : Client.Patronymic,
ClientEmail = Client == null ? string.Empty : Client.Email,
TransportName = Transport == null ? string.Empty : Transport.TransportType, TransportName = Transport == null ? string.Empty : Transport.TransportType,
TypeTransportation = Transport == null ? string.Empty : Transport.TransportationType,
Cargo = Cargo == null ? string.Empty : Cargo.TypeCargo Cargo = Cargo == null ? string.Empty : Cargo.TypeCargo
}; };
} }

View File

@ -6,4 +6,13 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<PackageReference Include="MongoDB.Driver" Version="2.19.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TransportCompanyBusinessLogic\TransportCompanyBusinessLogic.csproj" />
<ProjectReference Include="..\TransportCompanyContracts\TransportCompanyContracts.csproj" />
</ItemGroup>
</Project> </Project>

View File

@ -4,4 +4,4 @@
<add key="connectToDb" value="Host=192.168.56.103;Port=6000;Database=sit;Username=elegev;Password=user"/> <add key="connectToDb" value="Host=192.168.56.103;Port=6000;Database=sit;Username=elegev;Password=user"/>
<add key="connectMongoDB" value="mongodb://127.0.0.1:27017" /> <add key="connectMongoDB" value="mongodb://127.0.0.1:27017" />
</appSettings> </appSettings>
</configuration> </configuration>

View File

@ -18,7 +18,11 @@ namespace TransportCompany
{ {
private readonly ILogger _logger; private readonly ILogger _logger;
private readonly IClientLogic _logicCl; private bool isMongo;
public bool Mongo { set { isMongo = value; } }
private readonly IClientLogic _logicCl;
private readonly ITransportLogic _logicTransport; private readonly ITransportLogic _logicTransport;
@ -82,12 +86,19 @@ namespace TransportCompany
comboBoxTransports.SelectedItem = null; comboBoxTransports.SelectedItem = null;
} }
if (viewTransportation != null) if (!isMongo)
{ {
comboBoxTypeTransportations.DisplayMember = "TransportationType"; if (viewTransportation != null)
comboBoxTypeTransportations.ValueMember = "Id"; {
comboBoxTypeTransportations.DataSource = viewTransportation; comboBoxTypeTransportations.DisplayMember = "TransportationType";
comboBoxTypeTransportations.SelectedItem = null; comboBoxTypeTransportations.ValueMember = "Id";
comboBoxTypeTransportations.DataSource = viewTransportation;
comboBoxTypeTransportations.SelectedItem = null;
}
}
else
{
comboBoxTypeTransportations.SelectedItem = "Сейчас это недоступно";
} }
} }
catch (Exception ex) catch (Exception ex)
@ -128,12 +139,15 @@ namespace TransportCompany
return; return;
} }
if (comboBoxTypeTransportations.SelectedValue == null) if (!isMongo)
{ {
MessageBox.Show("Выберите тип транспортировки", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); if (comboBoxTypeTransportations.SelectedValue == null)
{
MessageBox.Show("Выберите тип транспортировки", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return; return;
} }
}
_logger.LogInformation("Создание сводки по перевозке"); _logger.LogInformation("Создание сводки по перевозке");
@ -144,7 +158,7 @@ namespace TransportCompany
ClientId = Convert.ToInt32(comboBoxClients.SelectedValue), ClientId = Convert.ToInt32(comboBoxClients.SelectedValue),
CargoId = Convert.ToInt32(comboBoxCargos.SelectedValue), CargoId = Convert.ToInt32(comboBoxCargos.SelectedValue),
TransportId = Convert.ToInt32(comboBoxTransports.SelectedValue), TransportId = Convert.ToInt32(comboBoxTransports.SelectedValue),
TransportationId = Convert.ToInt32(comboBoxTypeTransportations.SelectedValue), TransportationId = isMongo ? 404 : Convert.ToInt32(comboBoxTypeTransportations.SelectedValue),
Price = Convert.ToInt32(textBoxPrice.Text), Price = Convert.ToInt32(textBoxPrice.Text),
DateStart = dateTimePickerStart.Value, DateStart = dateTimePickerStart.Value,
DateEnd = dateTimePickerEnd.Value DateEnd = dateTimePickerEnd.Value

View File

@ -60,7 +60,10 @@ namespace TransportCompany
_truckingLogic = Program.ServiceProvider.GetService(typeof(ITruckingLogic)) as TruckingLogic; _truckingLogic = Program.ServiceProvider.GetService(typeof(ITruckingLogic)) as TruckingLogic;
_transportLogic = Program.ServiceProvider.GetService(typeof(ITransportLogic)) as TransportLogic; _transportLogic = Program.ServiceProvider.GetService(typeof(ITransportLogic)) as TransportLogic;
_cargoLogic.TransferData(cargolist);
_clientLogic.TransferData(clientlist);
_transportLogic.TransferData(transportlist);
_truckingLogic.TransferData(truckinglist);
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);

View File

@ -19,6 +19,10 @@ namespace TransportCompany
private readonly ITransportLogic _logic; private readonly ITransportLogic _logic;
private bool isMongo;
public bool SetMongo { set { isMongo = value;} }
public FormTransport(ILogger<FormTransport> logger, ITransportLogic logic) public FormTransport(ILogger<FormTransport> logger, ITransportLogic logic)
{ {
InitializeComponent(); InitializeComponent();
@ -42,9 +46,19 @@ namespace TransportCompany
if (list != null) if (list != null)
{ {
dataGridView.DataSource = list; dataGridView.DataSource = list;
dataGridView.Columns["MongoId"].Visible = false;
dataGridView.Columns["TransportationType"].Visible = false; if (!isMongo)
dataGridView.Columns[3].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; {
dataGridView.Columns["Id"].Visible = true;
dataGridView.Columns["MongoId"].Visible = false;
}
else
{
dataGridView.Columns["Id"].Visible = false;
dataGridView.Columns["MongoId"].Visible = true;
}
dataGridView.Columns[1].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
} }
_logger.LogInformation("Загрузка транспортных средств"); _logger.LogInformation("Загрузка транспортных средств");

View File

@ -90,6 +90,8 @@ namespace TransportCompany
if (service is FormCreateTrucking form) if (service is FormCreateTrucking form)
{ {
form.Mongo = _mongo;
form.ShowDialog(); form.ShowDialog();
LoadData(); LoadData();
} }
@ -130,12 +132,15 @@ namespace TransportCompany
private void TypeTransportationToolStripMenuItem_Click(object sender, EventArgs e) private void TypeTransportationToolStripMenuItem_Click(object sender, EventArgs e)
{ {
var service = Program.ServiceProvider?.GetService(typeof(FormTypeTransportation)); if (!_mongo)
if (service is FormTypeTransportation form)
{ {
form.ShowDialog(); var service = Program.ServiceProvider?.GetService(typeof(FormTypeTransportation));
LoadData();
if (service is FormTypeTransportation form)
{
form.ShowDialog();
LoadData();
}
} }
} }

View File

@ -94,7 +94,6 @@ namespace TransportCompany
_serviseCollection.Remove(_serviseCollection.FirstOrDefault(descriptor => descriptor.ServiceType == typeof(IClientStorage))); _serviseCollection.Remove(_serviseCollection.FirstOrDefault(descriptor => descriptor.ServiceType == typeof(IClientStorage)));
_serviseCollection.Remove(_serviseCollection.FirstOrDefault(descriptor => descriptor.ServiceType == typeof(ITruckingStorage))); _serviseCollection.Remove(_serviseCollection.FirstOrDefault(descriptor => descriptor.ServiceType == typeof(ITruckingStorage)));
_serviseCollection.Remove(_serviseCollection.FirstOrDefault(descriptor => descriptor.ServiceType == typeof(ITransportStorage))); _serviseCollection.Remove(_serviseCollection.FirstOrDefault(descriptor => descriptor.ServiceType == typeof(ITransportStorage)));
_serviseCollection.Remove(_serviseCollection.FirstOrDefault(descriptor => descriptor.ServiceType == typeof(ITransportationStorage)));
_serviseCollection.AddTransient<ICargoStorage, TransportCompamyMongoDBImplementer.Implements.CargoStorage>(); _serviseCollection.AddTransient<ICargoStorage, TransportCompamyMongoDBImplementer.Implements.CargoStorage>();
_serviseCollection.AddTransient<IClientStorage, TransportCompamyMongoDBImplementer.Implements.ClientStorage>(); _serviseCollection.AddTransient<IClientStorage, TransportCompamyMongoDBImplementer.Implements.ClientStorage>();

View File

@ -10,13 +10,16 @@ namespace TransportCompanyContracts.ViewModels
{ {
public class TransportViewModel : ITransportModel public class TransportViewModel : ITransportModel
{ {
[DisplayName("Номер")]
public int Id { get; set; } public int Id { get; set; }
[DisplayName("Номер")]
public string? MongoId { get; set; } public string? MongoId { get; set; }
public string? TransportationType { get; set; }
[DisplayName("Вид транспорта")] [DisplayName("Вид транспорта")]
public string Tranport { get; set; } = string.Empty; public string Tranport { get; set; } = string.Empty;
[DisplayName("Тип перевозки")]
public string? TransportationType { get; set; }
} }
} }