nesh170 / asap-inventory-system

This is a concept inventory system for ECE458. It is built by ASAPsolutions
1 stars 0 forks source link

added disbursement fix for quantity and retrive view #140

Closed nesh170 closed 7 years ago

nesh170 commented 7 years ago

GET /api/disburse/6 HTTP/1.1 Host: localhost:8000 Content-Type: application/json Authorization: Token

Response:-

{
  "id": 6,
  "disburser": {
    "id": 24,
    "username": "staff"
  },
  "receiver": {
    "id": 1,
    "username": "admin"
  },
  "comment": "lit",
  "disbursements": [
    {
      "id": 12,
      "item": {
        "id": 5,
        "name": "iPhone 7",
        "quantity": 44
      },
      "quantity": 5
    }
  ]
}