Overview
Summary
Contact
Donate
Imprint
Prompt for the
InvoiceItemView
Please create a React-JS view called "InvoiceItemView" for the fields of the InvoiceItem entity. The InvoiceItemView must contain the following fields: - name: Description type: STRING - name: Invoice type: Invoice - name: Name type: STRING - name: Quantity type: DOUBLE - name: TaxAmount type: DOUBLE - name: UnitAmount type: DOUBLE The data source for the [Invoice] select control should be loaded from the relative URL: "/CurrencyService/invoice" (HTTP-GET) An existing InvoiceItem entity should be loaded from the relative URL: "/CurrencyService/invoiceitem/{id}" (HTTP-GET) If a new InvoiceItem entity has been created, the new entity should be posted to the relative URL: "/CurrencyService/invoiceitem" (HTTP-POST) If an existing InvoiceItem entity has been updated, the modified entity should be sent to the relative URL: "/CurrencyService/invoiceitem/{id}" (HTTP-PUT) If an existing InvoiceItem entity has to be deleted, the following relative URL should be called: "/CurrencyService/invoiceitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint