-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstock.py
281 lines (226 loc) · 10.9 KB
/
stock.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2011 NovaPoint Group LLC (<http://www.novapointgroup.com>)
# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
##############################################################################
import re
import base64
import os
from openerp.osv import fields, osv
from openerp.tools.translate import _
from helpers.endicia import Package
from . import api
class logistic_company(osv.osv):
_inherit = "logistic.company"
def _get_company_code(self, cr, user, context=None):
res = super(logistic_company, self)._get_company_code(cr, user, context=context)
res.append(('usps', 'USPS'))
return list(set(res))
_columns = {
'ship_company_code' : fields.selection(_get_company_code, 'Ship Company', method=True, required=True, size=64),
}
logistic_company()
class stock_packages(osv.osv):
_inherit = "stock.packages"
_columns = {
'usps_confirmation_number': fields.char('USPS Confirm Number', size=64, readonly=True),
}
stock_packages()
class _base_stock_picking(object):
def _get_company_code(self, cr, user, context=None):
res = super(_base_stock_picking, self)._get_company_code(cr, user, context=context)
res.append(('usps', 'USPS'))
return list(set(res))
def _get_service_type_usps(self, cr, uid, context=None):
return [(x, re.sub(r'((?<=[a-z])[A-Z]|(?<!\A)[A-Z](?=[a-z]))', r' \1', x)) for x in Package.shipment_types]
def _get_first_class_mail_type_usps(self, cr, uid, context=None):
return [
('Letter', 'Letter'),
('Flat', 'Flat'),
('Parcel', 'Parcel'),
('Postcard', 'Postcard'),
]
def _get_container_usps(self, cr, uid, context=None):
return [(x, re.sub(r'((?<=[a-z])[A-Z]|(?<!\A)[A-Z](?=[a-z]))', r' \1', x)) for x in Package.shapes]
def _get_size_usps(self, cr, uid, context=None):
return [
('REGULAR', 'Regular'),
('LARGE', 'Large'),
]
_columns = {
'ship_company_code': fields.selection(_get_company_code, 'Ship Company', method=True, size=64),
'usps_confirmation_number' : fields.char('Confirmation Number', size=64, readonly=True),
'usps_service_type' : fields.selection(_get_service_type_usps, 'Service Type', size=100),
'usps_package_location' : fields.selection([
('Front Door', 'Front Door'),
('Back Door', 'Back Door'),
('Side Door', 'Side Door'),
('Knock on Door/Ring Bell', 'Knock on Door/Ring Bell'),
('Mail Room', 'Mail Room'),
('Office', 'Office'),
('Reception', 'Reception'),
('In/At Mailbox', 'In/At Mailbox'),
('Other', 'Other'),
], 'Package Location'),
'usps_first_class_mail_type' : fields.selection(_get_first_class_mail_type_usps, 'First Class Mail Type', size=50),
'usps_container' : fields.selection(_get_container_usps, 'Container', size=100),
'usps_size' : fields.selection(_get_size_usps, 'Size'),
'usps_length' : fields.float('Length'),
'usps_width' : fields.float('Width'),
'usps_height' : fields.float('Height'),
'usps_girth' : fields.float('Girth'),
}
_defaults = {
'usps_service_type' : 'Priority',
'usps_package_location' : 'Front Door',
'usps_first_class_mail_type': 'Parcel',
'usps_size' : 'REGULAR',
'usps_container' : 'Parcel',
}
def print_labels(self, cr, uid, ids, context=None):
order = self.browse(cr, uid, type(ids) == type([]) and ids[0] or ids, context=context)
# Pass on up this function call if the shipping company specified was not USPS.
if (order.ship_company_code != 'usps'
or not (order.logis_company and order.logis_company.ship_company_code == 'usps')):
return super(_base_stock_picking, self).print_labels(cr, uid, ids, context=context)
# TODO: Let admin choose printer name.
res = {
'type': 'ir.actions.client',
'tag': 'printer_proxy.print',
'name': _('Print Shipping Label'),
'params': {'printer_name': 'zebra', 'data': [], 'format': 'epl2'}
}
label_dir = os.path.dirname(os.path.realpath(__file__)) + '/labels' + '/%s' % order.id
for package in order.packages_ids:
label = open(label_dir + "/%s.epl" % package.id)
res['params']['data'].append(base64.b64encode(label.read()))
label.close()
return res
def process_ship(self, cr, uid, ids, context=None):
company = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id
res = {
'type': 'ir.actions.client',
'tag': 'printer_proxy.print',
'name': _('Print Shipping Label'),
'params': {
'printer_name': company.printer_proxy_device_name,
'url': company.printer_proxy_url,
'username': company.printer_proxy_username,
'password': company.printer_proxy_password,
'data': [],
'format': 'epl2'
}
}
data = self.browse(cr, uid, type(ids) == type([]) and ids[0] or ids, context=context)
# Pass on up this function call if the shipping company specified was not USPS.
if data.ship_company_code != 'usps':
return super(_base_stock_picking, self).process_ship(cr, uid, ids, context=context)
if not (data.logis_company or data.shipper or data.usps_service):
raise osv.except_osv("Warning", "Please select a Logistics Company, Shipper and Shipping Service.")
if not (data.logis_company and data.logis_company.ship_company_code == 'usps'):
return super(_base_stock_picking, self).process_ship(cr, uid, ids, context=context)
if not data.packages_ids or len(data.packages_ids) == 0:
raise osv.except_osv("Warning", "Please define your packages.")
error = False
usps_config = api.v1.get_config(cr, uid, sale=data.sale_id, context=context)
for pkg in data.packages_ids:
try:
# Get the shipping label, store it, and return it.
label = api.v1.get_label(usps_config, data, pkg)
res['params']['data'].append(base64.b64encode(label.label))
self.pool.get('stock.packages').write(cr, uid, [pkg.id], {
'logo':label.label, 'tracking_no': label.tracking,
'usps_confirmation_number': label.tracking, 'ship_message': 'Shipment has processed'
})
except Exception, e:
if not error:
error = []
error_str = str(e)
error.append(error_str)
if error:
self.pool.get('stock.packages').write(cr, uid, pkg.id, {'ship_message': error_str}, context=context)
if not error:
self.write(cr, uid, data.id, {
'ship_state':'ready_pick', 'ship_message': 'Shipment has been processed.'
}, context=context)
return res
else:
self.write(cr, uid, data.id, {
'ship_message': 'Error occured on processing some of packages, ' +
'for details please see the status packages.'
}, context=context)
res = {
'type': 'ir.actions.client',
'tag': 'action_warn',
'name': 'Failure',
'params': {
'title': 'Package Errors',
'text': 'Errors encountered while processing packages. Look at package ship messages for details.',
'sticky': True
}
}
return res
class stock_picking(_base_stock_picking, osv.osv):
_inherit = "stock.picking"
_columns = _base_stock_picking._columns
_defaults = _base_stock_picking._defaults
stock_picking()
class stock_picking_out(_base_stock_picking, osv.osv):
_inherit = "stock.picking.out"
_columns = _base_stock_picking._columns
_defaults = _base_stock_picking._defaults
stock_picking_out()
class stock_move(osv.osv):
_inherit = "stock.move"
def created(self, cr, uid, vals, context=None):
if not context: context = {}
package_obj = self.pool.get('stock.packages')
pack_id = None
package_ids = package_obj.search(cr, uid, [('pick_id', "=", vals.get('picking_id'))])
if vals.get('picking_id'):
rec = self.pool.get('stock.picking').browse(cr, uid, vals.get('picking_id'), context)
if not context.get('copy'):
if not package_ids:
pack_id = package_obj.create(cr, uid , {'package_type': rec.sale_id.usps_packaging_type.id, 'pick_id': vals.get('picking_id')})
res = super(stock_move, self).create(cr, uid, vals, context)
if not context.get('copy'):
context.update({'copy': 1})
default_vals = {}
if pack_id:
default_vals = {'package_id':pack_id, 'picking_id':[]}
elif package_ids:
default_vals = {'package_id':package_ids[0], 'picking_id':[]}
self.copy(cr, uid, res, default_vals , context)
return res
stock_move()
class stock(osv.osv_memory):
_inherit = "stock.invoice.onshipping"
def create_invoice(self, cr, uid, ids, context=None):
if context is None:
context = {}
invoice_ids = []
res = super(stock, self).create_invoice(cr, uid, ids, context=context)
invoice_ids += res.values()
picking_pool = self.pool.get('stock.picking.out')
invoice_pool = self.pool.get('account.invoice')
active_picking = picking_pool.browse(cr, uid, context.get('active_id', False), context=context)
if active_picking:
invoice_pool.write(cr, uid, invoice_ids, {'shipcharge':active_picking.shipcharge }, context=context)
return res
stock()