-
Notifications
You must be signed in to change notification settings - Fork 0
/
accounts.js
47 lines (47 loc) · 1.09 KB
/
accounts.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
const MARKET = 0.05;
module.exports = {
Basics: {
pricingMethod: 'lookup',
billWtMethod: 'billWt166',
markups: {
smallParcelMarkup: 1.1,
parcelMarkup: 1.1,
fuel: { fuelSurcharge: MARKET, fuelFactor: 'packageCharge' },
},
lookupObject: 'basics.json',
das: 1.7,
},
'A shops': {
pricingMethod: 'markup',
billWtMethod: 'billWt196',
markups: {
smallParcelMarkup: 1.1,
parcelMarkup: 1.4,
fuel: { fuelSurcharge: 0.08, fuelFactor: 'packageCharge' },
},
lookupObject: undefined,
das: 1.25,
},
Flannel: {
pricingMethod: 'markup',
billWtMethod: 'billWt196',
markups: {
smallParcelMarkup: 1.075,
parcelMarkup: 1.525,
fuel: { fuelSurcharge: 0.08, fuelFactor: 'packageCharge' },
},
lookupObject: undefined,
das: 1.25,
},
Sparkles: {
pricingMethod: 'markup',
billWtMethod: 'billWt196',
markups: {
smallParcelMarkup: 1.075,
parcelMarkup: 1.5,
fuel: { fuelSurcharge: 0.08, fuelFactor: 'packageCharge' },
},
lookupObject: undefined,
das: 1.25,
},
};