|
Lines 39-57
function LoadIssuesTable() {
Link Here
|
| 39 |
let renew_column = table_settings_issues_table.columns.find( |
39 |
let renew_column = table_settings_issues_table.columns.find( |
| 40 |
c => c.columnname == "renew" |
40 |
c => c.columnname == "renew" |
| 41 |
); |
41 |
); |
| 42 |
let checkin_column = table_settings_issues_table.columns.find( |
|
|
| 43 |
c => c.columnname == "checkin" |
| 44 |
); |
| 45 |
|
42 |
|
| 46 |
if (!AllowCirculate) { |
43 |
if (!AllowCirculate) { |
| 47 |
renew_column.is_hidden = 1; |
44 |
renew_column.is_hidden = 1; |
| 48 |
renew_column.force_visibility = 1; |
45 |
renew_column.force_visibility = 1; |
| 49 |
} else { |
46 |
} else { |
| 50 |
renew_column.is_hidden = 0; |
47 |
renew_column.is_hidden = 0; |
| 51 |
checkin_column.is_hidden = 0; |
|
|
| 52 |
} |
48 |
} |
| 53 |
renew_column.force_visibility = 1; |
49 |
renew_column.force_visibility = 1; |
| 54 |
checkin_column.force_visibility = 1; |
|
|
| 55 |
|
50 |
|
| 56 |
let claims_returned_column = table_settings_issues_table.columns.find( |
51 |
let claims_returned_column = table_settings_issues_table.columns.find( |
| 57 |
c => c.columnname == "claims_returned" |
52 |
c => c.columnname == "claims_returned" |
| 58 |
- |
|
|