summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2023-11-25 02:42:37 +0000
committerIT Fixcomart <it@fixcomart.co.id>2023-11-25 02:42:37 +0000
commit4dcd1e3e1a3e4dced5a2d0d89d2fd4ee3e1fe7d3 (patch)
tree3e15c66065c81eead3fb40c9f87e3f2c269e20f2 /indoteknik_custom/models
parent2aee5a44abbe36961dfe23cc3d656aa48e11e0f9 (diff)
parent693e78afa8b9b4df99f417392b42bff12ea41f9e (diff)
Merged in production (pull request #132)
Production
Diffstat (limited to 'indoteknik_custom/models')
-rw-r--r--indoteknik_custom/models/account_move.py5
-rw-r--r--indoteknik_custom/models/commision.py4
-rw-r--r--indoteknik_custom/models/dunning_run.py1
-rwxr-xr-xindoteknik_custom/models/product_template.py7
-rwxr-xr-xindoteknik_custom/models/purchase_order.py1
-rw-r--r--indoteknik_custom/models/res_partner.py1
-rwxr-xr-xindoteknik_custom/models/res_users.py33
-rw-r--r--indoteknik_custom/models/solr/product_product.py6
-rw-r--r--indoteknik_custom/models/solr/product_template.py8
-rw-r--r--indoteknik_custom/models/users.py2
-rw-r--r--indoteknik_custom/models/voucher.py5
11 files changed, 67 insertions, 6 deletions
diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py
index fe9db583..d55cca38 100644
--- a/indoteknik_custom/models/account_move.py
+++ b/indoteknik_custom/models/account_move.py
@@ -48,8 +48,9 @@ class AccountMove(models.Model):
def unlink(self):
res = super(AccountMove, self).unlink()
- if self.state == 'posted':
- raise UserError('Data Hanya Bisa Di Cancel')
+ for rec in self:
+ if rec.state == 'posted':
+ raise UserError('Data Hanya Bisa Di Cancel')
return res
def button_cancel(self):
diff --git a/indoteknik_custom/models/commision.py b/indoteknik_custom/models/commision.py
index d4942a0d..a11d85c7 100644
--- a/indoteknik_custom/models/commision.py
+++ b/indoteknik_custom/models/commision.py
@@ -148,6 +148,10 @@ class CustomerCommision(models.Model):
('cashback', 'Cashback'),
('rebate', 'Rebate'),
], string='Commision Type', required=True)
+ bank_name = fields.Char(string='Bank', tracking=3)
+ account_name = fields.Char(string='Account Name', tracking=3)
+ bank_account = fields.Char(string='Account No', tracking=3)
+ note_transfer = fields.Char(string='Keterangan')
# add status for type of commision, fee, rebate / cashback
# include child or not?
diff --git a/indoteknik_custom/models/dunning_run.py b/indoteknik_custom/models/dunning_run.py
index 8e5b2c19..abfd68be 100644
--- a/indoteknik_custom/models/dunning_run.py
+++ b/indoteknik_custom/models/dunning_run.py
@@ -10,6 +10,7 @@ class DunningRun(models.Model):
_name = 'dunning.run'
_description = 'Dunning Run'
_order = 'dunning_date desc, id desc'
+ _rec_name = 'number'
number = fields.Char(string='Document No', index=True, copy=False, readonly=True)
dunning_date = fields.Date(string='Dunning Date', required=True)
diff --git a/indoteknik_custom/models/product_template.py b/indoteknik_custom/models/product_template.py
index d1de2221..90e8a144 100755
--- a/indoteknik_custom/models/product_template.py
+++ b/indoteknik_custom/models/product_template.py
@@ -120,6 +120,8 @@ class ProductTemplate(models.Model):
rate = 0
if product.web_price:
rate += 4
+ if product.qty_sold > 0:
+ rate += 3
if product.have_promotion_program: #have discount from pricelist
rate += 5
if product.image_128:
@@ -313,8 +315,9 @@ class ProductTemplate(models.Model):
return values
def write(self, vals):
- if self.id == 224484:
- raise UserError('Tidak dapat mengubah produk sementara')
+ for rec in self:
+ if rec.id == 224484:
+ raise UserError('Tidak dapat mengubah produk sementara')
return super(ProductTemplate, self).write(vals)
diff --git a/indoteknik_custom/models/purchase_order.py b/indoteknik_custom/models/purchase_order.py
index b0f1a569..e00a671c 100755
--- a/indoteknik_custom/models/purchase_order.py
+++ b/indoteknik_custom/models/purchase_order.py
@@ -50,6 +50,7 @@ class PurchaseOrder(models.Model):
description = fields.Char(string='Description', help='bisa diisi sebagai informasi indent barang tertentu atau apapun')
purchase_order_lines = fields.One2many('purchase.order.line', 'order_id', string='Indent', auto_join=True)
responsible_ids = fields.Many2many('res.users', string='Responsibles', compute='_compute_responsibles')
+ status_paid_cbd = fields.Boolean(string='Paid Status', tracking=3, help='Field ini diisi secara manual oleh Finance AP dan hanya untuk status PO CBD')
def _compute_responsibles(self):
for purchase in self:
diff --git a/indoteknik_custom/models/res_partner.py b/indoteknik_custom/models/res_partner.py
index a1b57147..fcde9369 100644
--- a/indoteknik_custom/models/res_partner.py
+++ b/indoteknik_custom/models/res_partner.py
@@ -21,6 +21,7 @@ class ResPartner(models.Model):
counter = fields.Integer(string="Counter", default=0)
digital_invoice_tax = fields.Boolean(string="Digital Invoice & Faktur Pajak")
is_potential = fields.Boolean(string='Potential')
+ pakta_integritas = fields.Boolean(string='Pakta Integritas')
def get_child_ids(self):
partner = self.env['res.partner'].search([('id', '=', self.id)], limit=1)
diff --git a/indoteknik_custom/models/res_users.py b/indoteknik_custom/models/res_users.py
index 7f94771f..09321fc6 100755
--- a/indoteknik_custom/models/res_users.py
+++ b/indoteknik_custom/models/res_users.py
@@ -1,4 +1,7 @@
from odoo import models, fields
+from datetime import datetime
+from pytz import UTC
+import random, string
class ResUsers(models.Model):
@@ -6,3 +9,33 @@ class ResUsers(models.Model):
reset_password_token = fields.Char(string="Reset Password Token")
activation_token = fields.Char(string="Activation Token")
+ otp_code = fields.Char(string='OTP Code')
+ otp_create_date = fields.Datetime(string='OTP Create Date')
+
+ def _generate_otp(self):
+ for user in self:
+ user.otp_code = '{:04d}'.format(random.randint(0, 9999))
+ user.otp_create_date = fields.Datetime.now()
+
+ def _generate_activation_token(self):
+ for user in self:
+ token_source = string.ascii_letters + string.digits
+ user.activation_token = ''.join(random.choice(token_source) for i in range(21))
+
+ def send_activation_mail(self):
+ template = self.env.ref('indoteknik_custom.mail_template_res_user_activation_request')
+ for user in self:
+ user._generate_otp()
+ user._generate_activation_token()
+ template.send_mail(user.id, force_send=True)
+
+ def get_activation_token_url(self):
+ base_url = self.env['ir.config_parameter'].get_param('site.base.url')
+ return f'{base_url}/register?activation=token&amp;token={self.activation_token}'
+
+ def get_voucher_code(self, type):
+ if type == 'activation':
+ vouchers = self.env['voucher'].get_active_voucher([('show_on_email', '=', 'user_activation')])
+ if not vouchers: return None
+ return ', '.join(x.code for x in vouchers)
+ return None
diff --git a/indoteknik_custom/models/solr/product_product.py b/indoteknik_custom/models/solr/product_product.py
index 03eaaf13..fe2a08dc 100644
--- a/indoteknik_custom/models/solr/product_product.py
+++ b/indoteknik_custom/models/solr/product_product.py
@@ -29,6 +29,12 @@ class ProductProduct(models.Model):
product.product_tmpl_id._create_solr_queue('_sync_price_to_solr')
product.solr_flag = 1
+ @api.constrains('active')
+ def _constrains_active(self):
+ for rec in self:
+ if not rec.active:
+ rec.unpublished = True
+
def _sync_variants_to_solr(self):
solr_model = self.env['apache.solr']
diff --git a/indoteknik_custom/models/solr/product_template.py b/indoteknik_custom/models/solr/product_template.py
index 648a0625..bba98edc 100644
--- a/indoteknik_custom/models/solr/product_template.py
+++ b/indoteknik_custom/models/solr/product_template.py
@@ -28,13 +28,19 @@ class ProductTemplate(models.Model):
def _create_solr_queue_sync_product_template(self):
self._create_solr_queue('_sync_product_template_to_solr')
+ @api.constrains('active')
+ def _constrains_active(self):
+ for rec in self:
+ if not rec.active:
+ rec.unpublished = True
+
def action_sync_to_solr(self):
template_ids = self.env.context.get('active_ids', [])
templates = self.search([('id', 'in', template_ids)])
templates._create_solr_queue('_sync_product_template_to_solr')
def solr_flag_to_solr(self, limit=500):
- template_products = self.search([('solr_flag', '=', 2)], limit=limit)
+ template_products = self.search([('solr_flag', '=', 2), ('active', 'in', [True, False])], limit=limit)
for product in template_products:
product._create_solr_queue('_sync_product_template_to_solr')
product._create_solr_queue('_sync_price_to_solr')
diff --git a/indoteknik_custom/models/users.py b/indoteknik_custom/models/users.py
index 2ff9933e..d95b56e7 100644
--- a/indoteknik_custom/models/users.py
+++ b/indoteknik_custom/models/users.py
@@ -12,6 +12,8 @@ class Users(models.Model):
is_logistic_approver = fields.Boolean(string='Logistic Approver', help='Berhak Approval Penerimaan Barang')
is_editor_product = fields.Boolean(string='Editor Product', help='Berhak Mengedit Data Product')
is_admin_reconcile = fields.Boolean(string='Admin Reconcile', help='Berhak Mengedit Journal Reconcile')
+ is_inbound = fields.Boolean(string='Operator Inbound')
+ is_outbound = fields.Boolean(string='Operator Outbound')
def notify_internal_users(self, message, title):
users = self.search([('share', '=', False)])
diff --git a/indoteknik_custom/models/voucher.py b/indoteknik_custom/models/voucher.py
index 66c50c24..588e9ac5 100644
--- a/indoteknik_custom/models/voucher.py
+++ b/indoteknik_custom/models/voucher.py
@@ -55,6 +55,9 @@ class Voucher(models.Model):
('brand', "Selected product brand"),
])
count_order = fields.Integer(string='Count Order', compute='_compute_count_order')
+ show_on_email = fields.Selection([
+ ('user_activation', 'User Activation')
+ ], 'Show on Email')
@api.constrains('description')
def _check_description_length(self):
@@ -219,7 +222,7 @@ class Voucher(models.Model):
tnc.append(f'<li>Voucher berlaku {self._res_remaining_time()} lagi</li>')
tnc.append(f'<li>Voucher tidak bisa digunakan apabila terdapat produk flash sale</li>')
if len(self.voucher_line) > 0:
- brand_names = ', '.join([x.manufacture_id.x_name for x in self.voucher_line])
+ brand_names = ', '.join([x.manufacture_id.x_name or '' for x in self.voucher_line])
tnc.append(f'<li>Voucher berlaku untuk produk dari brand {brand_names}</li>')
tnc.append(self.generate_detail_tnc())
tnc.append('</ol>')