This commit is contained in:
Your Name 2025-03-28 14:37:40 +03:00
parent f4afc533aa
commit bcb6ed14c0
28 changed files with 278 additions and 11 deletions

View File

@ -6,6 +6,7 @@
<entry key="Voroncov2103/AddAgentWindow.axaml" value="Voroncov2103/Voroncov2103.csproj" />
<entry key="Voroncov2103/EditAgentWindow.axaml" value="Voroncov2103/Voroncov2103.csproj" />
<entry key="Voroncov2103/MainWindow.axaml" value="Voroncov2103/Voroncov2103.csproj" />
<entry key="Voroncov2103/PriorityWindow.axaml" value="Voroncov2103/Voroncov2103.csproj" />
</map>
</option>
</component>

View File

@ -5,5 +5,25 @@
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Voroncov2103.EditAgentWindow"
Title="EditAgentWindow">
Welcome to Avalonia!
<StackPanel Spacing="5" VerticalAlignment="Center" HorizontalAlignment="Center">
<TextBox Width="200" x:Name="TitleTextBox" Watermark="Title"/>
<ComboBox VerticalAlignment="Center" Width="100" x:Name="TypeAgentFilterCombobox" SelectionChanged="TypeAgentFilterCombobox_OnSelectionChanged">
<ComboBoxItem Content="ООО"/>
<ComboBoxItem Content="МФО"/>
<ComboBoxItem Content="ЗАО"/>
<ComboBoxItem Content="МКК"/>
<ComboBoxItem Content="ПАО"/>
<ComboBoxItem Content="ОАО"/>
</ComboBox>
<TextBox Width="200" x:Name="PriorityTextBox" Watermark="Priority"/>
<TextBox Width="200" x:Name="AddressTextBox" Watermark="Address"/>
<TextBox Width="200" x:Name="INNTextBox" Watermark="INN"/>
<TextBox Width="200" x:Name="KPPTextBox" Watermark="KPP"/>
<TextBox Width="200" x:Name="DirectorNameTextBox" Watermark="DirectorName"/>
<TextBox Width="200" x:Name="PhoneTextBox" Watermark="Phone"/>
<TextBox Width="200" x:Name="EmailTextBox" Watermark="Email"/>
<Image Width="60" Height="60" x:Name="LogoImage"/>
<Button Width="100" x:Name="SelectImageButton" Content="Select Image" Click="SelectImage"/>
<Button Width="100" x:Name="AddButton" Content="Save" Click="AddClick"/>
</StackPanel>
</Window>

View File

@ -1,13 +1,121 @@
using System;
using System.Linq;
using System.Threading.Tasks;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Markup.Xaml;
using Avalonia.Media.Imaging;
using Avalonia.Platform.Storage;
using Voroncov2103.Models;
namespace Voroncov2103;
public partial class EditAgentWindow : Window
{
public EditAgentWindow()
public string PathToImage = string.Empty;
public Agent agentPresenter;
public string agentType { get; set; } = null;
public int agentTypeId { get; set; } = 0;
public EditAgentWindow(Agent agentInput)
{
using var ctx = new DatabaseContext();
InitializeComponent();
agentPresenter = agentInput;
Otrisovka();
}
private async Task<Bitmap?> SelectAndSaveImage()
{
var showDialog = StorageProvider.OpenFilePickerAsync(
options: new Avalonia.Platform.Storage.FilePickerOpenOptions()
{
Title = "Select an image",
FileTypeFilter = new[] { FilePickerFileTypes.ImageAll }
});
var storageFile = await showDialog;
try
{
var bmp = new Bitmap(storageFile.First().TryGetLocalPath());
var guid = Guid.NewGuid();
string path = $"/Users/rinchi/RiderProjects/Voroncov2103/Voroncov2103/bin/Debug/net8.0/agents/{guid}.jpg";
bmp.Save(path);
PathToImage = $"agents/{guid}.jpg";
return bmp;
}
catch
{
return null;
}
}
private async void AddClick(object? sender, RoutedEventArgs e)
{
using var ctx = new DatabaseContext();
if (string.IsNullOrEmpty(TitleTextBox.Text)) return;
agentPresenter.Title = TitleTextBox.Text;
agentPresenter.AgentTypeId = agentTypeId;
if (!int.TryParse(PriorityTextBox.Text, out int priority)) return;
agentPresenter.Priority = priority;
if (string.IsNullOrEmpty(AddressTextBox.Text)) return;
agentPresenter.Address = AddressTextBox.Text;
if (string.IsNullOrEmpty(INNTextBox.Text)) return;
agentPresenter.Inn = INNTextBox.Text;
if (string.IsNullOrEmpty(KPPTextBox.Text)) return;
agentPresenter.Kpp = KPPTextBox.Text;
if (string.IsNullOrEmpty(DirectorNameTextBox.Text)) return;
agentPresenter.DirectorName = DirectorNameTextBox.Text;
if (string.IsNullOrEmpty(PhoneTextBox.Text)) return;
agentPresenter.Phone = PhoneTextBox.Text;
if (string.IsNullOrEmpty(EmailTextBox.Text)) return;
agentPresenter.Email = EmailTextBox.Text;
if (String.IsNullOrEmpty(PathToImage)) return;
agentPresenter.Logo = PathToImage;
Close(agentPresenter);
}
private async void SelectImage(object? sender, RoutedEventArgs e)
{
LogoImage.Source = await SelectAndSaveImage();
}
private void TypeAgentFilterCombobox_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)
{
if (TypeAgentFilterCombobox.SelectedItem is ComboBoxItem selectedItem)
{
agentType = selectedItem.Content.ToString();
switch (agentType)
{
case "ООО": agentTypeId = 1; break;
case "МФО": agentTypeId = 2; break;
case "ЗАО": agentTypeId = 3; break;
case "МКК": agentTypeId = 4; break;
case "ПАО": agentTypeId = 5; break;
case "ОАО": agentTypeId = 6; break;
}
}
}
private void Otrisovka()
{
TitleTextBox.Text = agentPresenter.Title;
PriorityTextBox.Text = agentPresenter.Priority.ToString();
AddressTextBox.Text = agentPresenter.Address;
INNTextBox.Text = agentPresenter.Inn;
KPPTextBox.Text = agentPresenter.Kpp;
DirectorNameTextBox.Text = agentPresenter.DirectorName;
PhoneTextBox.Text = agentPresenter.Phone;
EmailTextBox.Text = agentPresenter.Email;
switch (agentPresenter.AgentTypeId)
{
case 1: TypeAgentFilterCombobox.SelectedIndex = 0; break;
case 2: TypeAgentFilterCombobox.SelectedIndex = 1; break;
case 3: TypeAgentFilterCombobox.SelectedIndex = 2; break;
case 4: TypeAgentFilterCombobox.SelectedIndex = 3; break;
case 5: TypeAgentFilterCombobox.SelectedIndex = 4; break;
case 6: TypeAgentFilterCombobox.SelectedIndex = 5; break;
}
}
}

View File

@ -58,6 +58,7 @@
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<Image Source="{Binding Image}" Width="100" Height="100" Margin="0,0,10,0" VerticalAlignment="Center" HorizontalAlignment="Left" Stretch="UniformToFill"/>
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding Id, StringFormat='Title: {0}'}" TextWrapping="Wrap" TextAlignment="Center" />
<TextBlock Text="{Binding Title, StringFormat='Title: {0}'}" TextWrapping="Wrap" TextAlignment="Center" />
<TextBlock Text="{Binding Year, StringFormat='Year: {0}'}" TextWrapping="Wrap" TextAlignment="Center" />
<TextBlock Text="{Binding countSales, StringFormat='countSales: {0}'}" TextWrapping="Wrap" TextAlignment="Center" />
@ -66,6 +67,12 @@
</StackPanel>
</StackPanel>
</Grid>
<Border.ContextMenu>
<ContextMenu>
<MenuItem Header="edit" Click="EditMenuItem_OnClick"/>
<MenuItem Header="priority" Click="PriorityMenuItem_OnClick"/>
</ContextMenu>
</Border.ContextMenu>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>

View File

@ -6,6 +6,8 @@ using System.Linq;
using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Media.Imaging;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Storage;
using Voroncov2103.Models;
namespace Voroncov2103;
@ -205,14 +207,14 @@ public partial class MainWindow : Window
private async void AddAgent_OnClick(object? sender, RoutedEventArgs e)
{
using var context = new DatabaseContext();
using var ctx = new DatabaseContext();
var newAgent = await new AddAgentWindow().ShowDialog<Agent>(this);
if (newAgent != null)
{
context.Agents.Add(newAgent);
await context.SaveChangesAsync();
agentsForPhotoAndPriority = context.Agents.ToList();
ctx.Agents.Add(newAgent);
await ctx.SaveChangesAsync();
agentsForPhotoAndPriority = ctx.Agents.ToList();
var presenter = new AgentYearlySalesPresenter
{
@ -226,7 +228,7 @@ public partial class MainWindow : Window
sale = "0%",
PhotoPath = GetPhotoPath(newAgent.Id),
priority = newAgent.Priority,
typeAgent = context.AgentTypes.Where(t => t.Id == newAgent.AgentTypeId).Select(t => t.Title).FirstOrDefault()
typeAgent = ctx.AgentTypes.Where(t => t.Id == newAgent.AgentTypeId).Select(t => t.Title).FirstOrDefault()
};
Console.WriteLine(newAgent.Logo);
@ -236,4 +238,77 @@ public partial class MainWindow : Window
// DisplayAgents();
}
}
private async void EditMenuItem_OnClick(object? sender, RoutedEventArgs e)
{
using var ctx = new DatabaseContext();
if (ListBox.SelectedItem is AgentYearlySalesPresenter selectedAgentPresenter)
{
var agent = ctx.Agents.FirstOrDefault(a => a.Id == selectedAgentPresenter.Id);
EditAgentWindow editAgentWindow = new EditAgentWindow(agent);
var updatedAgent = await editAgentWindow.ShowDialog<Agent>(this);
if (updatedAgent != null)
{
ctx.Agents.Update(updatedAgent);
await ctx.SaveChangesAsync();
agentsForPhotoAndPriority = ctx.Agents.ToList();
var oldPresenter = dataSourceAgents.FirstOrDefault(a => a.Id == updatedAgent.Id);
if (oldPresenter != null)
{
dataSourceAgents.Remove(oldPresenter);
}
var newPresenter = new AgentYearlySalesPresenter
{
Id = updatedAgent.Id,
Email = updatedAgent.Email,
Phone = updatedAgent.Phone,
Title = updatedAgent.Title,
Year = DateTime.Now.Year,
countSales = 0,
totalSalesAmount = 0,
sale = "0%",
PhotoPath = GetPhotoPath(updatedAgent.Id),
priority = updatedAgent.Priority,
typeAgent = ctx.AgentTypes.Where(t => t.Id == updatedAgent.AgentTypeId).Select(t => t.Title).FirstOrDefault()
};
Console.WriteLine(updatedAgent.Logo);
Console.WriteLine(newPresenter.PhotoPath);
dataSourceAgents.Add(newPresenter);
DisplayAgents();
}
}
}
private async void PriorityMenuItem_OnClick(object? sender, RoutedEventArgs e)
{
if (ListBox.SelectedItem is AgentYearlySalesPresenter selectedAgentPresenter)
{
PriorityWindow priorityWindow = new PriorityWindow(selectedAgentPresenter.Id);
await priorityWindow.ShowDialog(this);
if (priorityWindow.Priority.HasValue)
{
Console.WriteLine($"Новый приоритет: {priorityWindow.Priority.Value}");
using var context = new DatabaseContext();
var agent = await context.Agents.FindAsync(selectedAgentPresenter.Id);
if (agent != null)
{
agent.Priority = priorityWindow.Priority.Value;
await context.SaveChangesAsync();
}
var agentToUpdate = dataSourceAgents.FirstOrDefault(a => a.Id == selectedAgentPresenter.Id);
if (agentToUpdate != null)
{
agentToUpdate.priority = priorityWindow.Priority.Value;
}
DisplayAgents();
}
}
}
}

View File

@ -0,0 +1,13 @@
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Voroncov2103.PriorityWindow"
Title="PriorityWindow">
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="10">
<TextBlock Text="Введите новый приоритет:"/>
<TextBox x:Name="PriorityTextBox" Width="100" HorizontalAlignment="Center"/>
<Button Content="OK" Click="OnClick" HorizontalAlignment="Center"/>
</StackPanel>
</Window>

View File

@ -0,0 +1,40 @@
using System;
using System.Linq;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Scaffolding.Metadata;
using Voroncov2103.Models;
namespace Voroncov2103
{
public partial class PriorityWindow : Window
{
private int AgentId;
public int? Priority { get; private set; }
public PriorityWindow(int agentId)
{
InitializeComponent();
AgentId = agentId;
}
private void OnClick(object? sender, Avalonia.Interactivity.RoutedEventArgs e)
{
if (int.TryParse(PriorityTextBox.Text, out int priority))
{
Priority = priority;
using var ctx = new DatabaseContext();
ctx.Agents.Where(a => a.Id == AgentId)
.ExecuteUpdate(setters => setters.SetProperty(a => a.Priority, Priority));
ctx.SaveChanges();
Close();
}
else
{
Console.WriteLine("Invalid priority number");
}
}
}
}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 KiB

View File

@ -1 +1 @@
9002503cc4223dbe00cbcb701a207f98d20cdfdb86b7fbbc100a37c0068e1c55
6c198488e661cb49dc119d22de4f63af928baa3482d4aa2f6fdd6ca2e661cd0b

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Voroncov2103")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a6a8e70637f0c5eec5b0f0d6cff383fce2485013")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f4afc533aad41e331ab4e064e311ca09a13bef6d")]
[assembly: System.Reflection.AssemblyProductAttribute("Voroncov2103")]
[assembly: System.Reflection.AssemblyTitleAttribute("Voroncov2103")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
0176811cb45234335dbdd16e14557a70d33a02737ac41b66d553088f98a69875
5db17eba4fdc099cb33647168bde87421c309afc50108c7758252b51ee237f18

View File

@ -30,3 +30,6 @@ build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/Users/rinchi/RiderProjects/Voroncov2103/Voroncov2103/MainWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/Users/rinchi/RiderProjects/Voroncov2103/Voroncov2103/PriorityWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml

View File

@ -1 +1 @@
468b6047e15ddcce435cfd2294a7d040b8aba1cb16e57b561f2396c953a200d9
b7cb00d782eb9fa81f9c7ca76579e42a86d243441d872955e07e06680b5aacdc