Фикс
This commit is contained in:
parent
e0f920010b
commit
296ec5bfde
@ -1,5 +1,6 @@
|
||||
using BankBusinessLogic.OfficePackage;
|
||||
using BankBusinessLogic.OfficePackage.DocumentModels;
|
||||
using BankContracts.BindingModels;
|
||||
using BankContracts.BusinessLogicsContracts;
|
||||
using BankContracts.SearchModels;
|
||||
using BankContracts.StoragesContracts;
|
||||
@ -56,6 +57,19 @@ namespace BankBusinessLogic.BusinessLogic
|
||||
{
|
||||
return _cardStorage.GetReportTransfersList(model);
|
||||
}
|
||||
|
||||
public void SaveTransfersToWordFile(ReportBindingModel model)
|
||||
{
|
||||
_saveToWord.CreateDoc(new WordInfo
|
||||
{
|
||||
FileName = model.FileName,
|
||||
Title = "Список кузнечных изделий",
|
||||
Transfers = CreateReportTransfers(new CardSearchModel
|
||||
{
|
||||
SelectedCardIds = model.S
|
||||
})
|
||||
});
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region//отчеты по картам за период с расшифровкой по заявкам и операциям в формате pdf
|
||||
|
Loading…
Reference in New Issue
Block a user