-
Notifications
You must be signed in to change notification settings - Fork 76
/
vendors.py
116 lines (102 loc) · 2.94 KB
/
vendors.py
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
from collections import OrderedDict
from .base import ApiBase
import logging
logger = logging.getLogger(__name__)
class Vendors(ApiBase):
SIMPLE_FIELDS = [
'accountNumber',
'addressbookList',
'altEmail',
'altName',
'altPhone',
'balance',
'balancePrimary',
'bcn',
'billPay',
'comments',
'companyName',
'creditLimit',
'currencyList',
'customFieldList',
'dateCreated',
'defaultAddress',
'eligibleForCommission',
'email',
'emailPreference',
'emailTransactions',
'entityId',
'fax',
'faxTransactions',
'firstName',
'giveAccess',
'globalSubscriptionStatus',
'homePhone',
'internalId',
'is1099Eligible',
'isAccountant',
'isInactive',
'isJobResourceVend',
'isPerson',
'laborCost',
'lastModifiedDate',
'lastName',
'legalName',
'middleName',
'mobilePhone',
'openingBalance',
'openingBalanceDate',
'password',
'password2',
'phone',
'phoneticName',
'predConfidence',
'predictedDays',
'pricingScheduleList',
'printOnCheckAs',
'printTransactions',
'purchaseOrderAmount',
'purchaseOrderQuantity',
'purchaseOrderQuantityDiff',
'receiptAmount',
'receiptQuantity',
'receiptQuantityDiff',
'requirePwdChange',
'rolesList',
'salutation',
'sendEmail',
'subscriptionsList',
'taxIdNum',
'taxRegistrationList',
'title',
'unbilledOrders',
'unbilledOrdersPrimary',
'url',
'vatRegNumber',
'nullFieldList',
]
RECORD_REF_FIELDS = [
'category',
'customForm',
'defaultTaxReg',
'expenseAccount',
'image',
'incoterm',
'openingBalanceAccount',
'payablesAccount',
'taxItem',
'terms',
]
def __init__(self, ns_client):
ApiBase.__init__(self, ns_client=ns_client, type_name='Vendor')
def post(self, data) -> OrderedDict:
assert data['externalId'], 'missing external id'
vendor = self.ns_client.Vendor(externalId=data['externalId'])
vendor['currency'] = self.ns_client.RecordRef(**(data['currency']))
vendor['subsidiary'] = self.ns_client.RecordRef(**(data['subsidiary']))
vendor['representingSubsidiary'] = self.ns_client.RecordRef(**(data['representingSubsidiary']))
vendor['workCalendar'] = self.ns_client.RecordRef(**(data['workCalendar']))
self.build_simple_fields(self.SIMPLE_FIELDS, data, vendor)
self.build_record_ref_fields(self.RECORD_REF_FIELDS, data, vendor)
logger.debug('able to create vendor = %s', vendor)
res = self.ns_client.upsert(vendor)
return self._serialize(res)