(options)
| 56 | } |
| 57 | |
| 58 | fetch (options) { |
| 59 | if (options == null) { options = {} } |
| 60 | if (this.project) { |
| 61 | if (options.data == null) { options.data = {} } |
| 62 | options.data.project = this.project.join(',') |
| 63 | } |
| 64 | if (options.callOz) { |
| 65 | const url = options.url || this.getURL() |
| 66 | options.url = utils.getProductUrl('OZ', url) |
| 67 | } |
| 68 | this.jqxhr = super.fetch(options) |
| 69 | this.loading = true |
| 70 | return this.jqxhr |
| 71 | } |
| 72 | |
| 73 | setProjection (project) { |
| 74 | this.project = project |
no test coverage detected