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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
|
from odoo import fields, models, api, _
from odoo.exceptions import UserError
from datetime import datetime, timedelta
class SaleOrderLine(models.Model):
_inherit = 'sale.order.line'
item_margin = fields.Float('Margin', compute='compute_item_margin', help="Total Margin in Sales Order Header")
item_percent_margin = fields.Float('%Margin', compute='compute_item_margin', help="Total % Margin in Sales Order Header")
initial_discount = fields.Float('Initial Discount')
vendor_id = fields.Many2one(
'res.partner', string='Vendor', readonly=True,
change_default=True, index=True, tracking=1,
states={'draft': [('readonly', False)], 'sent': [('readonly', False)]},
domain="['|', ('company_id', '=', False), ('company_id', '=', company_id)]"
)
vendor_md_id = fields.Many2one('res.partner', string='MD Vendor')
purchase_price = fields.Float('Purchase', required=True, digits='Product Price', default=0.0)
purchase_price_md = fields.Float('MD Purchase')
purchase_tax_id = fields.Many2one('account.tax', string='Tax', domain=['|', ('active', '=', False), ('active', '=', True)])
delivery_amt_line = fields.Float('DeliveryAmtLine', compute='compute_delivery_amt_line')
fee_third_party_line = fields.Float('FeeThirdPartyLine', compute='compute_fee_third_party_line', default=0)
line_no = fields.Integer('No', default=0, copy=False)
note = fields.Selection([
('eta', 'ETA'),
('info_sales', 'Info Sales'),
('info_vendor', 'Info Vendor'),
('penggabungan', 'Penggabungan'),
], string='Note', help="Harap diisi jika ada keterangan tambahan dari Procurement, agar dapat dimonitoring")
note_procurement = fields.Char(string='Note Detail', help="Harap diisi jika ada keterangan tambahan dari Procurement, agar dapat dimonitoring")
vendor_subtotal = fields.Float(string='Vendor Subtotal', compute="_compute_vendor_subtotal")
amount_voucher_disc = fields.Float(string='Voucher Discount')
qty_reserved = fields.Float(string='Qty Reserved', compute='_compute_qty_reserved')
product_available_quantity = fields.Float(string='Qty pickup by user',)
reserved_from = fields.Char(string='Reserved From', copy=False)
item_percent_margin_without_deduction = fields.Float('Margin Without Deduction', compute='_compute_item_margin_without_deduction')
weight = fields.Float(string='Weight')
md_vendor_id = fields.Many2one('res.partner', string='MD Vendor', readonly=True)
margin_md = fields.Float(string='Margin MD')
qty_free_bu = fields.Float(string='Free BU', compute='_get_qty_free_bandengan')
desc_updatable = fields.Boolean(string='desc boolean', default=True, compute='_get_desc_updatable')
def _get_desc_updatable(self):
for line in self:
if line.product_id.id != 417724 and line.product_id.id:
line.desc_updatable = False
else:
line.desc_updatable = True
def _get_qty_free_bandengan(self):
for line in self:
line.qty_free_bu = line.product_id.qty_free_bandengan
@api.constrains('note_procurement')
def note_procurement_to_apo(self):
for line in self:
matches_so = self.env['automatic.purchase.sales.match'].search([
('sale_line_id', '=', line.id),
])
for match_so in matches_so:
match_so.note_procurement = line.note_procurement
@api.onchange('product_uom', 'product_uom_qty')
def product_uom_change(self):
if not self.product_uom or not self.product_id:
self.price_unit = 0.0
return
self.price_unit = self.price_unit
def _compute_qty_reserved(self):
for line in self:
stock_moves = self.env['stock.move.line'].search([
('product_id', '=', line.product_id.id),
('picking_id.sale_id', '=', line.order_id.id),
('picking_id.state', 'not in', ['cancel', 'done']),
])
reserved_qty = sum(move.product_uom_qty for move in stock_moves)
line.qty_reserved = reserved_qty
def _compute_reserved_from(self):
for line in self:
report_stock_forecasted = self.env['report.stock.report_product_product_replenishment']
report_stock_forecasted._get_report_data(False, [line.product_id.id])
def _compute_vendor_subtotal(self):
for line in self:
if line.purchase_price > 0 and line.product_uom_qty > 0:
line.vendor_subtotal = line.purchase_price * line.product_uom_qty
else:
line.vendor_subtotal = 0
def _compute_item_margin_without_deduction(self):
for line in self:
if not line.product_id or line.product_id.type == 'service' \
or line.price_unit <= 0 or line.product_uom_qty <= 0 \
or not line.vendor_id:
line.item_percent_margin_without_deduction = 0
continue
# calculate margin without tax
sales_price = line.price_reduce_taxexcl * line.product_uom_qty
purchase_price = line.purchase_price
if line.purchase_tax_id.price_include:
purchase_price = line.purchase_price / 1.11
purchase_price = purchase_price * line.product_uom_qty
margin_per_item = sales_price - purchase_price
if sales_price > 0:
line.item_percent_margin_without_deduction = round((margin_per_item / sales_price), 2) * 100
else:
line.item_percent_margin_without_deduction = 0
def compute_item_margin(self):
for line in self:
if not line.product_id or line.product_id.type == 'service' \
or line.price_unit <= 0 or line.product_uom_qty <= 0 \
or not line.vendor_id:
line.item_margin = 0
line.item_percent_margin = 0
continue
# calculate margin without tax
sales_price = line.price_reduce_taxexcl * line.product_uom_qty
# minus with delivery if covered by indoteknik
if line.order_id.shipping_cost_covered == 'indoteknik':
sales_price -= line.delivery_amt_line
if line.order_id.fee_third_party > 0:
sales_price -= line.fee_third_party_line
purchase_price = line.purchase_price
if line.purchase_tax_id.price_include:
purchase_price = line.purchase_price / 1.11
purchase_price = purchase_price * line.product_uom_qty
margin_per_item = sales_price - purchase_price
line.item_margin = margin_per_item
if sales_price > 0:
line.item_percent_margin = round((margin_per_item / sales_price), 2) * 100
else:
line.item_percent_margin = 0
if not line.margin_md:
line.margin_md = line.item_percent_margin
@api.onchange('vendor_id')
def onchange_vendor_id(self):
# TODO : need to change this logic @stephan
if not self.product_id or self.product_id.type == 'service':
return
elif self.product_id.categ_id.id == 34: # finish good / manufacturing only
cost = self.product_id.standard_price
self.purchase_price = cost
elif self.product_id.x_manufacture.override_vendor_id:
# purchase_price = self.env['purchase.pricelist'].search(
# [('vendor_id', '=', self.product_id.x_manufacture.override_vendor_id.id),
# ('product_id', '=', self.product_id.id)],
# limit=1, order='count_trx_po desc, count_trx_po_vendor desc')
price, taxes, vendor_id = self._get_purchase_price_by_vendor(self.product_id, self.vendor_id)
self.purchase_price = price
self.purchase_tax_id = taxes
# else:
# purchase_price = self.env['purchase.pricelist'].search(
# [('vendor_id', '=', self.vendor_id.id), ('product_id', '=', self.product_id.id)],
# limit=1, order='count_trx_po desc, count_trx_po_vendor desc')
# price, taxes = self._get_valid_purchase_price(purchase_price)
# self.purchase_price = price
# self.purchase_tax_id = taxes
# def _calculate_selling_price(self):
# rec_purchase_price, rec_taxes, rec_vendor_id = self._get_purchase_price(self.product_id)
# state = ['sale', 'done']
# last_so = self.env['sale.order.line'].search([
# ('order_id.partner_id.id', '=', self.order_id.partner_id.id),
# ('product_id.id', '=', self.product_id.id),
# ('order_id.state', 'in', state)
# ], limit=1, order='create_date desc')
# # if rec_vendor_id == self.vendor_id and rec_purchase_price == last_so.purchase_price:
# # selling_price = last_so.price_unit
# # tax_id = last_so.tax_id
# if rec_vendor_id == self.vendor_id and rec_purchase_price != last_so.purchase_price:
# if rec_taxes.price_include:
# selling_price = (rec_purchase_price/1.11) / (1-(last_so.line_item_margin / 100))
# else:
# selling_price = rec_purchase_price / (1-(last_so.line_item_margin / 100))
# tax_id = last_so.tax_id
# elif rec_vendor_id != last_so.vendor_id:
# last_so = self.env['sale.order.line'].search([
# ('order_id.partner_id.id', '=', self.order_id.partner_id.id),
# ('product_id.id', '=', self.product_id.id),
# ('state', 'in', state),
# ('vendor_id', '=', rec_vendor_id)
# ], limit=1, order='order_id.date_order desc')
# selling_price = last_so.price_unit
# tax_id = last_so.tax_id
# else:
# selling_price = last_so.price_unit
# tax_id = last_so.tax_id
# self.price_unit = selling_price
# self.tax_id = tax_id
def _get_purchase_price(self, product_id):
purchase_price = self.env['purchase.pricelist'].search(
[('product_id', '=', product_id.id),
('is_winner', '=', True)],
limit=1)
return self._get_valid_purchase_price(purchase_price)
def _get_purchase_price_by_vendor(self, product_id, vendor_id):
purchase_price = self.env['purchase.pricelist'].search(
[('product_id', '=', product_id.id),
('vendor_id', '=', vendor_id.id),
# ('is_winner', '=', True)
],
limit=1)
return self._get_valid_purchase_price(purchase_price)
def _get_valid_purchase_price(self, purchase_price):
current_time = datetime.now()
delta_time = current_time - timedelta(days=365)
# delta_time = delta_time.strftime('%Y-%m-%d %H:%M:%S')
price = 0
taxes = ''
vendor_id = ''
human_last_update = purchase_price.human_last_update or datetime.min
system_last_update = purchase_price.system_last_update or datetime.min
if purchase_price.taxes_product_id.type_tax_use == 'purchase':
price = purchase_price.product_price
taxes = purchase_price.taxes_product_id.id
vendor_id = purchase_price.vendor_id.id
if delta_time > human_last_update:
price = 0
taxes = ''
vendor_id = ''
if system_last_update > human_last_update:
if purchase_price.taxes_system_id.type_tax_use == 'purchase':
price = purchase_price.system_price
taxes = purchase_price.taxes_system_id.id
vendor_id = purchase_price.vendor_id.id
if delta_time > system_last_update:
price = 0
taxes = ''
vendor_id = ''
return price, taxes, vendor_id
@api.onchange('product_id')
def product_id_change(self):
# need to change purchase price logic @stephan
super(SaleOrderLine, self).product_id_change()
for line in self:
if line.product_id and line.product_id.type == 'product':
# query = [('product_id', '=', line.product_id.id)]
# if line.product_id.x_manufacture.override_vendor_id:
# query = [('product_id', '=', line.product_id.id),
# ('vendor_id', '=', line.product_id.x_manufacture.override_vendor_id.id)]
# purchase_price = self.env['purchase.pricelist'].search(
# query, limit=1, order='count_trx_po desc, count_trx_po_vendor desc')
price, taxes, vendor_id = self._get_purchase_price(line.product_id)
line.vendor_id = vendor_id
line.tax_id = line.order_id.sales_tax_id
# price, taxes = line._get_valid_purchase_price(purchase_price)
line.purchase_price = price
line.purchase_tax_id = taxes
attribute_values = line.product_id.product_template_attribute_value_ids.mapped('name')
attribute_values_str = ', '.join(attribute_values) if attribute_values else ''
line_name = ('[' + line.product_id.default_code + ']' if line.product_id.default_code else '') + ' ' + \
(line.product_id.name if line.product_id.name else '') + ' ' + \
('(' + attribute_values_str + ')' if attribute_values_str else '') + ' ' + \
(line.product_id.short_spesification if line.product_id.short_spesification else '')
line.name = line_name
line.weight = line.product_id.weight
if line.product_id.id != 417724 and line.product_id.id:
line.desc_updatable = False
else:
line.desc_updatable = True
@api.constrains('vendor_id')
def _check_vendor_id(self):
for line in self:
price, taxes, vendor_id = self._get_purchase_price(line.product_id)
line.vendor_md_id = vendor_id if vendor_id else None
line.margin_md = line.item_percent_margin
line.purchase_price_md = price
def compute_delivery_amt_line(self):
for line in self:
try:
contribution = round((line.price_total / line.order_id.amount_total), 2)
except:
contribution = 0
delivery_amt = line.order_id.delivery_amt
line.delivery_amt_line = delivery_amt * contribution
def compute_fee_third_party_line(self):
for line in self:
try:
contribution = round((line.price_total / line.order_id.amount_total), 2)
except:
contribution = 0
fee = line.order_id.fee_third_party
line.fee_third_party_line = fee * contribution
@api.onchange('product_id', 'price_unit', 'product_uom', 'product_uom_qty', 'tax_id')
def _onchange_discount(self):
if not (self.product_id and self.product_uom and
self.order_id.partner_id and self.order_id.pricelist_id and
self.order_id.pricelist_id.discount_policy == 'without_discount' and
self.env.user.has_group('product.group_discount_per_so_line')):
return
self.discount = 0.0
product = self.product_id.with_context(
lang=self.order_id.partner_id.lang,
partner=self.order_id.partner_id,
quantity=self.product_uom_qty,
date=self.order_id.date_order,
pricelist=self.order_id.pricelist_id.id,
uom=self.product_uom.id,
fiscal_position=self.env.context.get('fiscal_position')
)
product_context = dict(self.env.context, partner_id=self.order_id.partner_id.id, date=self.order_id.date_order, uom=self.product_uom.id)
price, rule_id = self.order_id.pricelist_id.with_context(product_context).get_product_price_rule(
self.product_id, self.product_uom_qty or 1.0, self.order_id.partner_id)
new_list_price, currency = self.with_context(product_context)._get_real_price_currency(product, rule_id, self.product_uom_qty, self.product_uom, self.order_id.pricelist_id.id)
new_list_price = product.web_price
if new_list_price != 0:
if self.order_id.pricelist_id.currency_id != currency:
# we need new_list_price in the same currency as price, which is in the SO's pricelist's currency
new_list_price = currency._convert(
new_list_price, self.order_id.pricelist_id.currency_id,
self.order_id.company_id or self.env.company, self.order_id.date_order or fields.Date.today())
discount = (new_list_price - price) / new_list_price * 100
if (discount > 0 and new_list_price > 0) or (discount < 0 and new_list_price < 0):
self.discount = discount
def _get_display_price(self, product):
# TO DO: move me in master/saas-16 on sale.order
# awa: don't know if it's still the case since we need the "product_no_variant_attribute_value_ids" field now
# to be able to compute the full price
# it is possible that a no_variant attribute is still in a variant if
# the type of the attribute has been changed after creation.
no_variant_attributes_price_extra = [
ptav.price_extra for ptav in self.product_no_variant_attribute_value_ids.filtered(
lambda ptav:
ptav.price_extra and
ptav not in product.product_template_attribute_value_ids
)
]
if no_variant_attributes_price_extra:
product = product.with_context(
no_variant_attributes_price_extra=tuple(no_variant_attributes_price_extra)
)
if self.order_id.pricelist_id.discount_policy == 'with_discount':
return product.with_context(pricelist=self.order_id.pricelist_id.id, uom=self.product_uom.id).price
product_context = dict(self.env.context, partner_id=self.order_id.partner_id.id, date=self.order_id.date_order, uom=self.product_uom.id)
final_price, rule_id = self.order_id.pricelist_id.with_context(product_context).get_product_price_rule(product or self.product_id, self.product_uom_qty or 1.0, self.order_id.partner_id)
base_price, currency = self.with_context(product_context)._get_real_price_currency(product, rule_id, self.product_uom_qty, self.product_uom, self.order_id.pricelist_id.id)
base_price = product.web_price
if currency != self.order_id.pricelist_id.currency_id:
base_price = currency._convert(
base_price, self.order_id.pricelist_id.currency_id,
self.order_id.company_id or self.env.company, self.order_id.date_order or fields.Date.today())
# negative discounts (= surcharge) are included in the display price
return max(base_price, final_price)
def validate_line(self):
for line in self:
if line.product_id.id in [385544, 224484, 417724]:
raise UserError('Produk Sementara Tidak Bisa Di Confirm atau Ask Approval')
if not line.product_id or line.product_id.type == 'service':
continue
if not line.product_id.product_tmpl_id.sale_ok:
raise UserError('Product %s belum bisa dijual, harap hubungi finance' % line.product_id.display_name)
if not line.vendor_id or not line.purchase_price and not line.display_type == 'line_note':
raise UserError(_('Isi Vendor dan Harga Beli sebelum Request Approval'))
@api.depends('state')
def _compute_product_updatable(self):
for line in self:
if line.state == 'draft':
line.product_updatable = True
# line.desc_updatable = True
else:
line.product_updatable = False
# line.desc_updatable = False
|