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

(-)a/C4/Items.pm (-13 / +26 lines)
Lines 975-983 sub GetLostItems { Link Here
975
975
976
=head2 GetItemsForInventory
976
=head2 GetItemsForInventory
977
977
978
  $itemlist = GetItemsForInventory($minlocation, $maxlocation, 
978
($itemlist, $iTotalRecords)  = GetItemsForInventory($minlocation, $maxlocation, $location, $itemtype, $ignoreissued, $datelastseen, $branchcode, $offset, $size, $statushash);
979
                 $location, $itemtype $datelastseen, $branch, 
980
                 $offset, $size, $statushash);
981
979
982
Retrieve a list of title/authors/barcode/callnumber, for biblio inventory.
980
Retrieve a list of title/authors/barcode/callnumber, for biblio inventory.
983
981
Lines 990-995 the datelastseen can be used to specify that you want to see items not seen sinc Link Here
990
offset & size can be used to retrieve only a part of the whole listing (defaut behaviour)
988
offset & size can be used to retrieve only a part of the whole listing (defaut behaviour)
991
$statushash requires a hashref that has the authorized values fieldname (intems.notforloan, etc...) as keys, and an arrayref of statuscodes we are searching for as values.
989
$statushash requires a hashref that has the authorized values fieldname (intems.notforloan, etc...) as keys, and an arrayref of statuscodes we are searching for as values.
992
990
991
$iTotalRecords is the number of rows that would have been returned without the $offset, $size limit clause
992
993
=cut
993
=cut
994
994
995
sub GetItemsForInventory {
995
sub GetItemsForInventory {
Lines 998-1004 sub GetItemsForInventory { Link Here
998
    my ( @bind_params, @where_strings );
998
    my ( @bind_params, @where_strings );
999
999
1000
    my $query = <<'END_SQL';
1000
    my $query = <<'END_SQL';
1001
SELECT items.itemnumber, barcode, itemcallnumber, title, author, biblio.biblionumber, datelastseen
1001
SELECT SQL_CALC_FOUND_ROWS items.itemnumber, barcode, itemcallnumber, title, author, biblio.biblionumber, biblio.frameworkcode, datelastseen, homebranch, location, notforloan, damaged, itemlost, stocknumber
1002
FROM items
1002
FROM items
1003
  LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
1003
  LEFT JOIN biblio ON items.biblionumber = biblio.biblionumber
1004
  LEFT JOIN biblioitems on items.biblionumber = biblioitems.biblionumber
1004
  LEFT JOIN biblioitems on items.biblionumber = biblioitems.biblionumber
Lines 1041-1047 END_SQL Link Here
1041
        }
1041
        }
1042
        push @bind_params, $branchcode;
1042
        push @bind_params, $branchcode;
1043
    }
1043
    }
1044
    
1044
1045
    if ( $itemtype ) {
1045
    if ( $itemtype ) {
1046
        push @where_strings, 'biblioitems.itemtype = ?';
1046
        push @where_strings, 'biblioitems.itemtype = ?';
1047
        push @bind_params, $itemtype;
1047
        push @bind_params, $itemtype;
Lines 1057-1076 END_SQL Link Here
1057
        $query .= join ' AND ', @where_strings;
1057
        $query .= join ' AND ', @where_strings;
1058
    }
1058
    }
1059
    $query .= ' ORDER BY items.cn_sort, itemcallnumber, title';
1059
    $query .= ' ORDER BY items.cn_sort, itemcallnumber, title';
1060
    $query .= " LIMIT $offset, $size" if ($offset and $size);
1060
    my $sth = $dbh->prepare($query);
1061
    my $sth = $dbh->prepare($query);
1061
    $sth->execute( @bind_params );
1062
    $sth->execute( @bind_params );
1062
1063
1063
    my @results;
1064
    my @results;
1064
    $size--;
1065
    my $tmpresults = $sth->fetchall_arrayref({});
1065
    while ( my $row = $sth->fetchrow_hashref ) {
1066
    $sth = $dbh->prepare("SELECT FOUND_ROWS()");
1066
        $offset-- if ($offset);
1067
    $sth->execute();
1067
        $row->{datelastseen}=format_date($row->{datelastseen});
1068
    my ($iTotalRecords) = $sth->fetchrow_array();
1068
        if ( ( !$offset ) && $size ) {
1069
1069
            push @results, $row;
1070
    foreach my $row (@$tmpresults) {
1070
            $size--;
1071
        $row->{datelastseen} = format_date( $row->{datelastseen} );
1072
1073
        # Auth values
1074
        foreach (keys %$row) {
1075
            # If the koha field is mapped to a marc field
1076
            my ($f, $sf) = GetMarcFromKohaField("items.$_", $row->{'frameworkcode'});
1077
            if ($f and $sf) {
1078
                # We replace the code with it's description
1079
                my $authvals = C4::Koha::GetKohaAuthorisedValuesFromField($f, $sf, $row->{'frameworkcode'});
1080
                $row->{$_} = $authvals->{$row->{$_}} if defined $authvals->{$row->{$_}};
1081
            }
1071
        }
1082
        }
1083
        push @results, $row;
1072
    }
1084
    }
1073
    return \@results;
1085
1086
    return (\@results, $iTotalRecords);
1074
}
1087
}
1075
1088
1076
=head2 GetItemsCount
1089
=head2 GetItemsCount
(-)a/C4/Templates.pm (-1 / +1 lines)
Lines 360-366 sub getlanguage { Link Here
360
    }
360
    }
361
361
362
    # cookie
362
    # cookie
363
    if ( $query->cookie('KohaOpacLanguage') ) {
363
    if ($query and $query->cookie('KohaOpacLanguage') ) {
364
        $lang = $query->cookie('KohaOpacLanguage');
364
        $lang = $query->cookie('KohaOpacLanguage');
365
        $lang =~ s/[^a-zA-Z_-]*//; # sanitize cookie
365
        $lang =~ s/[^a-zA-Z_-]*//; # sanitize cookie
366
    }
366
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/columns.def (+1 lines)
Lines 138-140 biblioitems.place Place of publication Link Here
138
biblioitems.lccn	LCCN
138
biblioitems.lccn	LCCN
139
biblioitems.marcxml	MARC blob
139
biblioitems.marcxml	MARC blob
140
biblioitems.url	URL
140
biblioitems.url	URL
141
biblioitems.title	Title
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt (-108 / +134 lines)
Lines 1-30 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Tools &rsaquo; Inventory</title>
2
<title>Koha &rsaquo; Tools &rsaquo; Inventory</title>
3
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
4
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
5
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
6
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>
4
[% INCLUDE 'calendar.inc' %]
7
[% INCLUDE 'calendar.inc' %]
5
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
8
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
6
<script type="text/javascript">
9
<script type="text/javascript">
7
//<![CDATA[
10
//<![CDATA[
8
$(document).ready(function(){
11
$(document).ready(function(){
9
	$(".checkall").click(function(){
12
10
	        $(".checkboxed").checkCheckboxes();
13
        inventorydt = $('#inventoryt').dataTable($.extend(true, {}, dataTablesDefaults, {
11
	        return false;
14
            'sPaginationType': 'full_numbers',
12
		});
15
            "aoColumnDefs": [ { "bSortable": false, "aTargets": [ 0 ] } ]
13
	$(".clearall").click(function(){
16
        } ));
14
	        $(".checkboxed").unCheckCheckboxes();
17
15
	        return false;
18
16
	    });
19
    $("#continuewithoutmarkingbutton").click(function(){
20
                inventorydt.fnPageChange( 'next' );
21
            return false;
22
        });
23
24
        $("#markseenandcontinuebutton").click(function(){
25
            var param = '';
26
            $("input:checked").each(function() {
27
                param += "|" + $(this).attr('name');
28
            });
29
            $.post('/cgi-bin/koha/tools/ajax-inventory.pl', { seen: param });
30
            inventorydt.fnPageChange( 'next' );
31
            return false;
32
        });
33
34
        $("#markseenandquit").click(function(){
35
            var param = '';
36
            $("input:checked").each(function() {
37
                param += "|" + $(this).attr('name');
38
            });
39
            $.ajax({
40
              type: 'POST',
41
              url: '/cgi-bin/koha/tools/ajax-inventory.pl',
42
              data: { seen: param},
43
              async: false
44
            });
45
            document.location.href = '/cgi-bin/koha/tools/inventory.pl';
46
            return false;
47
        });
48
49
50
51
    $(".checkall").click(function(){
52
            $(".checkboxed").checkCheckboxes();
53
            return false;
54
        });
55
    $(".clearall").click(function(){
56
            $(".checkboxed").unCheckCheckboxes();
57
            return false;
58
        });
17
[% IF ( offset ) %]$("#markseen").before("<input type=\"submit\" value=\"&lt;&lt; " + _("Mark seen and continue") + "\" id=\"markback\" /> ");[% END %]
59
[% IF ( offset ) %]$("#markseen").before("<input type=\"submit\" value=\"&lt;&lt; " + _("Mark seen and continue") + "\" id=\"markback\" /> ");[% END %]
18
[% IF ( nextoffset ) %]$("#markseen").after(" <input type=\"submit\" id=\"marknext\" value=\"" + _("Mark seen and continue") + " &gt;&gt;\" />");[% END %]
60
[% IF ( nextoffset ) %]$("#markseen").after(" <input type=\"submit\" id=\"marknext\" value=\"" + _("Mark seen and continue") + " &gt;&gt;\" />");[% END %]
19
	$("#markback").click(function(){
61
    $("#markback").click(function(){
20
		$(".checkboxed").find("input").filter("[name=offset]").attr("value","[% prevoffset %]");
62
        $(".checkboxed").find("input").filter("[name=offset]").attr("value","[% prevoffset %]");
21
		return true;
63
        return true;
22
	});
64
    });
23
	$("#marknext").click(function(){
65
    $("#marknext").click(function(){
24
		$(".checkboxed").find("input").filter("[name=offset]").attr("value","[% nextoffset %]");
66
        $(".checkboxed").find("input").filter("[name=offset]").attr("value","[% nextoffset %]");
25
		return true;
67
        return true;
26
	});
68
    });
27
	});
69
    });
28
//]]>
70
//]]>
29
</script>
71
</script>
30
</head>
72
</head>
Lines 32-65 $(document).ready(function(){ Link Here
32
[% INCLUDE 'header.inc' %]
74
[% INCLUDE 'header.inc' %]
33
[% INCLUDE 'cat-search.inc' %]
75
[% INCLUDE 'cat-search.inc' %]
34
76
35
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; [% IF ( loop ) %]<a href="/cgi-bin/koha/tools/inventory.pl">Inventory</a> &rsaquo; Results[% ELSE %]Inventory[% END %]</div>
77
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; [% IF (loop) %]<a href="/cgi-bin/koha/tools/inventory.pl">Inventory</a> &rsaquo; Results[% ELSE %]Inventory[% END %]</div>
36
78
37
<div id="doc3" class="yui-t2">
79
<div id="doc3" class="yui-t2">
38
   
80
39
   <div id="bd">
81
   <div id="bd">
40
	<div id="yui-main">
82
    <div id="yui-main">
41
	<div class="yui-b">
83
    <div class="yui-b">
42
    <h1>Inventory/Stocktaking</h1>
84
    <h1>Inventory/Stocktaking</h1>
43
    [% IF ( Number ) %]<div class="dialog message">[% Number %] items modified : datelastseen set to [% date %]</div>[% END %]
85
    [% IF (moddatecount) %]<div class="dialog message">[% moddatecount %] items modified : datelastseen set to [% date %]</div>[% END %]
44
    [% IF ( errorfile ) %]<div class="dialog alert">[% errorfile %] can't be opened</div>[% END %]
86
    [% IF (errorfile) %]<div class="dialog alert">[% errorfile %] can't be opened</div>[% END %]
45
    [% FOREACH errorloo IN errorloop %]
87
    [% FOREACH error IN errorloop %]
46
        <div class="dialog alert">
88
        <div class="dialog alert">
47
            [% errorloo.barcode %]
89
            [% error.barcode %]
48
            [% IF ( errorloo.ERR_BARCODE ) %]: barcode not found[% END %]
90
            [% IF (error.ERR_BARCODE) %]: barcode not found[% END %]
49
            [% IF ( errorloo.ERR_WTHDRAWN ) %]: item withdrawn[% END %]
91
            [% IF (error.ERR_WTHDRAWN) %]: item withdrawn[% END %]
50
            [% IF ( errorloo.ERR_ONLOAN_RET ) %]: item was on loan. It was returned before marked as seen[% END %]
92
            [% IF (error.ERR_ONLOAN_RET) %]: item was on loan. It was returned before marked as seen[% END %]
51
            [% IF ( errorloo.ERR_ONLOAN_NOT_RET ) %]: item was on loan. couldn't be returned.[% END %]
93
            [% IF (error.ERR_ONLOAN_NOT_RET) %]: item was on loan. couldn't be returned.[% END %]
52
        </div>
94
        </div>
53
    [% END %]
95
    [% END %]
54
	[% UNLESS ( loop ) %]
96
       [% UNLESS op %]
55
	<div class="yui-g">
97
    <div class="yui-g">
56
    <form method="post" action="/cgi-bin/koha/tools/inventory.pl" enctype="multipart/form-data">
98
    <form method="post" action="/cgi-bin/koha/tools/inventory.pl" enctype="multipart/form-data">
57
        <fieldset class="rows">
99
        <fieldset class="rows">
58
            <legend>Use a barcode file</legend>
100
            <legend>Use a barcode file</legend>
59
	 <ol>
101
     <ol>
60
            <li><label for="uploadbarcodes">Barcode file: </label> <input type="file" id="uploadbarcodes" name="uploadbarcodes" /></li>
102
            <li><label for="uploadbarcodes">Barcode file: </label> <input type="file" id="uploadbarcodes" name="uploadbarcodes" /></li>
61
            <li><label for="setdate">Set inventory date to:</label> <input type="text" id="setdate" name="setdate" value="[% today %]" class="datepicker" />
103
            <li><label for="setdate">Set inventory date to:</label> <input type="text" id="setdate" name="setdate" value="[% today %]" class="datepickerfrom" />
62
			<div class="hint">[% INCLUDE 'date-format.inc' %]</div>
63
            </li>
104
            </li>
64
          </ol>
105
          </ol>
65
        </fieldset>
106
        </fieldset>
Lines 81-123 $(document).ready(function(){ Link Here
81
        [% END %]
122
        [% END %]
82
        </select>
123
        </select>
83
        </li>
124
        </li>
84
        [% IF ( authorised_values ) %]
125
        [% IF (authorised_values) %]
85
        <li>
126
        <li>
86
            <label for="locationloop">Shelving location (items.location) is: </label>
127
            <label for="locationloop">Shelving location (items.location) is: </label>
87
        <select id="locationloop" name="location">
128
        <select id="locationloop" name="location">
88
                <option value="">Filter location</option>
129
                <option value="">Filter location</option>
89
        [% FOREACH authorised_value IN authorised_values %]
130
        [% FOREACH value IN authorised_values %]
90
            [% IF ( authorised_value.selected ) %]
131
            [% IF (value.selected) %]
91
                <option value="[% authorised_value.authorised_value %]" selected="selected">[% authorised_value.lib %]</option>
132
                <option value="[% value.authorised_value %]" selected="selected">[% value.lib %]</option>
92
            [% ELSE %]
133
            [% ELSE %]
93
                <option value="[% authorised_value.authorised_value %]">[% authorised_value.lib %]</option>
134
                <option value="[% value.authorised_value %]">[% value.lib %]</option>
94
            [% END %]
135
            [% END %]
95
        [% END %]
136
        [% END %]
96
        </select>        </li>
137
        </select>        </li>
97
        [% END %]
138
        [% END %]
98
        <li>
139
        <li>
99
            <label for="minlocation">Item call number between: </label>
140
            <label for="minlocation">Item callnumber between: </label>
100
                <input type="text" name="minlocation" id="minlocation" value="[% minlocation %]" /> (items.itemcallnumber)  </li>
141
                <input type="text" name="minlocation" id="minlocation" value="[% minlocation %]" /> (items.itemcallnumber)  </li>
101
           <li><label for="maxlocation">...and: </label>
142
           <li><label for="maxlocation">...and: </label>
102
                <input type="text" name="maxlocation" id="maxlocation" value="[% maxlocation %]" />
143
                <input type="text" name="maxlocation" id="maxlocation" value="[% maxlocation %]" />
103
        </li>
144
        </li>
104
        [% IF ( statuses ) %]
145
        [% IF (statuses) %]
105
	</ol>
146
    </ol>
106
	</fieldset>
147
    </fieldset>
107
            <fieldset class="rows">
148
            <fieldset class="rows">
108
            <legend>Item statuses</legend>
149
            <legend>Item statuses</legend>
109
            <div name="statuses" style="display: block;">
150
            <div name="statuses" style="display: block;">
110
                  [% FOREACH statuse IN statuses %]
151
                  [% FOREACH status IN statuses %]
111
                      [% IF ( statuse.values ) %]
152
                      [% IF (status.values) %]
112
                          <fieldset style="float: left; padding: 5px; margin: 5px;text-align:right">
153
                          <fieldset style="float: left; padding: 5px; margin: 5px;text-align:right">
113
                              <legend>[% statuse.fieldname %]</legend>
154
                              <legend>[% status.fieldname %]</legend>
114
                              <ul id="statuses-[% statuse.fieldname %]" style="display: inline;">
155
                              <ul id="statuses-[% fieldname %]" style="display: inline;">
115
                              [% FOREACH value IN statuse.values %]
156
                              [% FOREACH value IN status.values %]
116
                                  [% IF ( value.lib ) %]<li>
157
                                  [% IF (value.lib) %]<li>
117
                                    <label for="[% value.id %]">
158
                                    <label for="[% value.id %]">
118
                                      [% value.lib %]
159
                                      [% value.lib %]
119
                                    </label>
160
                                    </label>
120
                                    <input type="checkbox" name="status-[% value.fieldname %]-[% value.id %]" id="[% value.id %]" />
161
                                    <input type="checkbox" name="status-[% status.fieldname %]-[% value.authorised_value %]" id="[% value.authorised_value %]" />
121
                                  </li>[% END %]
162
                                  </li>[% END %]
122
                              [% END %]
163
                              [% END %]
123
                              </ul>
164
                              </ul>
Lines 126-150 $(document).ready(function(){ Link Here
126
                  [% END %]
167
                  [% END %]
127
                </div>
168
                </div>
128
            </fieldset>
169
            </fieldset>
129
		<fieldset class="rows">
170
        <fieldset class="rows">
130
          <ol>
171
          <ol>
131
        [% END %]
172
        [% END %]
132
173
133
        <li><label for="datelastseen">Inventory date:</label>
174
        <li><label for="datelastseen">Inventory date:</label>
134
            <input type="text" id="datelastseen" name="datelastseen" value="[% datelastseen %]" class="datepicker"/>
175
            <input type="text" id="datelastseen" name="datelastseen" value="[% datelastseen %]" class="datepickerfrom" />
135
			<div class="hint">[% INCLUDE 'date-format.inc' %]</div>
136
        </li>
176
        </li>
137
        <li><label for="ignoreissued">Skip copies on loan: </label>
177
        <li><label for="ignoreissued">Skip copies on loan: </label>
138
            [% IF ( ignoreissued ) %]
178
            [% IF (ignoreissued) %]
139
            <input type="checkbox" id="ignoreissued" name="ignoreissued" checked="checked" /></li>
179
            <input type="checkbox" id="ignoreissued" name="ignoreissued" checked="checked" /></li>
140
            [% ELSE %]
180
            [% ELSE %]
141
            <input type="checkbox" id="ignoreissued" name="ignoreissued" /></li>
181
            <input type="checkbox" id="ignoreissued" name="ignoreissued" /></li>
142
            [% END %]
182
            [% END %]
143
        <li><label for="pagesize">Show: </label>
144
            <input type="text" id="pagesize" name="pagesize" value="[% pagesize %]" maxlength="5" size="5" /> items</li>
145
          <li><label for="offset">Beginning at offset: </label>
146
            <input type="text" id="offset" name="offset" value="[% offset %]" size="5" maxlength="5" />
147
        </li>
148
        <li>
183
        <li>
149
           <label for="CSVexport">Export to CSV file: </label>
184
           <label for="CSVexport">Export to CSV file: </label>
150
           <input type="checkbox" name="CSVexport" id="CSVexport" />
185
           <input type="checkbox" name="CSVexport" id="CSVexport" />
Lines 158-167 $(document).ready(function(){ Link Here
158
            <input type="hidden" name="op" value="do_it" />
193
            <input type="hidden" name="op" value="do_it" />
159
            <fieldset class="action"><input type="submit" value="Submit" class="button" /></fieldset>
194
            <fieldset class="action"><input type="submit" value="Submit" class="button" /></fieldset>
160
    </form>
195
    </form>
161
	</div>
196
    </div>
162
	</div>
197
    </div>
163
	[% END %]
198
    [% END %]
164
    [% IF ( loop ) %]
199
    [% IF (op) %]
165
    <form method="post" action="/cgi-bin/koha/tools/inventory.pl" class="checkboxed">
200
    <form method="post" action="/cgi-bin/koha/tools/inventory.pl" class="checkboxed">
166
    <input type="hidden" name="markseen" value="1" />
201
    <input type="hidden" name="markseen" value="1" />
167
    <input type="hidden" name="minlocation" value="[% minlocation %]" />
202
    <input type="hidden" name="minlocation" value="[% minlocation %]" />
Lines 171-244 $(document).ready(function(){ Link Here
171
    <input type="hidden" name="datelastseen" value="[% datelastseen %]" />
206
    <input type="hidden" name="datelastseen" value="[% datelastseen %]" />
172
    <input type="hidden" name="pagesize" value="[% pagesize %]" />
207
    <input type="hidden" name="pagesize" value="[% pagesize %]" />
173
    <input type="hidden" name="offset" value="[% offset %]" />
208
    <input type="hidden" name="offset" value="[% offset %]" />
174
    <div style="padding : .3em 0"><a href="#" class="checkall">[Select all]</a> <a href="#" class="clearall">[Clear all]</a></div>
209
    <div><a href="#" class="checkall">[Select All]</a> <a href="#" class="clearall">[Clear All]</a></div>
175
    <table>
210
    <table id="inventoryt">
211
    <thead>
176
        <tr>
212
        <tr>
177
            <th>Seen</th>
213
            <th>Seen</th>
178
            <th>Barcode</th>
214
            <th>Barcode</th>
215
            <th>Location</th>
179
            <th>Title</th>
216
            <th>Title</th>
217
            <th>Status</th>
218
            <th>Lost</th>
219
            <th>Damaged</th>
180
            <th>Unseen since</th>
220
            <th>Unseen since</th>
181
            <th>Problems</th>
221
            <th>Problems</th>
182
        </tr>
222
        </tr>
183
    [% FOREACH loo IN loop %]
223
    </thead>
224
    <tbody>
225
    [% FOREACH result IN loop %]
184
        <tr>
226
        <tr>
185
            <td>
227
            <td>
186
                <input type="checkbox" name="SEEN-[% loo.itemnumber %]" value="1" />
228
            <input type="checkbox" name="SEEN-[% result.itemnumber %]" value="1" />
187
            </td>
229
            </td>
188
            <td>
230
            <td>
189
                [% loo.barcode %]
231
            [% result.barcode | html %]
190
            </td>
232
            </td>
191
            <td>
233
            <td>
192
                <p><b>[% loo.itemcallnumber %]</b> - <a href="#" onclick="window.open('/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% loo.biblionumber %]','marcview','width=800,height=600,toolbar=0,scrollbars=1');">[% loo.title |html %]</a></p>
234
            [% result.homebranch | html %] [% result.location | html %] [[% result.itemcallnumber | html %]]
193
                <p>[% loo.author %]</p>
194
            </td>
235
            </td>
195
            <td>
236
            <td>
196
                <p>[% loo.datelastseen %]</p>
237
            <p><a href="#" onclick="window.open('/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% result.biblionumber %]','marcview','width=800,height=600,toolbar=0,scrollbars=1');">[% result.title | html %]</a></p><p>[% result.author | html %]</p>
197
            </td>
238
            </td>
198
            <td>
239
            <td>
199
                 [% IF ( loo.notfoundbarcode ) %]
240
            [% result.notforloan | html %]
200
                     <p style="background: red;">Not found among barcodes in barcodes file.</p>
241
            </td>
201
                 [% ELSIF ( loo.notfoundkoha ) %]
242
            <td>
202
                     <p style="background: red;">Not found in Koha.</p>
243
            [% result.itemlost | html %]
203
                 [% ELSE %]
244
            </td>
204
                     <p style="background: green;">None</p>
245
            <td>
205
                 [% END %]
246
            [% result.damaged | html %]
247
            </td>
248
            <td>
249
            [% result.datelastseen | html %]
250
            </td>
251
            <td>
252
            [% IF (result.wrongplace) %]<p>Item should not have been scanned</p>[% ELSIF (result.missingitem) %]<p>Item missing</p>[% ELSIF (result.changestatus) %]<p>Change item status</p>[% END %]
206
            </td>
253
            </td>
207
        </tr>
254
        </tr>
208
    [% END %]
255
    [% END %]
256
    </tbody>
209
    </table>
257
    </table>
210
    <div style="padding : .3em 0"><a href="#" class="checkall">[Select all]</a> <a href="#" class="clearall">[Clear all]</a></div>
258
    <div class="spacer"></div>
211
     <input type="submit" id="markseen" value="Mark seen" />
259
      <p style="display:block;"><span class="exportSelected"></span></p>
212
    </form>
260
    <div style="padding : .3em 0"><a href="#" class="checkall">[Select All]</a> <a href="#" class="clearall">[Clear All]</a></div>
213
    [% IF ( offset ) %]
261
     <input type="submit" id="markseenandquit" value="Mark seen and quit" />
214
    <form method="post" action="/cgi-bin/koha/tools/inventory.pl">
262
     <input type="submit" value="Mark Seen and Continue &gt;&gt;" id="markseenandcontinuebutton" />
215
        <input type="hidden" name="branch" value="[% branch %]" />
263
     <input type="submit" value="Continue without Marking &gt;&gt;" id="continuewithoutmarkingbutton" class="submit" />
216
        <input type="hidden" name="minlocation" value="[% minlocation %]" />
217
        <input type="hidden" name="maxlocation" value="[% maxlocation %]" />
218
        <input type="hidden" name="location" value="[% location %]" />
219
        <input type="hidden" name="branchcode" value="[% branchcode %]" />
220
        <input type="hidden" name="datelastseen" value="[% datelastseen %]" />
221
        <input type="hidden" name="pagesize" value="[% pagesize %]" />
222
        <input type="hidden" name="offset" value="[% prevoffset %]" />
223
        <input type="hidden" name="op" value="do_it" />
224
        <input type="submit" value="&lt;&lt; Continue without marking" class="submit" />
225
    </form>
226
    [% END %]
227
    [% IF ( nextoffset ) %]
228
    <form method="post">
229
        <input type="hidden" name="branch" value="[% branch %]" />
230
        <input type="hidden" name="location" value="[% location %]" />
231
        <input type="hidden" name="branchcode" value="[% branchcode %]" />
232
        <input type="hidden" name="minlocation" value="[% minlocation %]" />
233
        <input type="hidden" name="maxlocation" value="[% maxlocation %]" />
234
        <input type="hidden" name="datelastseen" value="[% datelastseen %]" />
235
        <input type="hidden" name="pagesize" value="[% pagesize %]" />
236
        <input type="hidden" name="offset" value="[% nextoffset %]" />
237
        <input type="hidden" name="op" value="do_it" />
238
        <input type="submit" value="Continue without marking &gt;&gt;" class="submit" />
239
    </form>
264
    </form>
265
240
    </div>
266
    </div>
241
    [% END %]
267
242
    [% END %]
268
    [% END %]
243
</div>
269
</div>
244
<div class="yui-b">
270
<div class="yui-b">
(-)a/tools/ajax-inventory.pl (+43 lines)
Line 0 Link Here
1
#!/usr/bin/perl
2
#
3
4
use Modern::Perl;
5
6
use CGI;
7
use JSON;
8
9
use C4::Auth;
10
use C4::Circulation qw/CanBookBeRenewed/;
11
use C4::Context;
12
use C4::Koha qw/getitemtypeimagelocation/;
13
use C4::Reserves qw/CheckReserves/;
14
use C4::Utils::DataTables;
15
use C4::Output;
16
use C4::Biblio;
17
use C4::Items;
18
use C4::Dates qw/format_date format_date_in_iso/;
19
use C4::Koha;
20
use C4::Branch;    # GetBranches
21
use C4::Reports::Guided;    #_get_column_defs
22
use C4::Charset;
23
use List::MoreUtils qw /none/;
24
25
26
my $input = new CGI;
27
28
# Authentication
29
my ($status, $cookie, $sessionId) = C4::Auth::check_api_auth($input, { tools => 'inventory' });
30
exit unless ($status eq "ok");
31
32
33
my $seen = $input->param('seen');
34
my @seent = split(/\|/, $seen);
35
36
# mark seen if applicable (ie: coming form mark seen checkboxes)
37
foreach ( @seent ) {
38
    /SEEN-(.+)/ and &ModDateLastSeen($1);
39
}
40
41
42
print $input->header('application/json');
43
(-)a/tools/inventory.pl (-82 / +198 lines)
Lines 35-40 use C4::Dates qw/format_date format_date_in_iso/; Link Here
35
use C4::Koha;
35
use C4::Koha;
36
use C4::Branch; # GetBranches
36
use C4::Branch; # GetBranches
37
use C4::Circulation;
37
use C4::Circulation;
38
use C4::Reports::Guided;    #_get_column_defs
39
use C4::Charset;
40
use List::MoreUtils qw/none/;
41
38
42
39
my $minlocation=$input->param('minlocation') || '';
43
my $minlocation=$input->param('minlocation') || '';
40
my $maxlocation=$input->param('maxlocation');
44
my $maxlocation=$input->param('maxlocation');
Lines 50-75 my $pagesize = $input->param('pagesize'); Link Here
50
$pagesize=50 unless $pagesize;
54
$pagesize=50 unless $pagesize;
51
my $branchcode = $input->param('branchcode') || '';
55
my $branchcode = $input->param('branchcode') || '';
52
my $branch     = $input->param('branch');
56
my $branch     = $input->param('branch');
53
my $op = $input->param('op');
57
my $op         = $input->param('op');
54
my $res;    #contains the results loop
58
my $compareinv2barcd = $input->param('compareinv2barcd');
55
# warn "uploadbarcodes : ".$uploadbarcodes;
59
my $res;                                            #contains the results loop
56
# use Data::Dumper; warn Dumper($input);
60
57
61
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
58
my ($template, $borrowernumber, $cookie)
62
    {   template_name   => "tools/inventory.tmpl",
59
    = get_template_and_user({template_name => "tools/inventory.tmpl",
63
        query           => $input,
60
                query => $input,
64
        type            => "intranet",
61
                type => "intranet",
65
        authnotrequired => 0,
62
                authnotrequired => 0,
66
        flagsrequired   => { tools => 'inventory' },
63
                flagsrequired => {tools => 'inventory'},
67
        debug           => 1,
64
                debug => 1,
68
    }
65
                });
69
);
70
66
71
67
my $branches = GetBranches();
72
my $branches = GetBranches();
68
my @branch_loop;
73
my @branch_loop;
69
for my $branch_hash (keys %$branches) {
74
for my $branch_hash (keys %$branches) {
70
	push @branch_loop, {value => "$branch_hash",
75
    push @branch_loop, {value => "$branch_hash",
71
	                   branchname => $branches->{$branch_hash}->{'branchname'}, 
76
                       branchname => $branches->{$branch_hash}->{'branchname'},
72
	                   selected => ($branch_hash eq $branchcode?1:0)};	
77
                       selected => ($branch_hash eq $branchcode?1:0)};
73
}
78
}
74
79
75
@branch_loop = sort {$a->{branchname} cmp $b->{branchname}} @branch_loop;
80
@branch_loop = sort {$a->{branchname} cmp $b->{branchname}} @branch_loop;
Lines 87-93 for my $fwk (keys %$frameworks){ Link Here
87
      my $data=GetAuthorisedValues($authcode);
92
      my $data=GetAuthorisedValues($authcode);
88
      foreach my $value (@$data){
93
      foreach my $value (@$data){
89
        $value->{selected}=1 if ($value->{authorised_value} eq ($location));
94
        $value->{selected}=1 if ($value->{authorised_value} eq ($location));
90
      }      
95
      }
91
      push @authorised_value_list,@$data;
96
      push @authorised_value_list,@$data;
92
    }
97
    }
93
}
98
}
Lines 103-160 for my $statfield (qw/items.notforloan items.itemlost items.withdrawn items.dama Link Here
103
        push @$statuses, $hash;
108
        push @$statuses, $hash;
104
    }
109
    }
105
}
110
}
111
112
106
$template->param( statuses => $statuses );
113
$template->param( statuses => $statuses );
107
my $staton = {};								#authorized values that are ticked
114
my $staton = {};                                #authorized values that are ticked
108
for my $authvfield (@$statuses) {
115
for my $authvfield (@$statuses) {
109
    $staton->{$authvfield->{fieldname}} = [];
116
    $staton->{$authvfield->{fieldname}} = [];
110
    for my $authval (@{$authvfield->{values}}){
117
    for my $authval (@{$authvfield->{values}}){
111
        if ( defined $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{id}) && $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{id}) eq 'on' ){
118
        if ( defined $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{authorised_value}) && $input->param('status-' . $authvfield->{fieldname} . '-' . $authval->{authorised_value}) eq 'on' ){
112
            push @{$staton->{$authvfield->{fieldname}}}, $authval->{id};
119
            push @{$staton->{$authvfield->{fieldname}}}, $authval->{authorised_value};
113
        }
120
        }
114
    }
121
    }
115
}
122
}
116
123
124
my $notforloanlist;
117
my $statussth = '';
125
my $statussth = '';
118
for my $authvfield (@$statuses) {
126
for my $authvfield (@$statuses) {
119
    if ( scalar @{$staton->{$authvfield->{fieldname}}} > 0 ){
127
    if ( scalar @{$staton->{$authvfield->{fieldname}}} > 0 ){
120
        my $joinedvals = join ',', @{$staton->{$authvfield->{fieldname}}};
128
        my $joinedvals = join ',', @{$staton->{$authvfield->{fieldname}}};
121
        $statussth .= "$authvfield->{fieldname} in ($joinedvals) and ";
129
        $statussth .= "$authvfield->{fieldname} in ($joinedvals) and ";
130
        $notforloanlist = $joinedvals if ($authvfield->{fieldname} eq "items.notforloan");
122
    }
131
    }
123
}
132
}
124
$statussth =~ s, and $,,g;
133
$statussth =~ s, and $,,g;
125
 
134
$template->param(
126
$template->param(branchloop => \@branch_loop,
135
    branchloop               => \@branch_loop,
127
                authorised_values=>\@authorised_value_list,   
136
    authorised_values        => \@authorised_value_list,
128
                today			=>	C4::Dates->today(),
137
    today                    => C4::Dates->today(),
129
                minlocation => $minlocation,
138
    minlocation              => $minlocation,
130
                maxlocation => $maxlocation,
139
    maxlocation              => $maxlocation,
131
                location=>$location,
140
    location                 => $location,
132
                ignoreissued=>$ignoreissued,
141
    ignoreissued             => $ignoreissued,
133
                branchcode=>$branchcode,      
142
    branchcode               => $branchcode,
134
                branch    => $branch,
143
    branch                   => $branch,
135
                offset => $offset,
144
    offset                   => $offset,
136
                pagesize => $pagesize,
145
    pagesize                 => $pagesize,
137
                datelastseen => $datelastseen,
146
    datelastseen             => $datelastseen,
138
                );
147
    compareinv2barcd         => $compareinv2barcd,
148
    notforloanlist           => $notforloanlist
149
);
150
151
my @notforloans;
152
if (defined $notforloanlist) {
153
    @notforloans = split(/,/, $notforloanlist);
154
}
155
156
157
139
my @brcditems;
158
my @brcditems;
140
if ($uploadbarcodes && length($uploadbarcodes)>0){
159
my $barcodelist;
141
    my $dbh=C4::Context->dbh;
160
my @errorloop;
142
    my $date = format_date_in_iso($input->param('setdate')) || C4::Dates->today('iso');
161
if ( $uploadbarcodes && length($uploadbarcodes) > 0 ) {
143
# 	warn "$date";
162
    my $dbh = C4::Context->dbh;
144
    my $strsth="select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =?";
163
    my $date = format_date_in_iso( $input->param('setdate') ) || C4::Dates->today('iso');
164
165
    my $strsth  = "select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =?";
145
    my $qonloan = $dbh->prepare($strsth);
166
    my $qonloan = $dbh->prepare($strsth);
146
    $strsth="select * from items where items.barcode =? and items.withdrawn = 1";
167
    $strsth="select * from items where items.barcode =? and items.withdrawn = 1";
147
    my $qwithdrawn = $dbh->prepare($strsth);
168
    my $qwithdrawn = $dbh->prepare($strsth);
148
    my @errorloop;
169
149
    my $count=0;
170
    my $count = 0;
171
150
    while (my $barcode=<$uploadbarcodes>){
172
    while (my $barcode=<$uploadbarcodes>){
151
        $barcode =~ s/\r?\n$//;
173
        $barcode =~ s/\r?\n$//;
152
        if ($qwithdrawn->execute($barcode) &&$qwithdrawn->rows){
174
        $barcodelist .= ($barcodelist) ? '|' . $barcode : $barcode;
153
            push @errorloop, {'barcode'=>$barcode,'ERR_WTHDRAWN'=>1};
175
        if ( $qwithdrawn->execute($barcode) && $qwithdrawn->rows ) {
154
        }else{
176
            push @errorloop, { 'barcode' => $barcode, 'ERR_WTHDRAWN' => 1 };
155
            my $item = GetItem('', $barcode);
177
        } else {
156
            if (defined $item && $item->{'itemnumber'}){
178
            my $item = GetItem( '', $barcode );
157
                ModItem({ datelastseen => $date }, undef, $item->{'itemnumber'});
179
            if ( defined $item && $item->{'itemnumber'} ) {
180
                ModItem( { datelastseen => $date }, undef, $item->{'itemnumber'} );
158
                push @brcditems, $item;
181
                push @brcditems, $item;
159
                $count++;
182
                $count++;
160
                $qonloan->execute($barcode);
183
                $qonloan->execute($barcode);
Lines 171-218 if ($uploadbarcodes && length($uploadbarcodes)>0){ Link Here
171
                push @errorloop, {'barcode'=>$barcode,'ERR_BARCODE'=>1};
194
                push @errorloop, {'barcode'=>$barcode,'ERR_BARCODE'=>1};
172
            }
195
            }
173
        }
196
        }
197
174
    }
198
    }
175
    $qonloan->finish;
199
    $qonloan->finish;
176
    $qwithdrawn->finish;
200
    $qwithdrawn->finish;
177
    $template->param(date=>format_date($date),Number=>$count);
201
    $template->param( date => format_date($date), Number => $count );
178
# 	$template->param(errorfile=>$errorfile) if ($errorfile);
202
    $template->param( errorloop => \@errorloop ) if (@errorloop);
179
    $template->param(errorloop=>\@errorloop) if (@errorloop);
203
180
}
204
}
181
#if we want to compare the results to a list of barcodes, or we have no barcode file
205
$template->param(barcodelist => $barcodelist);
182
if ( ! ($uploadbarcodes && length($uploadbarcodes)>0 ) || ( $input->param('compareinv2barcd') eq 'on' && length($uploadbarcodes)>0) ) {
206
183
    if ($markseen) {
207
# now build the result list: inventoried items if requested, and mis-placed items -always-
184
        foreach ($input->param) {
208
my $inventorylist;
185
            /SEEN-(.+)/ and &ModDateLastSeen($1);
209
if ( $markseen or $op ) {
186
        }
210
    # retrieve all items in this range.
211
    my $totalrecords;
212
    ($inventorylist, $totalrecords) = GetItemsForInventory($minlocation, $maxlocation, $location, $itemtype, $ignoreissued, '', $branchcode, $branch, 0, undef , $staton);
213
214
    # Real copy
215
    my @res_copy;
216
    foreach (@$inventorylist) {
217
        push @res_copy, $_;
187
    }
218
    }
188
    if ($markseen or $op) {
219
    $res = \@res_copy;
189
        $res = GetItemsForInventory( $minlocation, $maxlocation, $location, $itemtype, $ignoreissued, $datelastseen, $branchcode, $branch, $offset, $pagesize, $staton );
220
}
190
        $template->param(loop =>$res,
221
191
                        nextoffset => ($offset+$pagesize),
222
# set "missing" flags for all items with a datelastseen before the choosen datelastseen
192
                        prevoffset => ($offset?$offset-$pagesize:0),
223
foreach (@$res) { $_->{missingitem}=1 if C4::Dates->new($_->{datelastseen})->output('iso') lt C4::Dates->new($datelastseen)->output('iso'); }
193
                        );
224
194
    }
225
# removing missing items from loop if "Compare barcodes list to results" has not been checked
195
    if ( defined $input->param('compareinv2barcd') && ( ( $input->param('compareinv2barcd') eq 'on' ) && ( scalar @brcditems != scalar @$res ) ) && length($uploadbarcodes) > 0 ){
226
@$res = grep {!$_->{missingitem} == 1 } @$res if (!$input->param('compareinv2barcd'));
196
        if ( scalar @brcditems > scalar @$res ){
227
197
            for my $brcditem (@brcditems) {
228
# insert "wrongplace" to all scanned items that are not supposed to be in this range
198
                if (! grep( $_->{barcode} =~ /$brcditem->{barcode}/ , @$res) ){
229
# note this list is always displayed, whatever the librarian has choosen for comparison
199
                    $brcditem->{notfoundkoha} = 1;
230
foreach my $temp (@brcditems) {
200
                    push @$res, $brcditem;
231
201
                }
232
  # Saving notforloan code before it's replaced by it's authorised value for later comparison
202
            }
233
  $temp->{'notforloancode'} = $temp->{'notforloan'};
203
        } else {
234
204
            my @notfound;
235
  # Populating with authorised values
205
            for my $item (@$res) {
236
  foreach (keys %$temp) {
206
                if ( ! grep( $_->{barcode} =~ /$item->{barcode}/ , @brcditems) ){
237
        # If the koha field is mapped to a marc field
207
                    $item->{notfoundbarcode} = 1;
238
        my $fc = $temp->{'frameworkcode'} || '';
208
                    push @notfound, $item;
239
        my ($f, $sf) = GetMarcFromKohaField("items.$_", $fc);
209
                }
240
        if ($f and $sf) {
241
            # We replace the code with it's description
242
            my $authvals = C4::Koha::GetKohaAuthorisedValuesFromField($f, $sf, $fc);
243
            if ($authvals and defined $temp->{$_} and defined $authvals->{$temp->{$_}}) {
244
              $temp->{$_} = $authvals->{$temp->{$_}};
210
            }
245
            }
211
            $res = [@$res, @notfound];
212
        }
246
        }
213
    }
247
    }
248
249
    next if $temp->{onloan}; # skip checked out items
250
251
    # If we have scanned items with a non-matching notforloan value
252
    if (none { $temp->{'notforloancode'} eq $_ } @notforloans) {
253
        $temp->{'changestatus'} = 1;
254
        my $biblio = C4::Biblio::GetBiblioData($temp->{biblionumber});
255
        $temp->{title} = $biblio->{title};
256
        $temp->{author} = $biblio->{author};
257
        $temp->{datelastseen} = format_date($temp->{datelastseen});
258
        push @$res, $temp;
259
260
    }
261
    if (none { $temp->{barcode} eq $_->{barcode} && !$_->{'onloan'} } @$inventorylist) {
262
        my $temp2 = { %$temp };
263
        $temp2->{wrongplace}=1;
264
        my $biblio = C4::Biblio::GetBiblioData($temp->{biblionumber});
265
        $temp2->{title} = $biblio->{title};
266
        $temp2->{author} = $biblio->{author};
267
        $temp2->{datelastseen} = format_date($temp->{datelastseen});
268
        push @$res, $temp2;
269
    }
270
}
271
272
# Finally, modifying datelastseen for remaining items
273
my $moddatecount = 0;
274
foreach (@$res) {
275
    unless ($_->{'missingitem'}) {
276
        ModDateLastSeen($_->{'itemnumber'});
277
        $moddatecount++;
278
    }
214
}
279
}
215
280
281
# Removing items that don't have any problems from loop
282
@$res = grep { $_->{missingitem} || $_->{wrongplace} || $_->{changestatus} } @$res;
283
284
$template->param(
285
    moddatecount => $moddatecount,
286
    loop       => $res,
287
    nextoffset => ( $offset + $pagesize ),
288
    prevoffset => ( $offset ? $offset - $pagesize : 0 ),
289
    op         => $op
290
);
291
216
if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){
292
if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){
217
    eval {use Text::CSV};
293
    eval {use Text::CSV};
218
    my $csv = Text::CSV->new or
294
    my $csv = Text::CSV->new or
Lines 221-234 if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){ Link Here
221
        -type       => 'text/csv',
297
        -type       => 'text/csv',
222
        -attachment => 'inventory.csv',
298
        -attachment => 'inventory.csv',
223
    );
299
    );
224
    for my $re (@$res){
300
301
    my $columns_def_hashref = C4::Reports::Guided::_get_column_defs();
302
    foreach my $key ( keys %$columns_def_hashref ) {
303
        my $initkey = $key;
304
        $key =~ s/[^\.]*\.//;
305
        $columns_def_hashref->{$initkey}=NormalizeString($columns_def_hashref->{$initkey});
306
        $columns_def_hashref->{$key} = $columns_def_hashref->{$initkey};
307
    }
308
309
    my @translated_keys;
310
    for my $key (qw / biblioitems.title    biblio.author
311
                      items.barcode        items.itemnumber
312
                      items.homebranch     items.location
313
                      items.itemcallnumber items.notforloan
314
                      items.itemlost       items.damaged
315
                      items.stocknumber
316
                      / ) {
317
       push @translated_keys, $columns_def_hashref->{$key};
318
    }
319
320
    $csv->combine(@translated_keys);
321
    print $csv->string, "\n";
322
323
    my @keys = qw / title author barcode itemnumber homebranch location itemcallnumber notforloan lost damaged stocknumber /;
324
    for my $re (@$res) {
225
        my @line;
325
        my @line;
226
        for my $key (keys %$re) {
326
        for my $key (@keys) {
227
            push @line, $re->{$key};
327
            push @line, $re->{$key};
228
        }
328
        }
329
        if ($re->{wrongplace}) {
330
            push @line, "wrong place";
331
        } elsif ($re->{missingitem}) {
332
            push @line, "missing item";
333
        } elsif ($re->{changestatus}) {
334
            push @line, "change item status";
335
        }
336
        $csv->combine(@line);
337
        print $csv->string, "\n";
338
    }
339
    # Adding not found barcodes
340
    foreach my $error (@errorloop) {
341
    my @line;
342
    if ($error->{'ERR_BARCODE'}) {
343
        push @line, map { $_ eq 'barcode' ? $error->{'barcode'} : ''} @keys;
344
        push @line, "barcode not found";
229
        $csv->combine(@line);
345
        $csv->combine(@line);
230
        print $csv->string, "\n";
346
        print $csv->string, "\n";
231
    }
347
    }
348
    }
232
    exit;
349
    exit;
233
}
350
}
234
351
235
- 

Return to bug 7684