InvoiceComments
Read, Insert,Update and Delete the Comment of the invoice.
Table Specific Information
Select
The 本製品 will use the Zoho Inventory API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the 本製品.
- Id supports the '=' comparison.
- InvoiceId supports the '=' comparison.
For example, the following queries are processed server side:
SELECT * FROM InvoiceComments WHERE Id = '3350895000000089001' SELECT * FROM InvoiceComments WHERE InvoiceId = '1937623621'
Insert
Insert can be executed by specifying the CustomerId and LineItems column. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table.
INSERT INTO InvoiceComments (Description) VALUES ('test')
Update
Update can be executed by specifying the Id in the WHERE Clause. The columns that are not read-only can be updated.
For example:
UPDATE InvoiceComments SET Description = 'test2' WHERE Id = '3285934000000136008'
Delete
Delete can be executed by specifying the Id in the WHERE Clause
For example:
DELETE FROM InvoiceComments WHERE Id = '3350895000000089001'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Long | False |
Comment ID of the invoice comment. | |
InvoiceId [KEY] | Long | False |
Invoices.Id |
ID of the invoice. |
Description | String | False |
Description of the comment. | |
PaymentExpectedDate | String | False |
Payment Expected Date of Invoice. | |
ShowCommentToClients | String | False |
Show Comment To Clients. | |
CommentedById | Long | False |
Commented By Id. | |
CommentedBy | String | False |
Commented By. | |
CommentType | String | False |
Comment Type. | |
OperationType | String | False |
Operation Type of comment. | |
Date | Date | False |
Date. | |
DateDescription | String | False |
Date Description of comment. | |
Time | String | False |
Time of comment. | |
TransactionId | Long | False |
Transaction Id of comment. | |
TransactionType | String | False |
Transaction Type of comment. |