Changes between Version 3 and Version 4 of IdLabelPrinting


Ignore:
Timestamp:
06/09/11 18:27:41 (13 years ago)
Author:
Nick Holden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IdLabelPrinting

    v3 v4  
    1919There is a comparable set of files on the hospital dev and devdb VMs.
    2020
     21== Technical info on printers ==
     22
     23SAMPLE LABEL PRINTER
     24ZBR3687851
     25When on University: 143.210.247.156
     26When on Hospital: 125.200.4.45
     27
     28BAG LABEL PRINTER
     29ZBR3688678
     30When on University: 143.210.247.187
     31When on Hospital: 125.200.4.46
     32
     33University:
     34Subnet Mask: 255.255.255.000
     35Default Gateway: 143.210.247.001
     36WINS server IP: 000.000.000.000
     37
     38Hospital:
     39Subnet mask: 255.0.0.0
     40Default Gateway: 125.100.100.100
     41WINS server IP: 10.147.126.165
     42
     43== MySQL configuration ==
     44
     45
     46+---------------------+
     47| Tables_in_briccsids |
     48+---------------------+
     49| identifiers         |
     50| idranges            |
     51+---------------------+
     522 rows in set (0.01 sec)
     53
     54mysql> describe identifiers;
     55+-------+-------------+------+-----+---------+-------+
     56| Field | Type        | Null | Key | Default | Extra |
     57+-------+-------------+------+-----+---------+-------+
     58| ID    | varchar(32) | NO   | PRI | NULL    |       |
     59+-------+-------------+------+-----+---------+-------+
     601 row in set (0.02 sec)
     61
     62mysql> describe idranges;
     63+-----------+-------------+------+-----+---------+-------+
     64| Field     | Type        | Null | Key | Default | Extra |
     65+-----------+-------------+------+-----+---------+-------+
     66| PK        | varchar(64) | NO   | PRI | NULL    |       |
     67| PREFIX    | varchar(8)  | NO   |     | NULL    |       |
     68| FROMVALUE | bigint(20)  | NO   |     | NULL    |       |
     69| TOVALUE   | bigint(20)  | NO   |     | NULL    |       |
     70| STATUS    | varchar(8)  | NO   |     | NULL    |       |
     71+-----------+-------------+------+-----+---------+-------+
     725 rows in set (0.00 sec)