How to add, information about paid from and received in

Hello, Good Morning Developer and Pertner, Help me How to add, information about paid from and received in cash or bank, in menu payments and receipts please, Thank You


You will have to use a custom field for this

As far as Manager accounting software is concerned, these documents are issued to your suppliers and customers as a record of the payment and receipt. It is none of their business which bank or cash account is used to make their payment or receive their payment

2 Likes

Thank you, but we need that information for make it easier to read that print results

if we use custome fields we need input again or double input

thank

Use merge tags in footers. Which will give you the desired result.

1 Like

image

PaidFrom Footer

<div style="font-size: 12px; margin-top: 5px;" id="paidfrom"><i>Paid from	: @@PaidFrom@@</i></div>
<script>
document.addEventListener("DOMContentLoaded", function() {
    const paidFromDiv = document.getElementById("paidfrom");
    const paidFromTr = paidFromDiv.closest("tr");
    const titleTd = document.getElementById("Title");
    titleTd.appendChild(paidFromDiv);
    if (paidFromTr) {
	    paidFromTr.remove();
	}
});
</script>
1 Like

For Receipts

ReceivedIn Footer

<div style="font-size: 12px; margin-top: 5px;" id="ReceivedIn"><i>Received In	: @@ReceivedIn@@</i></div>
<script>
document.addEventListener("DOMContentLoaded", function() {
    const ReceivedInDiv = document.getElementById("ReceivedIn");
    const ReceivedInTr = ReceivedInDiv.closest("tr");
    const titleTd = document.getElementById("Title");
    titleTd.appendChild(ReceivedInDiv);
    if (ReceivedInTr) {
	    ReceivedInTr.remove();
	}
});
</script>

1 Like

Creating custom field named for example account name then link it to cash and bank account as in below screen.


1 Like

thanks, but how i add this, in custome theme ?

Thank you, but how i add this script

to add the ReceivedIn Footer script go to settings, footers, receipts, click on new footer, copy and paste code into box below content. name the footer in name box and click on button marked create.
do the same for paidfrom script in footer, payments under settings if you want use the PaidFrom Footer.

thank you, i was add it on footer but information about cash or bank cannot automatically according to the name of the bank.



g3

thank you, i was add it on footer but information about cash or bank cannot automatically according to the name of the bank.



g3

what OS and version number of Manager are you using? Desktop, server or cloud?
Both scripts work as expected here on version 24.7.7.1713 on both linux and windows

1 Like

we use manager 23.10.20.1089 server edition on windows 10, oke i will upgrade the apps first

Before upgrading Server edition be sure license key is valid for latest version otherwise license key may need renewal

1 Like

our key still works, thank you

we has update manager server and your script was works, thank you, manager dev and team

As a reminder. Please next time before you post note the forum rule at FAQ - Manager Forum that:

So if you encounter a problem with the desktop or server editions, update Manager , even if you recently did. (The cloud edition is always up to date.) You can check the latest version at https://www.manager.io/desktop/download/ .

I would like to add the Github download location as well at https://github.com/Manager-io/Manager because for example the Mac systems with M1, M2 and M3 CPUs need to download the ARM64 version and that is not available from https://www.manager.io/download

1 Like