|
Lines 58-63
to descriptions, for several tables. Currently
Link Here
|
| 58 |
|
58 |
|
| 59 |
sub columns { |
59 |
sub columns { |
| 60 |
return { |
60 |
return { |
|
|
61 |
aqorders => { |
| 62 |
"ordernumber" => __("Order number"), |
| 63 |
"biblionumber" => __("Biblionumber (internal)"), |
| 64 |
"entrydate" => __("Creation date"), |
| 65 |
"quantity" => __("Quantity"), |
| 66 |
"currency" => __("Currency"), |
| 67 |
"listprice" => __("Vendor price"), |
| 68 |
"datereceived" => __("Date received"), |
| 69 |
"invoiceid" => __("Invoice ID (internal)"), |
| 70 |
"freight" => __("Not used (deprecated)"), |
| 71 |
"unitprice" => __("Actual cost"), |
| 72 |
"unitprice_tax_excluded" => __("Actual cost, tax excl."), |
| 73 |
"unitprice_tax_included" => __("Actual cost, tax incl."), |
| 74 |
"quantityreceived" => __("Quantity received"), |
| 75 |
"created_by" => __("Borrower number of creator"), |
| 76 |
"datecancellationprinted" => __("Cancellation date"), |
| 77 |
"cancellationreason" => __("Cancellation reason"), |
| 78 |
"order_internalnote" => __("Internal note"), |
| 79 |
"order_vendornote" => __("Vendor note"), |
| 80 |
"purchaseordernumber" => __("Not used (deprecated)"), |
| 81 |
"basketno" => __("Basket ID (inernal)"), |
| 82 |
"timestamp" => __("Timestamp"), |
| 83 |
"rrp" => __("Retail price"), |
| 84 |
"replacementprice" => __("Replacement price"), |
| 85 |
"rrp_tax_excluded" => __("Retail price, tax excl."), |
| 86 |
"rrp_tax_included" => __("Retail price, tax incl."), |
| 87 |
"ecost" => __("Budgeted cost"), |
| 88 |
"ecost_tax_excluded" => __("Budgeted cost, tax excl."), |
| 89 |
"ecost_tax_included" => __("Budgeted cost, tax incl."), |
| 90 |
"tax_rate_bak" => __("Tax rate backup (deprecated)"), |
| 91 |
"tax_rate_on_ordering" => __("Tax rate on order"), |
| 92 |
"tax_rate_on_receiving" => __("Tax rate on receive"), |
| 93 |
"tax_value_bak" => __("Tax value backup (deprecated)"), |
| 94 |
"tax_value_on_ordering" => __("Tax amount on order"), |
| 95 |
"tax_value_on_receiving" => __("Tax amount on receive"), |
| 96 |
"discount" => __("Discount"), |
| 97 |
"budget_id" => __("Fund ID (internal)"), |
| 98 |
"budgetdate" => __("Not used (deprecated)"), |
| 99 |
"sort1" => __("Statistic 1"), |
| 100 |
"sort2" => __("Statistic 2"), |
| 101 |
"sort1_authcat" => __("Not used"), |
| 102 |
"sort2_authcat" => __("Not used"), |
| 103 |
"uncertainprice" => __("Uncertain price"), |
| 104 |
"subscriptionid" => __("Subscription ID (internal)"), |
| 105 |
"parent_ordernumber" => __("Parent order number (internal)"), |
| 106 |
"orderstatus" => __("Order status"), |
| 107 |
"line_item_id" => __("Line item ID (EDIFACT)"), |
| 108 |
"suppliers_reference_number" => __("Vendor reference number (EDIFACT)"), |
| 109 |
"suppliers_reference_qualifier" => __("Vendor reference qualifier (EDIFACT)"), |
| 110 |
"suppliers_report" => __("Vendor report (EDIFACT)"), |
| 111 |
"estimated_delivery_date" => __("Estimated delivery date"), |
| 112 |
}, |
| 61 |
borrowers => { |
113 |
borrowers => { |
| 62 |
"borrowernumber" => __("Borrower number"), |
114 |
"borrowernumber" => __("Borrower number"), |
| 63 |
"title" => __("Salutation"), |
115 |
"title" => __("Salutation"), |
| 64 |
- |
|
|