View | Details | Raw Unified | Return to bug 13321
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 2774-2780 CREATE TABLE `aqbooksellers` ( -- information about the vendors listed in acquis Link Here
2774
  `gstreg` tinyint(4) default NULL, -- is your library charged tax (1 for yes, 0 for no)
2774
  `gstreg` tinyint(4) default NULL, -- is your library charged tax (1 for yes, 0 for no)
2775
  `listincgst` tinyint(4) default NULL, -- is tax included in list prices (1 for yes, 0 for no)
2775
  `listincgst` tinyint(4) default NULL, -- is tax included in list prices (1 for yes, 0 for no)
2776
  `invoiceincgst` tinyint(4) default NULL, -- is tax included in invoice prices (1 for yes, 0 for no)
2776
  `invoiceincgst` tinyint(4) default NULL, -- is tax included in invoice prices (1 for yes, 0 for no)
2777
  `gstrate` decimal(6,4) default NULL, -- the tax rate the library is charged
2777
  `tax_rate` decimal(6,4) default NULL, -- the tax rate the library is charged
2778
  `discount` float(6,4) default NULL, -- discount offered on all items ordered from this vendor
2778
  `discount` float(6,4) default NULL, -- discount offered on all items ordered from this vendor
2779
  `fax` varchar(50) default NULL, -- vendor fax number
2779
  `fax` varchar(50) default NULL, -- vendor fax number
2780
  deliverytime int(11) default NULL, -- vendor delivery time
2780
  deliverytime int(11) default NULL, -- vendor delivery time
2781
- 

Return to bug 13321