unioil-loyalty-rn-app/app/screens/topup/utils.js

40 lines
1.2 KiB
JavaScript

import REQUEST from '../../components/api/'
import DB from '../../components/storage'
export const createMerchantDetails = async () => {
let u = await DB.profile()
return {
"firstName": u.data.firstname,
"middleName": u.data.middlename,
"lastName": u.data.lastname,
"birthday": new Date(u.data.birthdate).toISOString().split("T")[0],
"customerSince": new Date().toISOString().split("T")[0],
"sex": u.data.gender_code,
"contact": {
"phone": "+" + u.data.mobile,
"email": u.data.email
},
"shippingAddress": {
"firstName": u.data.firstname,
"middleName": u.data.middlename,
"lastName": u.data.lastname,
"phone": "+" + u.data.mobile,
"email": u.data.email,
"line1": "",
"line2": "",
"city": "",
"state": u.data.address,
"zipCode": "",
"countryCode": "PH",
"shippingType": ""
},
"billingAddress": {
"line1": "",
"line2": "",
"city": "",
"state": u.data.address,
"zipCode": "",
"countryCode": "PH"
}
}
}