forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfulfillment.js
98 lines (87 loc) · 2.61 KB
/
fulfillment.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
'use strict';
const assign = require('lodash/assign');
const omit = require('lodash/omit');
const base = require('../mixins/base');
const baseChild = require('../mixins/base-child');
/**
* Creates a Fulfillment instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function Fulfillment(shopify) {
this.shopify = shopify;
this.parentName = 'orders';
this.name = 'fulfillments';
this.key = 'fulfillment';
}
assign(Fulfillment.prototype, omit(baseChild, ['delete']));
/**
* Completes a pending fulfillment.
*
* @param {Number} orderId Order ID
* @param {Number} id Fulfillment ID
* @return {Promise} Promise that resolves with the result
* @public
*/
Fulfillment.prototype.complete = function complete(orderId, id) {
const url = this.buildUrl(orderId, `${id}/complete`);
return this.shopify
.request(url, 'POST', undefined, {})
.then((body) => body[this.key]);
};
/**
* Opens a pending fulfillment.
*
* @param {Number} orderId Order ID
* @param {Number} id Fulfillment ID
* @return {Promise} Promise that resolves with the result
* @public
*/
Fulfillment.prototype.open = function open(orderId, id) {
const url = this.buildUrl(orderId, `${id}/open`);
return this.shopify
.request(url, 'POST', undefined, {})
.then((body) => body[this.key]);
};
/**
* Cancels a pending fulfillment.
*
* @param {Number} orderId Order ID
* @param {Number} id Fulfillment ID
* @return {Promise} Promise that resolves with the result
* @public
*/
Fulfillment.prototype.cancel = function cancel(orderId, id) {
const url = this.buildUrl(orderId, `${id}/cancel`);
return this.shopify
.request(url, 'POST', undefined, {})
.then((body) => body[this.key]);
};
/**
* Creates a fulfillment for one or many fulfillment orders. The fulfillment
* orders are associated with the same order and are assigned to the same
* location.
*
* @param {Object} [params] Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
Fulfillment.prototype.createV2 = function createV2(params) {
const url = base.buildUrl.call(this);
return this.shopify.request(url, 'POST', this.key, params);
};
/**
* Updates the tracking information for a fulfillment.
*
* @param {Number} id Fulfillment ID
* @param {Object} params Tracking information
* @return {Promise} Promise that resolves with the result
* @public
*/
Fulfillment.prototype.updateTracking = function updateTracking(id, params) {
const url = base.buildUrl.call(this, `${id}/update_tracking`);
return this.shopify.request(url, 'POST', this.key, params);
};
module.exports = Fulfillment;