Replies: 1 comment
-
So, your personID represents your customer here? If so, what do you expect this line to be doing:
... it doesn't reference the personID at all. Pardon me if this is a stupid question, I may not understand what you are trying to do. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Before submitting the bug report, please read and check the following items
What happened?
namespace MovieTutorial.CustomerPortal {
@Serenity.Decorators.registerClass()
export class OrderDetailEditDialog extends Common.GridEditorDialog {
protected getFormKey() { return OrderDetailsForm.formKey; }
protected getIdProperty() { return OrderDetailsRow.idProperty; }
protected getLocalTextPrefix() { return OrderDetailsRow.localTextPrefix; }
protected form: OrderDetailsForm;
private orderd: OrderDetailEdit
}
namespace MovieTutorial.CustomerPortal {
@Serenity.Decorators.registerEditor()
export class OrderDetailEdit extends Serenity.EntityGrid<OrderDetailsRow, any> {
protected getColumnsKey() { return "CustomerPortal.OrderDetails"; }
protected getDialogType() { return OrderDetailsDialog; }
protected getIdProperty() { return OrderDetailsRow.idProperty; }
protected getLocalTextPrefix() { return OrderDetailsRow.localTextPrefix; }
protected getService() { return OrderDetailsService.baseUrl; }
}
What did you expect to happen?
its expected to separate the orders by customers
How to reproduce?
just run my code
What Serenity Nuget Versions are you seeing the problem on? (separated by comma)
Serenity Obsolete 2.0
Relevant log output
No response
Serene template version
No response
Sergen version
No response
Code editor
No response
Operating System
No response
Node.js version
No response
TypeScript version
No response
Database type and version
No response
On which device do you see the problem?
No response
On which operating system do you see the problem?
No response
On which browsers do you see the problem?
No response
On what version of the browsers do you see the problem?
No response
Additional information
No response
Beta Was this translation helpful? Give feedback.
All reactions