
Quotations are always returned for the current month, distil doesn't take request parameters into account for it. This changes the manager to adhere to that. Change-Id: I2bbc6e1033e97370c88396c42d92fbd828592eed
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
# Copyright 2017 Catalyst IT Ltd.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from distilclient import base
|
|
|
|
|
|
class QuotationManager(base.Manager):
|
|
|
|
def list(self, project_id=None):
|
|
"""Retrieve a list of quotations.
|
|
|
|
:param project_id: Project ID, there there is no project id given,
|
|
Distil will use the project ID from token.
|
|
:returns: A list of quotations.
|
|
"""
|
|
|
|
url = "/v2/quotations"
|
|
if project_id:
|
|
url = url + "?project_id=" + project_id
|
|
return self._list(url, "quotations")
|