Bugzilla – Attachment 132779 Details for
Bug 17656
Irregularities in serial prediction pattern are planned only for current subscription
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17656: (follow-up) Update DBIC + fix missing C4::Serials functions needed
Bug-17656-follow-up-Update-DBIC--fix-missing-C4Ser.patch (text/plain), 5.84 KB, created by
Arthur Suzuki
on 2022-03-31 13:41:09 UTC
(
hide
)
Description:
Bug 17656: (follow-up) Update DBIC + fix missing C4::Serials functions needed
Filename:
MIME Type:
Creator:
Arthur Suzuki
Created:
2022-03-31 13:41:09 UTC
Size:
5.84 KB
patch
obsolete
>From 3f73efc4d37d704a117371377024a6669ad6d5be Mon Sep 17 00:00:00 2001 >From: Arthur Suzuki <arthur.suzuki@biblibre.com> >Date: Thu, 31 Mar 2022 13:37:26 +0000 >Subject: [PATCH] Bug 17656: (follow-up) Update DBIC + fix missing C4::Serials > functions needed > >--- > Koha/Schema/Result/Subscription.pm | 58 ++++++++++++++++++++++++++++-- > serials/subscription-renew.pl | 2 +- > 2 files changed, 57 insertions(+), 3 deletions(-) > >diff --git a/Koha/Schema/Result/Subscription.pm b/Koha/Schema/Result/Subscription.pm >index 3ed3976932..81ba9d9d77 100644 >--- a/Koha/Schema/Result/Subscription.pm >+++ b/Koha/Schema/Result/Subscription.pm >@@ -29,12 +29,16 @@ __PACKAGE__->table("subscription"); > is_foreign_key: 1 > is_nullable: 0 > >+foreign key for biblio.biblionumber that this subscription is attached to >+ > =head2 subscriptionid > > data_type: 'integer' > is_auto_increment: 1 > is_nullable: 0 > >+unique key for this subscription >+ > =head2 librarian > > data_type: 'varchar' >@@ -42,18 +46,24 @@ __PACKAGE__->table("subscription"); > is_nullable: 1 > size: 100 > >+the librarian's username from borrowers.userid >+ > =head2 startdate > > data_type: 'date' > datetime_undef_if_invalid: 1 > is_nullable: 1 > >+start date for this subscription >+ > =head2 aqbooksellerid > > data_type: 'integer' > default_value: 0 > is_nullable: 1 > >+foreign key for aqbooksellers.id to link to the vendor >+ > =head2 cost > > data_type: 'integer' >@@ -72,24 +82,32 @@ __PACKAGE__->table("subscription"); > default_value: 0 > is_nullable: 1 > >+subscription length in weeks (will not be filled in if monthlength or numberlength is set) >+ > =head2 monthlength > > data_type: 'integer' > default_value: 0 > is_nullable: 1 > >+subscription length in weeks (will not be filled in if weeklength or numberlength is set) >+ > =head2 numberlength > > data_type: 'integer' > default_value: 0 > is_nullable: 1 > >+subscription length in weeks (will not be filled in if monthlength or weeklength is set) >+ > =head2 periodicity > > data_type: 'integer' > is_foreign_key: 1 > is_nullable: 1 > >+frequency type links to subscription_frequencies.id >+ > =head2 countissuesperunit > > data_type: 'integer' >@@ -101,6 +119,8 @@ __PACKAGE__->table("subscription"); > data_type: 'longtext' > is_nullable: 1 > >+notes >+ > =head2 status > > data_type: 'varchar' >@@ -108,6 +128,8 @@ __PACKAGE__->table("subscription"); > is_nullable: 0 > size: 100 > >+status of this subscription >+ > =head2 lastvalue1 > > data_type: 'integer' >@@ -147,22 +169,30 @@ __PACKAGE__->table("subscription"); > datetime_undef_if_invalid: 1 > is_nullable: 1 > >+first issue received date >+ > =head2 manualhistory > > data_type: 'tinyint' > default_value: 0 > is_nullable: 0 > >+yes or no to managing the history manually >+ > =head2 irregularity > > data_type: 'mediumtext' > is_nullable: 1 > >+any irregularities in the subscription >+ > =head2 permanent_irregularity > > data_type: 'mediumtext' > is_nullable: 1 > >+permanent irregularities for renewal >+ > =head2 skip_serialseq > > data_type: 'tinyint' >@@ -181,12 +211,16 @@ __PACKAGE__->table("subscription"); > is_foreign_key: 1 > is_nullable: 1 > >+the numbering pattern used links to subscription_numberpatterns.id >+ > =head2 locale > > data_type: 'varchar' > is_nullable: 1 > size: 80 > >+for foreign language subscriptions to display months, seasons, etc correctly >+ > =head2 distributedto > > data_type: 'mediumtext' >@@ -202,6 +236,8 @@ __PACKAGE__->table("subscription"); > data_type: 'mediumtext' > is_nullable: 1 > >+default call number >+ > =head2 location > > data_type: 'varchar' >@@ -209,6 +245,8 @@ __PACKAGE__->table("subscription"); > is_nullable: 1 > size: 80 > >+default shelving location (items.location) >+ > =head2 branchcode > > data_type: 'varchar' >@@ -216,6 +254,8 @@ __PACKAGE__->table("subscription"); > is_nullable: 0 > size: 10 > >+default branches (items.homebranch) >+ > =head2 lastbranch > > data_type: 'varchar' >@@ -228,42 +268,56 @@ __PACKAGE__->table("subscription"); > default_value: 0 > is_nullable: 0 > >+does receiving this serial create an item record >+ > =head2 staffdisplaycount > > data_type: 'varchar' > is_nullable: 1 > size: 10 > >+how many issues to show to the staff >+ > =head2 opacdisplaycount > > data_type: 'varchar' > is_nullable: 1 > size: 10 > >+how many issues to show to the public >+ > =head2 graceperiod > > data_type: 'integer' > default_value: 0 > is_nullable: 0 > >+grace period in days >+ > =head2 enddate > > data_type: 'date' > datetime_undef_if_invalid: 1 > is_nullable: 1 > >+subscription end date >+ > =head2 closed > > data_type: 'tinyint' > default_value: 0 > is_nullable: 0 > >+yes / no if the subscription is closed >+ > =head2 reneweddate > > data_type: 'date' > datetime_undef_if_invalid: 1 > is_nullable: 1 > >+date of last renewal for the subscription >+ > =head2 itemtype > > data_type: 'varchar' >@@ -504,8 +558,8 @@ __PACKAGE__->has_many( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-03-04 15:52:23 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0Pt/RPOtwhz5vHtPGljxfg >+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-31 13:26:10 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wDJLtdGZhJCDErsMHif/Ag > > __PACKAGE__->has_many( > "additional_field_values", >diff --git a/serials/subscription-renew.pl b/serials/subscription-renew.pl >index ea495a8909..f283f58e1d 100755 >--- a/serials/subscription-renew.pl >+++ b/serials/subscription-renew.pl >@@ -52,7 +52,7 @@ use C4::Auth qw( get_template_and_user ); > use C4::Context; > use C4::Auth qw( get_template_and_user ); > use C4::Output qw( output_and_exit output_html_with_http_headers ); >-use C4::Serials qw( GetSubscription GetSubscriptionLength NewSubscription ReNewSubscription ); >+use C4::Serials qw( GetSubscription GetSubscriptionLength NewSubscription ReNewSubscription GetSerials GetNextExpected); > use C4::Serials::Frequency; > use C4::Serials::Numberpattern; > use Koha::DateUtils qw( dt_from_string output_pref ); >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 17656
:
68259
|
68261
|
68607
|
68608
|
68665
|
69124
|
69207
|
69279
|
69553
|
69814
|
69820
|
69915
|
70335
|
70336
|
70430
|
70619
|
75403
|
75404
|
75405
|
75406
|
75407
|
75408
|
75721
|
75722
|
75723
|
75724
|
75725
|
75726
|
75953
|
102724
|
102725
|
102726
|
102727
|
102728
|
102729
|
102730
|
102860
|
102861
|
102862
|
102863
|
102864
|
102865
|
102866
|
102867
|
102960
|
102961
|
102962
|
102963
|
102964
|
102965
|
102966
|
102967
|
102968
|
103623
|
103624
|
103625
|
103626
|
103627
|
103628
|
103629
|
103630
|
103631
|
103657
|
103658
|
103659
|
103660
|
103661
|
103662
|
103663
|
103664
|
103665
|
103667
|
117789
|
117790
|
117791
|
117792
|
117846
|
117851
|
117852
|
118856
|
119106
|
120863
|
121082
|
121083
|
121084
|
121085
|
121086
|
121087
|
121088
|
121192
|
121193
|
121194
|
121195
|
121196
|
121197
|
121198
|
121296
|
121297
|
121298
|
121299
|
121300
|
121301
|
121302
|
128489
|
128491
|
128492
|
128493
|
128494
|
128495
|
128496
|
128498
|
128499
|
128500
|
128501
|
128502
|
128503
|
128504
|
132412
|
132413
|
132415
|
132416
|
132417
|
132418
|
132447
|
132448
|
132692
|
132779
|
177497
|
177498
|
177499
|
177500
|
177501
|
177502
|
177503
|
177504
|
177505
|
177663
|
177664
|
177665
|
177666
|
177667
|
177668
|
177669
|
177670
|
177671
|
177831
|
177832
|
177833
|
177834
|
177835
|
177836
|
177837
|
177838
|
177839
|
178142