Need more, need help now?
- - - - - - - - - - - - - - - - - - pay-as-you-go support - no contract - tenth of an hour billing - expert help - fast service - no call queues
Need integration?
- - - - - - - - - - - - - - - - - - with your shipping system - website - invoicing system - crm - cms - manufacturing - order import - back to back orders..
Need a report?
- - - - - - - - - - - - - - - - - - Excel reporting that pulls data from Sage - custom layouts - layouts that change adapt to your brands and/or for drop shipping.
Want web hosting?
- - - - - - - - - - - - - - - - - - Your own domain name - email - a shop - wordpress - woo commerce - ticket systems - help desks - forums - portals

alternative invoice layouts

Sage 50 general help forum - Free help and support for all general issues
sbrown1264
User
User
Posts: 81
Joined: 15 Apr 2015, 18:14
Sage Version: v2015 21 UK/Europe/Africa

alternative invoice layouts

Post by sbrown1264 » 24 Feb 2016, 18:08

Hello all

I have a client which is a care home, however they are not vat registered and to be honest none of the invoice layouts meet their needs. The residents have been setup as non stock products and are charged on a calendar month and not vat.

any advice greatly appreciated.

Regards

Stephen

User avatar
brucedenney
Site Admin
Site Admin
Posts: 4631
Joined: 28 Feb 2006, 09:56
Sage Version: v28 UK/Europe/Africa

Re: alternative invoice layouts

Post by brucedenney » 24 Feb 2016, 19:16

You can alter one of the standard layouts with the report designer.
For just about anything Sage :- Discount subscriptions, pay-as-you-go support, application integration, reports, layouts, linked excel spreadsheets, analysis or any other help making life with sage easier/less time consuming Contact me.

sbrown1264
User
User
Posts: 81
Joined: 15 Apr 2015, 18:14
Sage Version: v2015 21 UK/Europe/Africa

Re: alternative invoice layouts

Post by sbrown1264 » 24 Feb 2016, 20:00

don't Sage have a non vat invoice?

User avatar
brucedenney
Site Admin
Site Admin
Posts: 4631
Joined: 28 Feb 2006, 09:56
Sage Version: v28 UK/Europe/Africa

Re: alternative invoice layouts

Post by brucedenney » 24 Feb 2016, 20:07

They don't
For just about anything Sage :- Discount subscriptions, pay-as-you-go support, application integration, reports, layouts, linked excel spreadsheets, analysis or any other help making life with sage easier/less time consuming Contact me.

sbrown1264
User
User
Posts: 81
Joined: 15 Apr 2015, 18:14
Sage Version: v2015 21 UK/Europe/Africa

Re: alternative invoice layouts

Post by sbrown1264 » 25 Feb 2016, 09:50

thank you.

I am playing around with an layout. I have setup a product, but I cannot find how to show the product code, it automatically shows the product description?

User avatar
brucedenney
Site Admin
Site Admin
Posts: 4631
Joined: 28 Feb 2006, 09:56
Sage Version: v28 UK/Europe/Africa

Re: alternative invoice layouts

Post by brucedenney » 25 Feb 2016, 12:17

Add the field Invoice_Item.Stock_Code
For just about anything Sage :- Discount subscriptions, pay-as-you-go support, application integration, reports, layouts, linked excel spreadsheets, analysis or any other help making life with sage easier/less time consuming Contact me.

sbrown1264
User
User
Posts: 81
Joined: 15 Apr 2015, 18:14
Sage Version: v2015 21 UK/Europe/Africa

Re: alternative invoice layouts

Post by sbrown1264 » 25 Feb 2016, 17:13

Thanks for that. Do you know how I can change quantity to have no decimal places?

User avatar
brucedenney
Site Admin
Site Admin
Posts: 4631
Joined: 28 Feb 2006, 09:56
Sage Version: v28 UK/Europe/Africa

Re: alternative invoice layouts

Post by brucedenney » 25 Feb 2016, 17:24

Alter the format property to have 0 decimal places
For just about anything Sage :- Discount subscriptions, pay-as-you-go support, application integration, reports, layouts, linked excel spreadsheets, analysis or any other help making life with sage easier/less time consuming Contact me.

User avatar
brucedenney
Site Admin
Site Admin
Posts: 4631
Joined: 28 Feb 2006, 09:56
Sage Version: v28 UK/Europe/Africa

Re: alternative invoice layouts

Post by brucedenney » 25 Feb 2016, 17:24

Alter the format property to have 0 decimal places
For just about anything Sage :- Discount subscriptions, pay-as-you-go support, application integration, reports, layouts, linked excel spreadsheets, analysis or any other help making life with sage easier/less time consuming Contact me.

sbrown1264
User
User
Posts: 81
Joined: 15 Apr 2015, 18:14
Sage Version: v2015 21 UK/Europe/Africa

Re: alternative invoice layouts

Post by sbrown1264 » 25 Feb 2016, 17:28

Hi

Yes, after I sent my last message I found the product default option and changed it to zero, however when I choose print preview for the invoice it still shows the decimal places.

User avatar
brucedenney
Site Admin
Site Admin
Posts: 4631
Joined: 28 Feb 2006, 09:56
Sage Version: v28 UK/Europe/Africa

Re: alternative invoice layouts

Post by brucedenney » 25 Feb 2016, 18:28

I am sure that changing the property of the qty field in the layout will work.
For just about anything Sage :- Discount subscriptions, pay-as-you-go support, application integration, reports, layouts, linked excel spreadsheets, analysis or any other help making life with sage easier/less time consuming Contact me.

sbrown1264
User
User
Posts: 81
Joined: 15 Apr 2015, 18:14
Sage Version: v2015 21 UK/Europe/Africa

Re: alternative invoice layouts

Post by sbrown1264 » 25 Feb 2016, 18:39

Thank you again for your help. I came out of sage and then went back in and deleted the invoice I was using and created a new invoice and this time it worked.

My last question is, is there a way of showing on the invoice say 01/03/16 to 31/03/16 and then next month show 01/04/16 to 30/04/16 at the moment I entered the text in the comment column.

User avatar
brucedenney
Site Admin
Site Admin
Posts: 4631
Joined: 28 Feb 2006, 09:56
Sage Version: v28 UK/Europe/Africa

Re: alternative invoice layouts

Post by brucedenney » 26 Feb 2016, 14:10

Well you could calculate the dates and add some text, but you would need to use something to wortk on....

Assuming the invoices were dated the last day of the month.

You could calculate the first day of the month

Code: Select all

CreateDateTime(YearFromDate(INVOICE.INVOICE_DATE), MonthFromDate(INVOICE.INVOICE_DATE),1)
You could then convert that to a date and time

Code: Select all

DateTimeToString(CreateDateTime(YearFromDate(INVOICE.INVOICE_DATE), MonthFromDate(INVOICE.INVOICE_DATE),1)
Then strip the time off it

Code: Select all

substring(DateTimeToString(CreateDateTime(YearFromDate(INVOICE.INVOICE_DATE), MonthFromDate(INVOICE.INVOICE_DATE),1)), 1,10) 
Add some text around it, convert the invoice date to datetime and strip the end off it, to get something like this.

Code: Select all

"For the period " + substring(DateTimeToString(CreateDateTime(YearFromDate(INVOICE.INVOICE_DATE), MonthFromDate(INVOICE.INVOICE_DATE),1)), 1,10)  + " to " + substring(DateTimeToString(INVOICE.INVOICE_DATE),1,10)
I haven't tested this, but it shows the principle.
For just about anything Sage :- Discount subscriptions, pay-as-you-go support, application integration, reports, layouts, linked excel spreadsheets, analysis or any other help making life with sage easier/less time consuming Contact me.

sbrown1264
User
User
Posts: 81
Joined: 15 Apr 2015, 18:14
Sage Version: v2015 21 UK/Europe/Africa

Re: alternative invoice layouts

Post by sbrown1264 » 26 Feb 2016, 19:32

wow, that looks like you have spent some time on this.

While in the report generator, I presume I would have to choose a data field, but how would I copy that into it? a text field would only list the script?

sbrown1264
User
User
Posts: 81
Joined: 15 Apr 2015, 18:14
Sage Version: v2015 21 UK/Europe/Africa

Re: alternative invoice layouts

Post by sbrown1264 » 26 Feb 2016, 19:42

I found where to enter it, if I choose your first script it shows the first of the month, after that it all shows as text?

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 4 guests