Re: [Koha] "[Suspected Spam]" Re: Modify Patron Transaction Invoices and Fee Receipts

2023-03-09 Thread Kyle Hall
You can get the dates for *current* checkouts, but not any that have been
returned, at this time.

[% credit.item.checkout.date_due | html %] should work for example.
---
http://www.kylehall.info
ByWater Solutions ( http://bywatersolutions.com )
Meadville Public Library ( http://www.meadvillelibrary.org )
Crawford County Federated Library System ( http://www.ccfls.org )


On Wed, Mar 8, 2023 at 11:48 PM Ms. Naveen Ali  wrote:

> Dear all. Good day to you!
>
> This is indeed a great forum and I would like to thank you all for the
> great and prompt responses,
>
> A few more things:
>
> I am sharing the code of default payment slip (Code=ACCOUNT_CREDIT,
> Library=All Libraries, Koha Module=Circulation)which I am trying to modify
>
> 
> [% USE Price %]
> [% PROCESS 'accounts.inc' %]
> 
> [% IF ( LibraryName ) %]
>  
> 
> [% LibraryName | html %]
> 
>  
> [% END %]
>  
> 
> Fee receipt
> 
>  
>  
> 
> [% Branches.GetName( credit.patron.branchcode ) | html %]
> 
>  
>  
> 
> Received with thanks from  [% credit.patron.firstname | html %] [%
> credit.patron.surname | html %] 
> Card number: [% credit.patron.cardnumber | html %]
> 
>  
>   
> Created
> Updated
> Description of charges
> Note
> Amount
>  
>
>  
> [% credit.date | $KohaDates %]
> [% credit.timestamp | $KohaDates with_hours = 1 %]
> 
>   [% PROCESS account_type_description account=credit %]
>   [%- IF credit.description %], [% credit.description | html %][% END
> %]
> 
> [% credit.note | html %]
> [% credit.amount | $Price %]
>  
>
> [% IF ( tendered ) %]
>   
> Amount tendered: 
> [% tendered | $Price %]
>   
>   
> Change given: 
> [% change | $Price %]
>   
> [% END %]
>
> 
>   
> Total outstanding dues as on date: 
> [% IF ( credit.patron.account.balance >= 0 ) %][%
> ELSE %][% END %][% credit.patron.account.balance | $Price
> %]
>   
> 
> 
> ===
>
>  [% LibraryName | html %]
> [% Branches.GetName( credit.patron.branchcode ) | html %]
>
> Firstly, The above two lines of code do not generate any result, while the
> rest of the code works fine.
>
> Secondly, the documentation says the substitution and template toolkit can
> be used together. But when I tried using substitution <<>>, for library
> branch name, that too did not not work
>
> Thirdly, I have made copies of the slip for two different libraries, on
> the understanding that the library is where the transaction is being done
> as shown in Accounting Tab of patrons, under Home Library. However I find
> that only one of the modified slips is being used in both the libraries.
>
> Help will be most appreciated.
>
> With best regards,
>
> Naveen Ali
>
> ITM-JE (EAKL)
> Inst Representative for
> HEC Digital Library Resources.
> NEDUET, Karachi.
>
>
> - Original Message -
> From: "Katrin Fischer" 
> To: koha@lists.katipo.co.nz
> Sent: Friday, 3 March, 2023 8:05:18 PM
> Subject: "[Suspected Spam]" Re: [Koha] Modify Patron Transaction Invoices
> and Fee Receipts
>
> Hi,
>
> you might also want to have a look at these page in the wiki:
>
> https://wiki.koha-community.org/wiki/Notices_with_Template_Toolkit
>
>
> https://wiki.koha-community.org/wiki/Notices_and_Slips_Library#Notices_and_slips_using_template_toolkit
>
> Hope this helps,
>
> Katrin
>
>
> On 03.03.23 06:47, Ms. Naveen Ali wrote:
> > Dear all,
> >
> > I am using Koha 22.05 and trying to modify the ACCOUNT_CREDIT pint slip.
> >
> > I would like to add the book information (biblio and lending such as due
> date and return date ) of items included in the receipt.
> > I am learning about the Template Toolkit used and have found the
> following documentation
> > https://wiki.koha-community.org/wiki/Template_Toolkit_Plugins
> > but it is not complete.
> >
> > Is the documentation available and accessible?
> >
> > Could someone point me in the correct direction please.
> >
> >
> > With best regards,
> >
> > Naveen Ali
> >
> > ITM-JE (EAKL)
> > Inst Representative for
> > HEC Digital Library Resources.
> > NEDUET, Karachi.
> >
> >
> > - Original Message -
> >
> > From: "MASTeR Library" 
> > To: "Ms. Naveen Ali" 
> > Cc: "Caroline Cyr La Rose" , "koha" <

[Koha] "[Suspected Spam]" Re: Modify Patron Transaction Invoices and Fee Receipts

2023-03-08 Thread Ms. Naveen Ali
Dear all. Good day to you!

This is indeed a great forum and I would like to thank you all for the great 
and prompt responses,

A few more things:

I am sharing the code of default payment slip (Code=ACCOUNT_CREDIT, Library=All 
Libraries, Koha Module=Circulation)which I am trying to modify


[% USE Price %]
[% PROCESS 'accounts.inc' %]

[% IF ( LibraryName ) %]
 

[% LibraryName | html %]

 
[% END %]
 

Fee receipt

 
 

[% Branches.GetName( credit.patron.branchcode ) | html %]

 
 

Received with thanks from  [% credit.patron.firstname | html %] [% 
credit.patron.surname | html %] 
Card number: [% credit.patron.cardnumber | html %]

 
  
Created
Updated
Description of charges
Note
Amount
 

 
[% credit.date | $KohaDates %]
[% credit.timestamp | $KohaDates with_hours = 1 %]

  [% PROCESS account_type_description account=credit %]
  [%- IF credit.description %], [% credit.description | html %][% END %]

[% credit.note | html %]
[% credit.amount | $Price %]
 

[% IF ( tendered ) %]
  
Amount tendered: 
[% tendered | $Price %]
  
  
Change given: 
[% change | $Price %]
  
[% END %]


  
Total outstanding dues as on date: 
[% IF ( credit.patron.account.balance >= 0 ) %][% ELSE 
%][% END %][% credit.patron.account.balance | $Price %]
  


===

 [% LibraryName | html %]
[% Branches.GetName( credit.patron.branchcode ) | html %]

Firstly, The above two lines of code do not generate any result, while the rest 
of the code works fine.

Secondly, the documentation says the substitution and template toolkit can be 
used together. But when I tried using substitution <<>>, for library branch 
name, that too did not not work

Thirdly, I have made copies of the slip for two different libraries, on the 
understanding that the library is where the transaction is being done as shown 
in Accounting Tab of patrons, under Home Library. However I find that only one 
of the modified slips is being used in both the libraries.

Help will be most appreciated.

With best regards, 

Naveen Ali 

ITM-JE (EAKL) 
Inst Representative for 
HEC Digital Library Resources. 
NEDUET, Karachi. 


- Original Message -
From: "Katrin Fischer" 
To: koha@lists.katipo.co.nz
Sent: Friday, 3 March, 2023 8:05:18 PM
Subject: "[Suspected Spam]" Re: [Koha] Modify Patron Transaction Invoices and 
Fee Receipts

Hi,

you might also want to have a look at these page in the wiki:

https://wiki.koha-community.org/wiki/Notices_with_Template_Toolkit

https://wiki.koha-community.org/wiki/Notices_and_Slips_Library#Notices_and_slips_using_template_toolkit

Hope this helps,

Katrin


On 03.03.23 06:47, Ms. Naveen Ali wrote:
> Dear all,
>
> I am using Koha 22.05 and trying to modify the ACCOUNT_CREDIT pint slip.
>
> I would like to add the book information (biblio and lending such as due date 
> and return date ) of items included in the receipt.
> I am learning about the Template Toolkit used and have found the following 
> documentation
> https://wiki.koha-community.org/wiki/Template_Toolkit_Plugins
> but it is not complete.
>
> Is the documentation available and accessible?
>
> Could someone point me in the correct direction please.
>
>
> With best regards,
>
> Naveen Ali
>
> ITM-JE (EAKL)
> Inst Representative for
> HEC Digital Library Resources.
> NEDUET, Karachi.
>
>
> - Original Message -
>
> From: "MASTeR Library" 
> To: "Ms. Naveen Ali" 
> Cc: "Caroline Cyr La Rose" , "koha" 
> 
> Sent: Wednesday, 1 March, 2023 12:52:57 PM
> Subject: Re: [Koha] Modify Patron Transaction Invoices and Fee Receipts
>
> Account payment invoice
> https://libpowertech.blogspot.com/2022/03/how-to-create-email-receipt-template.html?m=1
>
> On Wed, 1 Mar 2023, 11:26 am Ms. Naveen Ali, < nav...@neduet.edu.pk > wrote:
>
>
> Hi Caroline,
>
> Thanks a lot for the information.
>
> I was looking for them in Tools->Notices and slips but was not able to map 
> the receipts and invoices.
>
> The link you mentioned is great.
>
> I tried using Help on the Koha interface. It took me to this link
>
> https://koha-community.org/manual//22.05/en/html/tools.html#existing-notices-and-slips
>
> where i did not find ACCOUNT_DEBIT and CREDIT you mentioned.
>
> I believe the manual needs to be updated.
>
> Thanks a lot for your help and kind support.
>
> With best regards,
>
> Naveen Ali
>
> ITM-JE (EAKL)
> Inst Representative for
> HEC Digital Library Resources.
> NEDUET, Karachi.
>
>
> - Original Message -
> From: "Caroline Cy

[Koha] "[Suspected Spam]" Re: Modify Patron Transaction Invoices and Fee Receipts

2023-03-02 Thread Ms. Naveen Ali
Dear all, 

I am using Koha 22.05 and trying to modify the ACCOUNT_CREDIT pint slip. 

I would like to add the book information (biblio and lending such as due date 
and return date ) of items included in the receipt. 
I am learning about the Template Toolkit used and have found the following 
documentation 
https://wiki.koha-community.org/wiki/Template_Toolkit_Plugins 
but it is not complete. 

Is the documentation available and accessible? 

Could someone point me in the correct direction please. 


With best regards, 

Naveen Ali 

ITM-JE (EAKL) 
Inst Representative for 
HEC Digital Library Resources. 
NEDUET, Karachi. 


- Original Message -

From: "MASTeR Library"  
To: "Ms. Naveen Ali"  
Cc: "Caroline Cyr La Rose" , "koha" 
 
Sent: Wednesday, 1 March, 2023 12:52:57 PM 
Subject: Re: [Koha] Modify Patron Transaction Invoices and Fee Receipts 

Account payment invoice 
https://libpowertech.blogspot.com/2022/03/how-to-create-email-receipt-template.html?m=1
 

On Wed, 1 Mar 2023, 11:26 am Ms. Naveen Ali, < nav...@neduet.edu.pk > wrote: 


Hi Caroline, 

Thanks a lot for the information. 

I was looking for them in Tools->Notices and slips but was not able to map the 
receipts and invoices. 

The link you mentioned is great. 

I tried using Help on the Koha interface. It took me to this link 

https://koha-community.org/manual//22.05/en/html/tools.html#existing-notices-and-slips
 

where i did not find ACCOUNT_DEBIT and CREDIT you mentioned. 

I believe the manual needs to be updated. 

Thanks a lot for your help and kind support. 

With best regards, 

Naveen Ali 

ITM-JE (EAKL) 
Inst Representative for 
HEC Digital Library Resources. 
NEDUET, Karachi. 


- Original Message - 
From: "Caroline Cyr La Rose" < caroline.cyr-la-r...@inlibro.com > 
To: koha@lists.katipo.co.nz 
Sent: Tuesday, 28 February, 2023 7:20:50 PM 
Subject: Re: [Koha] Modify Patron Transaction Invoices and Fee Receipts 

Hi Naveen, 

Transaction invoice = ACCOUNT_DEBIT 

Transaction receipt = ACCOUNT_CREDIT 

Summary is not customizable... 
( https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11340 ) 

Slip = ISSUESLIP 

Quick slip = ISSUEQSLIP 

Overdues = OVERDUES_SLIP 

Checkin slip = CHECKINSLIP 

Can I ask where you checked? I know most of them are described in the 
manual 
https://koha-community.org/manual/latest/en/html/tools.html#existing-notices-and-slips
 
but it might be missing in crucial places where people would check 
first... So I'd like to add it there. 

Thanks! 

Caroline 


On 2023-02-27 23:33, Ms. Naveen Ali wrote: 
> Dear members, 
> 
> I'd like to modify the Patron Transaction Invoices and Fee Receipts. 
> In fact all the print options available on the Patron Screen (Summary, Slip, 
> Quick Slip, Overdues, Check In Slip) 
> I can't identify them in the Notices and Slips Tool 
> Please provide support. 
> 
> With best regards, 
> 
> Naveen Ali 
> 
> ITM-JE (EAKL) 
> Inst Representative for 
> HEC Digital Library Resources. 
> NEDUET, Karachi. 
> 
> 
> ___ 
> 
> Koha mailing listhttp:// koha-community.org 
> Koha@lists.katipo.co.nz 
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha 
-- 
Logo inLibro < https://inLibro.com > Caroline Cyr-La-Rose 
Bibliothécaire | Responsable de produit 

T 833-INLIBRO (465-4276) , poste 221 
C caroline.cyr-la-r...@inlibro.com 

www.inLibro.com < https://inLibro.com > 
___ 

Koha mailing list http://koha-community.org 
Koha@lists.katipo.co.nz 
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha 
___ 

Koha mailing list http://koha-community.org 
Koha@lists.katipo.co.nz 
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha 




___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha