|
Lines 34-40
Koha::Database::Columns
Link Here
|
| 34 |
=head3 columns |
34 |
=head3 columns |
| 35 |
|
35 |
|
| 36 |
Static method that returns a hashref with mappings from column names |
36 |
Static method that returns a hashref with mappings from column names |
| 37 |
to descriptions, for several tables. Currently |
37 |
to descriptions for several tables. |
|
|
38 |
Should be extended. |
| 38 |
|
39 |
|
| 39 |
=over |
40 |
=over |
| 40 |
|
41 |
|
|
Lines 60-65
to descriptions, for several tables. Currently
Link Here
|
| 60 |
|
61 |
|
| 61 |
sub columns { |
62 |
sub columns { |
| 62 |
return { |
63 |
return { |
|
|
64 |
# TODO stub for the check in C4::Reports::Guided, get_columns (see BZ 37784) |
| 65 |
accountlines => {}, |
| 66 |
serial => {}, |
| 67 |
serialitems => {}, |
| 68 |
subscriptionhistory => {}, |
| 69 |
subscriptionroutinglist => {}, |
| 70 |
aqbooksellers => {}, |
| 71 |
|
| 63 |
aqorders => { |
72 |
aqorders => { |
| 64 |
"basketno" => __("Basket ID (internal)"), |
73 |
"basketno" => __("Basket ID (internal)"), |
| 65 |
"biblionumber" => __("Biblio number (internal)"), |
74 |
"biblionumber" => __("Biblio number (internal)"), |
| 66 |
- |
|
|