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

(-)a/Koha/Schema/Result/Aqbookseller.pm (-4 / +4 lines)
Lines 142-148 __PACKAGE__->table("aqbooksellers"); Link Here
142
  data_type: 'tinyint'
142
  data_type: 'tinyint'
143
  is_nullable: 1
143
  is_nullable: 1
144
144
145
=head2 gstrate
145
=head2 tax_rate
146
146
147
  data_type: 'decimal'
147
  data_type: 'decimal'
148
  is_nullable: 1
148
  is_nullable: 1
Lines 212-218 __PACKAGE__->add_columns( Link Here
212
  { data_type => "tinyint", is_nullable => 1 },
212
  { data_type => "tinyint", is_nullable => 1 },
213
  "invoiceincgst",
213
  "invoiceincgst",
214
  { data_type => "tinyint", is_nullable => 1 },
214
  { data_type => "tinyint", is_nullable => 1 },
215
  "gstrate",
215
  "tax_rate",
216
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
216
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
217
  "discount",
217
  "discount",
218
  { data_type => "float", is_nullable => 1, size => [6, 4] },
218
  { data_type => "float", is_nullable => 1, size => [6, 4] },
Lines 382-389 __PACKAGE__->has_many( Link Here
382
);
382
);
383
383
384
384
385
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-10 19:36:24
385
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-09-09 13:43:30
386
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mNH0CKfuRQqoOLXieV43DQ
386
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:b3aUNZsdvNzEuKScGD7ZPQ
387
387
388
388
389
# You can replace this text with custom code or comments, and it will be preserved on regeneration
389
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Aqorder.pm (-5 / +60 lines)
Lines 83-88 __PACKAGE__->table("aqorders"); Link Here
83
  is_nullable: 1
83
  is_nullable: 1
84
  size: [28,6]
84
  size: [28,6]
85
85
86
=head2 unitprice_tax_excluded
87
88
  data_type: 'decimal'
89
  is_nullable: 1
90
  size: [28,6]
91
92
=head2 unitprice_tax_included
93
94
  data_type: 'decimal'
95
  is_nullable: 1
96
  size: [28,6]
97
86
=head2 quantityreceived
98
=head2 quantityreceived
87
99
88
  data_type: 'smallint'
100
  data_type: 'smallint'
Lines 134-146 __PACKAGE__->table("aqorders"); Link Here
134
  is_nullable: 1
146
  is_nullable: 1
135
  size: [13,2]
147
  size: [13,2]
136
148
149
=head2 rrp_tax_excluded
150
151
  data_type: 'decimal'
152
  is_nullable: 1
153
  size: [28,6]
154
155
=head2 rrp_tax_included
156
157
  data_type: 'decimal'
158
  is_nullable: 1
159
  size: [28,6]
160
137
=head2 ecost
161
=head2 ecost
138
162
139
  data_type: 'decimal'
163
  data_type: 'decimal'
140
  is_nullable: 1
164
  is_nullable: 1
141
  size: [13,2]
165
  size: [13,2]
142
166
143
=head2 gstrate
167
=head2 ecost_tax_excluded
168
169
  data_type: 'decimal'
170
  is_nullable: 1
171
  size: [28,6]
172
173
=head2 ecost_tax_included
174
175
  data_type: 'decimal'
176
  is_nullable: 1
177
  size: [28,6]
178
179
=head2 tax_rate
180
181
  data_type: 'decimal'
182
  is_nullable: 1
183
  size: [6,4]
184
185
=head2 tax_value
144
186
145
  data_type: 'decimal'
187
  data_type: 'decimal'
146
  is_nullable: 1
188
  is_nullable: 1
Lines 269-274 __PACKAGE__->add_columns( Link Here
269
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
311
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
270
  "unitprice",
312
  "unitprice",
271
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
313
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
314
  "unitprice_tax_excluded",
315
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
316
  "unitprice_tax_included",
317
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
272
  "quantityreceived",
318
  "quantityreceived",
273
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
319
  { data_type => "smallint", default_value => 0, is_nullable => 0 },
274
  "datecancellationprinted",
320
  "datecancellationprinted",
Lines 292-300 __PACKAGE__->add_columns( Link Here
292
  },
338
  },
293
  "rrp",
339
  "rrp",
294
  { data_type => "decimal", is_nullable => 1, size => [13, 2] },
340
  { data_type => "decimal", is_nullable => 1, size => [13, 2] },
341
  "rrp_tax_excluded",
342
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
343
  "rrp_tax_included",
344
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
295
  "ecost",
345
  "ecost",
296
  { data_type => "decimal", is_nullable => 1, size => [13, 2] },
346
  { data_type => "decimal", is_nullable => 1, size => [13, 2] },
297
  "gstrate",
347
  "ecost_tax_excluded",
348
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
349
  "ecost_tax_included",
350
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
351
  "tax_rate",
352
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
353
  "tax_value",
298
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
354
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
299
  "discount",
355
  "discount",
300
  { data_type => "float", is_nullable => 1, size => [6, 4] },
356
  { data_type => "float", is_nullable => 1, size => [6, 4] },
Lines 537-544 Composing rels: L</aqorder_users> -> borrowernumber Link Here
537
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
593
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
538
594
539
595
540
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-05-06 18:07:43
596
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-09-09 13:43:30
541
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SQC7q+ZeARRBGvdzzWgSkw
597
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:R2a+DkXI1AaEVnpb1YKu5Q
542
598
543
599
544
# You can replace this text with custom code or comments, and it will be preserved on regeneration
600
# You can replace this text with custom code or comments, and it will be preserved on regeneration
545
- 

Return to bug 13321