[SupplierOrders] - Implement CRUD Operations to Pass Tests #156

Closed
opened 2025-12-05 17:44:32 +00:00 by GFMpt13 · 0 comments
GFMpt13 commented 2025-12-05 17:44:32 +00:00 (Migrated from github.com)

Fill in the logic for the interface methods created in step 1 until all tests written in step 2 pass.

Tasks:

  • Implement create_supplier_order using .insert().
  • Implement get_by_id using .get().
  • Implement query methods (get_by_work_order_id, get_by_status) using .find(...).to_list().
  • Implement update using .get(), .set(), and .save().
  • Implement delete using .delete().
  • Run uv run pytest and confirm all tests now PASS (Green).
Fill in the logic for the interface methods created in step 1 until all tests written in step 2 pass. Tasks: - [ ] Implement create_supplier_order using .insert(). - [ ] Implement get_by_id using .get(). - [ ] Implement query methods (get_by_work_order_id, get_by_status) using .find(...).to_list(). - [ ] Implement update using .get(), .set(), and .save(). - [ ] Implement delete using .delete(). - [x] Run uv run pytest and confirm all tests now PASS (Green).
Sign in to join this conversation.
No description provided.