31 lines
988 B
Plaintext
31 lines
988 B
Plaintext
<!-- app/views/reports/index.html.erb -->
|
|
<h1>Загрузка отчётов по ИНН</h1>
|
|
<div>
|
|
<p>
|
|
Тестовые ИНН: <br>Полные отчеты: 7707602010, 9705114405<br>Упрощенка: 7724298987
|
|
</p>
|
|
</div>
|
|
|
|
<% if notice %>
|
|
<p style="color: green;"><%= notice %></p>
|
|
<% end %>
|
|
|
|
<%= form_with url: reports_path, method: :post, local: true do |f| %>
|
|
<%= f.label :inn, "Введите ИНН:" %>
|
|
<%= f.text_field :inn, required: true %>
|
|
<%= f.submit "Загрузить отчёт" %>
|
|
<% end %>
|
|
|
|
<h2>История загрузок</h2>
|
|
<% @reports.each do |report| %>
|
|
<div style="border: 1px solid #ccc; padding: 10px; margin: 10px 0;">
|
|
<p>ИНН: <%= report.inn %> | Статус: <%= report.status %></p>
|
|
<% if report.files.attached? %>
|
|
<p>Файлы:</p>
|
|
<% report.files.each do |file| %>
|
|
<%= link_to file.filename, rails_blob_path(file, disposition: "attachment") %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|