fix
This commit is contained in:
parent
8afd4dd83d
commit
c13a1b2a71
@ -267,6 +267,11 @@ namespace ServiceSourceClientApp.Controllers {
|
|||||||
[HttpGet]
|
[HttpGet]
|
||||||
public IActionResult CreateWordReport(string ids) {
|
public IActionResult CreateWordReport(string ids) {
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(ids)) {
|
||||||
|
throw new Exception("Íåò âûáðàíûõ çàïèñåé");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
var fileMemStream = APIClient.GetRequest<byte[]>($"api/Main/CreateWordReport?_ids={ids}");
|
var fileMemStream = APIClient.GetRequest<byte[]>($"api/Main/CreateWordReport?_ids={ids}");
|
||||||
|
|
||||||
if (fileMemStream == null) {
|
if (fileMemStream == null) {
|
||||||
@ -278,7 +283,12 @@ namespace ServiceSourceClientApp.Controllers {
|
|||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
public IActionResult CreateExcelReport(string ids) {
|
public IActionResult CreateExcelReport(string ids) {
|
||||||
var fileMemStream = APIClient.GetRequest<byte[]>($"api/Main/CreateXlsxReport?_ids={ids}");
|
|
||||||
|
if (string.IsNullOrEmpty(ids)) {
|
||||||
|
throw new Exception("Íåò âûáðàíûõ çàïèñåé");
|
||||||
|
}
|
||||||
|
|
||||||
|
var fileMemStream = APIClient.GetRequest<byte[]>($"api/Main/CreateXlsxReport?_ids={ids}");
|
||||||
|
|
||||||
if (fileMemStream == null) {
|
if (fileMemStream == null) {
|
||||||
throw new Exception("Îøèáêà ñîçäàíèÿ îò÷åòà");
|
throw new Exception("Îøèáêà ñîçäàíèÿ îò÷åòà");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user