Bug 17419: Fix smsalertnumber and mobile confusion in moremember.pl
authorLari Taskula <lari.taskula@jns.fi>
Mon, 10 Oct 2016 14:06:07 +0000 (17:06 +0300)
committerKyle M Hall <kyle@bywatersolutions.com>
Mon, 21 Nov 2016 16:28:51 +0000 (16:28 +0000)
commit88e0264413b1dc9ecf5dbe562636f40c7e0555d1
tree8bbb1b7fa76f96cfcd17f44d4d1abf9492275119
parentccdd661851dfb2008b536903514eac3027651495
Bug 17419: Fix smsalertnumber and mobile confusion in moremember.pl

members/moremember.pl will set mobile number as smsalertnumber in template if
smsalertnumber is not defined. This will cause incorrect display for SMS number
in patron's Details-tab. This confusion between smsalertnumber and mobile is
already fixed in Bug 14683, but members/moremember.pl was not fixed yet.

This is a minor issue since it won't occur for manually added new patrons due to
fixes already pushed in Bug 14683, but in case patron's smsalertnumber is null
in database, this bug can be replicated:

To test:
1. Set EnhancedMessagingPreferences to "Allow" and make sure SMSSendDriver
   has been set.
2. Add a new patron, give it a mobile/other phone number.
3. Run a SQL query:
   update koha.borrowers set smsalertnumber=NULL where borrowernumber=XXX;
   (replace XXX with your new patron's borrowernumber)
4. Go to patron's details tab and observe that SMS number shows the mobile/
   other phone you provided earlier.
5. Apply patch.
6. Refresh patron's details tab.
7. Observe that smsalertnumber is now empty, as it should be.

Followed test plan, works as expected.
Signed-off-by: Marc <veron@veron.ch>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
members/moremember.pl