RhSolutions-AddIn/src/Ribbon/RibbonController.cs

86 lines
3.1 KiB
C#
Raw Normal View History

2021-12-05 16:55:36 +03:00
using System.Runtime.InteropServices;
using System.Windows.Forms;
using ExcelDna.Integration.CustomUI;
2021-12-24 16:22:03 +03:00
using RehauSku.PriceListTools;
using RehauSku.Forms;
2021-12-05 16:55:36 +03:00
2021-12-08 14:45:14 +03:00
namespace RehauSku.Ribbon
2021-12-05 16:55:36 +03:00
{
[ComVisible(true)]
public class RibbonController : ExcelRibbon
{
public override string GetCustomUI(string RibbonID)
{
return @"
<customUI xmlns='http://schemas.microsoft.com/office/2006/01/customui'>
<ribbon>
<tabs>
<tab id='rau' label='REHAU'>
<group id='priceList' label='Прайс-лист'>
<button id='exportToPrice' label='Экспорт в новый файл' size='normal' imageMso='PivotExportToExcel' onAction='OnExportPressed'/>
<menu id='conjoinMenu' label='Объединить' imageMso='Copy'>
<button id='mergeFiles' label='Сложить' onAction='OnMergePressed'/>
<button id='combineFiles' label='По колонкам' onAction='OnCombinePressed'/>
</menu>
</group>
<group id='rausettings' label='Настройки'>
2021-12-24 17:42:20 +03:00
<button id='setPriceList' label='Файл прайс-листа' size='normal' imageMso='CurrentViewSettings' onAction='OnSetPricePressed'/>
</group>
2021-12-05 16:55:36 +03:00
</tab>
</tabs>
</ribbon>
</customUI>";
}
// <dropDown id = 'dd1' label = 'Drop dynamic' getItemCount = 'fncGetItemCountDrop' getItemLabel = 'fncGetItemLabelDrop' onAction = 'fncOnActionDrop'/>
2021-12-24 16:22:03 +03:00
public void OnMergePressed(IRibbonControl control)
{
using (MergeTool mergeTool = new MergeTool())
{
string[] files = Dialog.GetMultiplyFiles();
mergeTool.CollectSkuAmount(files);
string exportFile = PriceListUtil.CreateNewExportFile();
mergeTool.ExportToFile(exportFile);
}
}
public void OnCombinePressed(IRibbonControl control)
{
using (CombineTool combineTool = new CombineTool())
{
string[] files = Dialog.GetMultiplyFiles();
combineTool.CollectSkuAmount(files);
2021-12-24 16:22:03 +03:00
string exportFile = PriceListUtil.CreateNewExportFile();
combineTool.ExportToFile(exportFile);
2021-12-24 16:22:03 +03:00
}
}
public void OnExportPressed(IRibbonControl control)
{
2021-12-24 16:22:03 +03:00
using (ExportTool exportTool = new ExportTool())
{
2021-12-24 16:22:03 +03:00
if (!exportTool.IsRangeValid())
{
MessageBox.Show("Выделен неверный диапазон!",
"Неверный диапазон",
2021-12-10 13:56:28 +03:00
MessageBoxButtons.OK,
MessageBoxIcon.Information);
return;
}
else
{
2021-12-24 16:22:03 +03:00
exportTool.ExportToNewFile();
}
}
}
2021-12-24 16:22:03 +03:00
2021-12-24 17:42:20 +03:00
public void OnSetPricePressed(IRibbonControl control)
{
2021-12-24 17:42:20 +03:00
string path = Dialog.GetFilePath();
RegistryUtil.PriceListPath = path;
}
2021-12-05 16:55:36 +03:00
}
}