Compare commits
2 Commits
update-bro
...
add-approv
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
83c1548994 | ||
|
|
a25844d777 |
@@ -33,7 +33,7 @@
|
|||||||
<th><%= t(".table_headers.notes") %></th>
|
<th><%= t(".table_headers.notes") %></th>
|
||||||
<th><%= t(".table_headers.tags") %></th>
|
<th><%= t(".table_headers.tags") %></th>
|
||||||
<th><%= t(".table_headers.signed_at") %></th>
|
<th><%= t(".table_headers.signed_at") %></th>
|
||||||
<th></th>
|
<th><%= t(".table_headers.amendment_signed") %></th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|||||||
@@ -789,6 +789,7 @@ en:
|
|||||||
empty: Location Releases will appear here
|
empty: Location Releases will appear here
|
||||||
table_headers:
|
table_headers:
|
||||||
address: Address
|
address: Address
|
||||||
|
amendment_signed: Amendment
|
||||||
approved: Approved
|
approved: Approved
|
||||||
name: Location Name
|
name: Location Name
|
||||||
notes: Notes
|
notes: Notes
|
||||||
|
|||||||
@@ -346,6 +346,7 @@ es:
|
|||||||
index:
|
index:
|
||||||
table_headers:
|
table_headers:
|
||||||
address: Address (ES)
|
address: Address (ES)
|
||||||
|
amendment_signed: Amendment (ES)
|
||||||
notes: Notes (ES)
|
notes: Notes (ES)
|
||||||
signed_at: Date Signed (ES)
|
signed_at: Date Signed (ES)
|
||||||
tags: Tags (ES)
|
tags: Tags (ES)
|
||||||
|
|||||||
@@ -127,6 +127,14 @@ feature "User managing location releases" do
|
|||||||
sign_in current_user
|
sign_in current_user
|
||||||
end
|
end
|
||||||
|
|
||||||
|
scenario "listing all releases, table have correct headers", js:true do
|
||||||
|
ct = create(:contract_template, :with_amendment_clause, project: project)
|
||||||
|
create(:location_release, :native, project: project, contract_template: ct)
|
||||||
|
visit project_location_releases_path(project)
|
||||||
|
|
||||||
|
table_headers.each { |s| expect(page).to have_content s }
|
||||||
|
end
|
||||||
|
|
||||||
scenario "creating a release", js: true do
|
scenario "creating a release", js: true do
|
||||||
visit new_project_location_release_path(project)
|
visit new_project_location_release_path(project)
|
||||||
|
|
||||||
@@ -729,4 +737,16 @@ feature "User managing location releases" do
|
|||||||
def amendment_signature_label
|
def amendment_signature_label
|
||||||
t 'contracts.amendment_page.description_labels.amendment_signature'
|
t 'contracts.amendment_page.description_labels.amendment_signature'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def table_headers
|
||||||
|
[
|
||||||
|
t('location_releases.index.table_headers.approved'),
|
||||||
|
t('location_releases.index.table_headers.name'),
|
||||||
|
t('location_releases.index.table_headers.address'),
|
||||||
|
t('location_releases.index.table_headers.notes'),
|
||||||
|
t('location_releases.index.table_headers.tags'),
|
||||||
|
t('location_releases.index.table_headers.signed_at'),
|
||||||
|
t('location_releases.index.table_headers.amendment_signed')
|
||||||
|
]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user