Issues using Line Items in Invoice

Hi all,

I am looking for guidance on the following issue. In my database, I have:

  • Invoice Line Items (Data Type)
    • Product/Service (Field)
    • Price (Field)
    • Quantity (Field)
    • Total (Field)
  • Invoice (Data Type)
    • List of Invoice Line Itemses

When an invoice is created, it creates duplicate ‘Invoice Line Item’ App Data.

Please see the attached screencaps, and let me know if there is anything that needs clarification.

Thanks!






Screen Shot 2021-09-23 at 8.23.05 AM

Well surely you are creating the line item and adding it to the invoice when you click new line and it is auto-binding. Then it looks like you are creating new line items again when you save your invoice? I would say that you always add the line items to an invoice on creation, that invoice is usually just an estimate until it is issued.

Hi Nick,

I’m not understanding how to have the Line Item stay constant (Product/Description), and offer a default value, but allow the Price and Quantity to remain variable.

Any advice there?

I suppose I can work around having multiple results in my app data. Please see the attached image as to the main issue I am running into.
Screen Shot 2021-09-23 at 10.17.39 AM

OK, I see what you mean. I would suggest that you have n Item (product/service) table also. That way you can set default unit costs for product/service, and default unit types.

Then when you come to create a line item, you are adding a Item (product/Service) to that line item, it copies the default price in to the line item price, or you can over ride/discount it etc.

It will work well, open up other options as your app grows and fix the issues you are experiencing.

Hi Nick,

Thanks for your replies.

To clarify, are you recommending having three data types?

  1. Invoice
  2. Invoice Line Item Defaults
  3. Invoice Line Item Data

I’m not sure how to work around the concern being: selecting a default Product/Service and Price, and having it copied without those results showing up in my list.

Items - all your products and services
Line Items - this references and copies your from your Item
Invoice - This is your list of line items

so you have your 3 items,
Snow shoveling - 100
Snow plowing - 200
snow blowing - 300
when you create a new line item, you choose an item, and that data is copied from your item to your line item, good to store the item also.

Then your add your line items to the invoice

Nick,

This all makes sense. I’m going to give this a whirl and update you on the success!

Thanks again!

You could do it like @nfisher - or an alternate way which I have implemented is a yes/no field called ‘default line item’ on my line items datatype.

In user settings I have enabled them to be able to create a default line item - then they appear in a dropdown when they create an invoice and they can pick which default. This creates a new line item (non default) which then is autobound and user can edit description and amount if they choose, or use the default values.