Lines 878-884
CREATE TABLE `itemtypes` ( -- defines the item types
Link Here
|
878 |
description LONGTEXT, -- a plain text explanation of the item type |
878 |
description LONGTEXT, -- a plain text explanation of the item type |
879 |
rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued |
879 |
rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued |
880 |
rentalcharge_daily decimal(28,6) default NULL, -- the amount charged for each day between checkout date and due date |
880 |
rentalcharge_daily decimal(28,6) default NULL, -- the amount charged for each day between checkout date and due date |
|
|
881 |
rentalcharge_daily_calendar tinyint(1) NOT NULL DEFAULT 1, -- controls if the daily retnal fee is calculated directly or using finesCalendar |
881 |
rentalcharge_hourly decimal(28,6) default NULL, -- the amount charged for each hour between checkout date and due date |
882 |
rentalcharge_hourly decimal(28,6) default NULL, -- the amount charged for each hour between checkout date and due date |
|
|
883 |
rentalcharge_hourly_calendar tinyint(1) NOT NULL DEFAULT 1, -- controls if the hourly retnal fee is calculated directly or using finesCalendar |
882 |
defaultreplacecost decimal(28,6) default NULL, -- default replacement cost |
884 |
defaultreplacecost decimal(28,6) default NULL, -- default replacement cost |
883 |
processfee decimal(28,6) default NULL, -- default text be recorded in the column note when the processing fee is applied |
885 |
processfee decimal(28,6) default NULL, -- default text be recorded in the column note when the processing fee is applied |
884 |
notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan |
886 |
notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan |
885 |
- |
|
|