Error when logging in#258
Open
aebrahim3 wants to merge 650 commits intoAccountGo:mainfrom
Open
Conversation
- Created SalesOrder.razor component - Updated SalesOrder.cshtml to use Blazor component instead of MVC view NOTE: SalesOrder endpoint returns 500 error due to nullable issue in API (CustomerName lookup fails when customer data is unavailable) Fallback logic can be added if needed, or API can be fixed to handle null customers. Checked on the hosted site, https://gdbmvc.azurewebsites.net/SalesOrder?id=1 also returns 404.
Issue 140 andre hindarmara
145 shayan nikpour
135 - Shayan Nikpour
#157_Zhaoqiu Ding_Add GoodBooks.BackendTests DTO xUnit project and run in CI
…dated routing to use route parameters instead of a query string
Fix #221 Vendors missing info
Fixed bug in donations edit page that would cause a null exeption, up…
Fixed message placement for Purchase Orders & Purchase Invoices
Ensure consistence display in AR
…ventory control journal.
#217 Implement dashboard features with DTO, service, and API
206 baltaj bhandal
Updated user-facing text in the AccountGoWeb MVC site to rename "Sales Receipts" to "Customer Payments" throughout the Accounts Receivable module. All routes, controller action names, API endpoints, and underlying domain models remain unchanged to avoid breaking any external links or integrations. Changes: - _Layout.cshtml: Nav menu label "Sales Receipts" -> "Customer Payments" - SalesController.cs: PageContentHeader values updated for SalesReceipts, AddReceipt, and Allocate actions - SalesReceipts.razor: "New Receipt" button -> "New Customer Payment", column headers "Receipt ID/No/Date" -> "Payment ID/No/Date", CSS class names updated - AddReceipt.razor: "Back to Receipts" -> "Back to Customer Payments", error messages updated - SalesReceipt.razor: Page heading "Sales Receipt" -> "Customer Payment", "Receipt ID/No" labels -> "Payment ID/No", back button updated - Allocate.razor: "Receipt No/Date" labels -> "Payment No/Date", back button and error messages updated Closes #216
The MVC inventory list page (Items.razor embedded in Views/Inventory/
Index.cshtml) generates links to /Inventory/Item/{id} for both the
item ID column and the View/Edit button. However, InventoryController
had no Item(int id) action to handle those routes, resulting in a
404 when users clicked any item.
Added a new GET action Item(int id) that:
- Sets the PageContentHeader based on whether id > 0 (Edit) or not (New)
- Instantiates an Item model with the given Id
- Returns the existing Views/Inventory/Item.cshtml view, which wraps
the ItemForm Blazor component at Components/Pages/Inventory/ItemForm.razor
- ItemForm.razor self-loads the item data from the API via its
ItemId parameter, so no extra data loading is needed in the action
This follows the instructor's guidance that all Blazor components
should live in the AccountGoWeb project under Components/Pages. The
ItemForm component was already in the correct location; only the
missing MVC controller action needed to be added.
Closes #236
feat(mvc): relabel AR Sales Receipts as Customer Payments (#216)
205 removed bottom form on the add items page
fix(blazor): Add missing Item edit/create page (#236)
146 kaid krawchuk -- Convert Sales Order page to Blazor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In the MVC app, AccountController, relace current POST SignIn action method with this code that provides more logging:
Create an issue that addresses a bug along these lines:
System Administration >> Security Roles
Login with admin@accountgo.ph and P@ssword1. System hangs.
An error in the API project indicates that AspNetUsers table is missing. THere is a migrations problem pertaining to /Users/medhatelmasry/_PlayGround/4870/_GoodBooks/src/Api/Data/Migrations/IdentityDb/20251102192056_M1.cs not being applied