Lines 837-844
CREATE TABLE `issuingrules` ( -- circulation and fine rules
Link Here
|
837 |
`chargeperiod` int(11) default NULL, -- how often the fine amount is charged |
837 |
`chargeperiod` int(11) default NULL, -- how often the fine amount is charged |
838 |
`chargeperiod_charge_at` tinyint(1) NOT NULL DEFAULT '0', -- Should fine be given at the start ( 1 ) or the end ( 0 ) of the period |
838 |
`chargeperiod_charge_at` tinyint(1) NOT NULL DEFAULT '0', -- Should fine be given at the start ( 1 ) or the end ( 0 ) of the period |
839 |
`accountsent` int(11) default NULL, -- not used? always NULL |
839 |
`accountsent` int(11) default NULL, -- not used? always NULL |
840 |
`maxissueqty` int(4) default NULL, -- total number of checkouts allowed |
|
|
841 |
`maxonsiteissueqty` int(4) default NULL, -- total number of on-site checkouts allowed |
842 |
`issuelength` int(4) default NULL, -- length of checkout in the unit set in issuingrules.lengthunit |
840 |
`issuelength` int(4) default NULL, -- length of checkout in the unit set in issuingrules.lengthunit |
843 |
`lengthunit` varchar(10) default 'days', -- unit of checkout length (days, hours) |
841 |
`lengthunit` varchar(10) default 'days', -- unit of checkout length (days, hours) |
844 |
`hardduedate` date default NULL, -- hard due date |
842 |
`hardduedate` date default NULL, -- hard due date |
845 |
- |
|
|