danisherror/frontend_for_notes_expense_stocks

Transaction Date not working in edit Transaction

Open

#1 opened on Sep 8, 2024

View on GitHub
 (0 comments) (0 reactions) (0 assignees)TypeScript (1 fork)github user discovery
buggood first issuehelp wanted

Repository metrics

Stars
 (0 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

Getting the data from a particular transaction from the backend and showing the data in the field. But not able to show it in the date field.

data sendig from backend: { "amount": 8000.0, "description": "Giving September Pg Rent to Pg Owner", "tags": ["Pg Rent", "Gpay"], "transaction_type": "UPI", "transaction_date": datetime.datetime(2024, 9, 4, 5, 15), "status_done": True, "second_party": "Pg Owner", "id": "66dd329eb1c418e24896bbed", "created_at": datetime.datetime(2024, 9, 8, 10, 44, 6, 267000), "last_modified": datetime.datetime(2024, 9, 8, 10, 44, 6, 267000) }

data reaching at frontend: { "amount": 8000, "created_at": "2024-09-08T10:44:06.267000", "description": "Giving September Pg Rent to Pg Owner", "id": "66dd329eb1c418e24896bbed", "last_modified": "2024-09-08T10:44:06.267000", "second_party": "Pg Owner", "status_done": true, "tags": ["Pg Rent", "Gpay"], "transaction_date": "2024-09-04T05:15:00", "transaction_type": "UPI" }

Contributor guide