← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 13:01:18 2016
Reported on Fri Jan 8 13:01:36 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/Aqinvoice.pm
StatementsExecuted 15 statements in 663µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11141µs46µsClass::C3::Componentised::::BEGIN@1.1880 Class::C3::Componentised::BEGIN@1.1880
11116µs31µsKoha::Schema::Result::Aqinvoice::::BEGIN@13Koha::Schema::Result::Aqinvoice::BEGIN@13
11112µs92µsKoha::Schema::Result::Aqinvoice::::BEGIN@16Koha::Schema::Result::Aqinvoice::BEGIN@16
1119µs24µsKoha::Schema::Result::Aqinvoice::::BEGIN@14Koha::Schema::Result::Aqinvoice::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
12121µs250µs
# spent 46µs (41+5) within Class::C3::Componentised::BEGIN@1.1880 which was called: # once (41µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 46µs making 1 call to Class::C3::Componentised::BEGIN@1.1880 # spent 5µs making 1 call to utf8::import
2package Koha::Schema::Result::Aqinvoice;
3
4# Created by DBIx::Class::Schema::Loader
5# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7=head1 NAME
8
9Koha::Schema::Result::Aqinvoice
10
11=cut
12
13231µs246µs
# spent 31µs (16+15) within Koha::Schema::Result::Aqinvoice::BEGIN@13 which was called: # once (16µs+15µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 31µs making 1 call to Koha::Schema::Result::Aqinvoice::BEGIN@13 # spent 15µs making 1 call to strict::import
14258µs239µs
# spent 24µs (9+15) within Koha::Schema::Result::Aqinvoice::BEGIN@14 which was called: # once (9µs+15µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 24µs making 1 call to Koha::Schema::Result::Aqinvoice::BEGIN@14 # spent 15µs making 1 call to warnings::import
15
162334µs2171µs
# spent 92µs (12+80) within Koha::Schema::Result::Aqinvoice::BEGIN@16 which was called: # once (12µs+80µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 92µs making 1 call to Koha::Schema::Result::Aqinvoice::BEGIN@16 # spent 80µs making 1 call to base::import
17
18=head1 TABLE: C<aqinvoices>
19
20=cut
21
22126µs1349µs__PACKAGE__->table("aqinvoices");
# spent 349µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 invoiceid
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 invoicenumber
33
34 data_type: 'mediumtext'
35 is_nullable: 0
36
37=head2 booksellerid
38
39 data_type: 'integer'
40 is_foreign_key: 1
41 is_nullable: 0
42
43=head2 shipmentdate
44
45 data_type: 'date'
46 datetime_undef_if_invalid: 1
47 is_nullable: 1
48
49=head2 billingdate
50
51 data_type: 'date'
52 datetime_undef_if_invalid: 1
53 is_nullable: 1
54
55=head2 closedate
56
57 data_type: 'date'
58 datetime_undef_if_invalid: 1
59 is_nullable: 1
60
61=head2 shipmentcost
62
63 data_type: 'decimal'
64 is_nullable: 1
65 size: [28,6]
66
67=head2 shipmentcost_budgetid
68
69 data_type: 'integer'
70 is_foreign_key: 1
71 is_nullable: 1
72
73=cut
74
75137µs14.58ms__PACKAGE__->add_columns(
# spent 4.58ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
76 "invoiceid",
77 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
78 "invoicenumber",
79 { data_type => "mediumtext", is_nullable => 0 },
80 "booksellerid",
81 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
82 "shipmentdate",
83 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
84 "billingdate",
85 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
86 "closedate",
87 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
88 "shipmentcost",
89 { data_type => "decimal", is_nullable => 1, size => [28, 6] },
90 "shipmentcost_budgetid",
91 { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
92);
93
94=head1 PRIMARY KEY
95
96=over 4
97
98=item * L</invoiceid>
99
100=back
101
102=cut
103
104117µs189µs__PACKAGE__->set_primary_key("invoiceid");
# spent 89µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
105
106=head1 RELATIONS
107
108=head2 aqorders
109
110Type: has_many
111
112Related object: L<Koha::Schema::Result::Aqorder>
113
114=cut
115
11619µs1340µs__PACKAGE__->has_many(
# spent 340µs making 1 call to DBIx::Class::Relationship::HasMany::has_many
117 "aqorders",
118 "Koha::Schema::Result::Aqorder",
119 { "foreign.invoiceid" => "self.invoiceid" },
120 { cascade_copy => 0, cascade_delete => 0 },
121);
122
123=head2 booksellerid
124
125Type: belongs_to
126
127Related object: L<Koha::Schema::Result::Aqbookseller>
128
129=cut
130
131110µs1319µs__PACKAGE__->belongs_to(
# spent 319µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
132 "booksellerid",
133 "Koha::Schema::Result::Aqbookseller",
134 { id => "booksellerid" },
135 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
136);
137
138=head2 shipmentcost_budgetid
139
140Type: belongs_to
141
142Related object: L<Koha::Schema::Result::Aqbudget>
143
144=cut
145
14616µs1687µs__PACKAGE__->belongs_to(
# spent 687µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
147 "shipmentcost_budgetid",
148 "Koha::Schema::Result::Aqbudget",
149 { budget_id => "shipmentcost_budgetid" },
150 {
151 is_deferrable => 1,
152 join_type => "LEFT",
153 on_delete => "SET NULL",
154 on_update => "CASCADE",
155 },
156);
157
158
159# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
160# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3se4f767VfvBKaZ8tlXwHQ
161
162
163# You can replace this text with custom content, and it will be preserved on regeneration
164114µs1;