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

(-)a/C4/SIP/Sip/MsgType.pm (-9 / +8 lines)
Lines 72-83 my %handlers = ( Link Here
72
        handler  => \&handle_checkout,
72
        handler  => \&handle_checkout,
73
        protocol => {
73
        protocol => {
74
            1 => {
74
            1 => {
75
                template     => "CCA18A18",
75
                template     => "A1A1A18A18",
76
                template_len => 38,
76
                template_len => 38,
77
                fields       => [ (FID_INST_ID), (FID_PATRON_ID), (FID_ITEM_ID), (FID_TERMINAL_PWD) ],
77
                fields       => [ (FID_INST_ID), (FID_PATRON_ID), (FID_ITEM_ID), (FID_TERMINAL_PWD) ],
78
            },
78
            },
79
            2 => {
79
            2 => {
80
                template     => "CCA18A18",
80
                template     => "A1A1A18A18",
81
                template_len => 38,
81
                template_len => 38,
82
                fields       => [ (FID_INST_ID), (FID_PATRON_ID), (FID_ITEM_ID), (FID_TERMINAL_PWD), (FID_ITEM_PROPS), (FID_PATRON_PWD), (FID_FEE_ACK), (FID_CANCEL) ],
82
                fields       => [ (FID_INST_ID), (FID_PATRON_ID), (FID_ITEM_ID), (FID_TERMINAL_PWD), (FID_ITEM_PROPS), (FID_PATRON_PWD), (FID_FEE_ACK), (FID_CANCEL) ],
83
            },
83
            },
Lines 88-99 my %handlers = ( Link Here
88
        handler  => \&handle_checkin,
88
        handler  => \&handle_checkin,
89
        protocol => {
89
        protocol => {
90
            1 => {
90
            1 => {
91
                template     => "CA18A18",
91
                template     => "A1A18A18",
92
                template_len => 37,
92
                template_len => 37,
93
                fields       => [ (FID_CURRENT_LOCN), (FID_INST_ID), (FID_ITEM_ID), (FID_TERMINAL_PWD) ],
93
                fields       => [ (FID_CURRENT_LOCN), (FID_INST_ID), (FID_ITEM_ID), (FID_TERMINAL_PWD) ],
94
            },
94
            },
95
            2 => {
95
            2 => {
96
                template     => "CA18A18",
96
                template     => "A1A18A18",
97
                template_len => 37,
97
                template_len => 37,
98
                fields       => [ (FID_CURRENT_LOCN), (FID_INST_ID), (FID_ITEM_ID), (FID_TERMINAL_PWD), (FID_ITEM_PROPS), (FID_CANCEL) ],
98
                fields       => [ (FID_CURRENT_LOCN), (FID_INST_ID), (FID_ITEM_ID), (FID_TERMINAL_PWD), (FID_ITEM_PROPS), (FID_CANCEL) ],
99
            }
99
            }
Lines 104-110 my %handlers = ( Link Here
104
        handler  => \&handle_block_patron,
104
        handler  => \&handle_block_patron,
105
        protocol => {
105
        protocol => {
106
            1 => {
106
            1 => {
107
                template     => "CA18",
107
                template     => "A1A18",
108
                template_len => 19,
108
                template_len => 19,
109
                fields       => [ (FID_INST_ID), (FID_BLOCKED_CARD_MSG), (FID_PATRON_ID), (FID_TERMINAL_PWD) ],
109
                fields       => [ (FID_INST_ID), (FID_BLOCKED_CARD_MSG), (FID_PATRON_ID), (FID_TERMINAL_PWD) ],
110
            },
110
            },
Lines 115-121 my %handlers = ( Link Here
115
        handler  => \&handle_sc_status,
115
        handler  => \&handle_sc_status,
116
        protocol => {
116
        protocol => {
117
            1 => {
117
            1 => {
118
                template     => "CA3A4",
118
                template     => "A1A3A4",
119
                template_len => 8,
119
                template_len => 8,
120
                fields       => [],
120
                fields       => [],
121
            }
121
            }
Lines 126-132 my %handlers = ( Link Here
126
        handler  => \&handle_request_acs_resend,
126
        handler  => \&handle_request_acs_resend,
127
        protocol => {
127
        protocol => {
128
            1 => {
128
            1 => {
129
                template     => "",
129
                template     => q{},
130
                template_len => 0,
130
                template_len => 0,
131
                fields       => [],
131
                fields       => [],
132
            }
132
            }
Lines 228-234 my %handlers = ( Link Here
228
        handler  => \&handle_renew,
228
        handler  => \&handle_renew,
229
        protocol => {
229
        protocol => {
230
            2 => {
230
            2 => {
231
                template     => "CCA18A18",
231
                template     => "A1A1A18A18",
232
                template_len => 38,
232
                template_len => 38,
233
                fields       => [ (FID_INST_ID), (FID_PATRON_ID), (FID_PATRON_PWD), (FID_ITEM_ID), (FID_TITLE_ID), (FID_TERMINAL_PWD), (FID_ITEM_PROPS), (FID_FEE_ACK) ],
233
                fields       => [ (FID_INST_ID), (FID_PATRON_ID), (FID_PATRON_PWD), (FID_ITEM_ID), (FID_TITLE_ID), (FID_TERMINAL_PWD), (FID_ITEM_PROPS), (FID_FEE_ACK) ],
234
            }
234
            }
235
- 

Return to bug 12225