Browse Source

[UPDT] Multi company dashboard 'base_accounting_kit'

pull/165/head
Ajmal JK 5 years ago
parent
commit
643d0fd362
  1. 2
      base_accounting_kit/__manifest__.py
  2. 6
      base_accounting_kit/doc/changelog.md
  3. 137
      base_accounting_kit/models/account_dashboard.py
  4. 501
      base_accounting_kit/static/description/index.html

2
base_accounting_kit/__manifest__.py

@ -22,7 +22,7 @@
{ {
'name': 'Odoo 13 Full Accounting Kit', 'name': 'Odoo 13 Full Accounting Kit',
'version': '13.0.4.8.9', 'version': '13.0.4.8.10',
'category': 'Accounting', 'category': 'Accounting',
'live_test_url': 'https://www.youtube.com/watch?v=peAp2Tx_XIs', 'live_test_url': 'https://www.youtube.com/watch?v=peAp2Tx_XIs',
'summary': """ Asset and Budget Management, 'summary': """ Asset and Budget Management,

6
base_accounting_kit/doc/changelog.md

@ -82,3 +82,9 @@
- Currency symbol position in Dashboard - Currency symbol position in Dashboard
- Monthly invoice filter in Dashboard - Monthly invoice filter in Dashboard
- Check payment issue, in case of multi payment - Check payment issue, in case of multi payment
#### 16.07.2020
#### Version 13.0.4.8.10
#### UPDT
- Multi Company in Dashboard

137
base_accounting_kit/models/account_dashboard.py

@ -38,7 +38,7 @@ class DashBoard(models.Model):
internal_group from account_move_line ,account_account where internal_group from account_move_line ,account_account where
account_move_line.account_id=account_account.id AND internal_group = 'income' account_move_line.account_id=account_account.id AND internal_group = 'income'
AND to_char(DATE(NOW()), 'YY') = to_char(account_move_line.date, 'YY') AND to_char(DATE(NOW()), 'YY') = to_char(account_move_line.date, 'YY')
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
AND %s AND %s
group by internal_group,month group by internal_group,month
''') % (states_arg)) ''') % (states_arg))
@ -48,7 +48,7 @@ class DashBoard(models.Model):
internal_group from account_move_line ,account_account where internal_group from account_move_line ,account_account where
account_move_line.account_id=account_account.id AND internal_group = 'expense' account_move_line.account_id=account_account.id AND internal_group = 'expense'
AND to_char(DATE(NOW()), 'YY') = to_char(account_move_line.date, 'YY') AND to_char(DATE(NOW()), 'YY') = to_char(account_move_line.date, 'YY')
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
AND %s AND %s
group by internal_group,month group by internal_group,month
''') % (states_arg)) ''') % (states_arg))
@ -135,7 +135,7 @@ class DashBoard(models.Model):
internal_group from account_move_line ,account_account internal_group from account_move_line ,account_account
where account_move_line.account_id=account_account.id AND internal_group = 'income' where account_move_line.account_id=account_account.id AND internal_group = 'income'
AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW())) -1 AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW())) -1
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
AND %s AND %s
group by internal_group,month group by internal_group,month
''') % (states_arg)) ''') % (states_arg))
@ -145,7 +145,7 @@ class DashBoard(models.Model):
internal_group from account_move_line , account_account where internal_group from account_move_line , account_account where
account_move_line.account_id=account_account.id AND internal_group = 'expense' account_move_line.account_id=account_account.id AND internal_group = 'expense'
AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW())) -1 AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW())) -1
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
AND %s AND %s
group by internal_group,month group by internal_group,month
''') % (states_arg)) ''') % (states_arg))
@ -235,9 +235,9 @@ class DashBoard(models.Model):
self._cr.execute(('''select sum(debit)-sum(credit) as income ,cast(to_char(account_move_line.date, 'DD')as int) self._cr.execute(('''select sum(debit)-sum(credit) as income ,cast(to_char(account_move_line.date, 'DD')as int)
as date , internal_group from account_move_line , account_account where as date , internal_group from account_move_line , account_account where
Extract(month FROM account_move_line.date) = ''' + str(one_month_ago) + ''' Extract(month FROM account_move_line.date) in ''' + str(tuple(company_id)) + '''
AND %s AND %s
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
AND account_move_line.account_id=account_account.id AND internal_group='income' AND account_move_line.account_id=account_account.id AND internal_group='income'
group by internal_group,date group by internal_group,date
''') % (states_arg)) ''') % (states_arg))
@ -246,9 +246,9 @@ class DashBoard(models.Model):
self._cr.execute(('''select sum(debit)-sum(credit) as expense ,cast(to_char(account_move_line.date, 'DD')as int) self._cr.execute(('''select sum(debit)-sum(credit) as expense ,cast(to_char(account_move_line.date, 'DD')as int)
as date ,internal_group from account_move_line ,account_account where as date ,internal_group from account_move_line ,account_account where
Extract(month FROM account_move_line.date) = ''' + str(one_month_ago) + ''' Extract(month FROM account_move_line.date) in ''' + str(tuple(company_id)) + '''
AND %s AND %s
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
AND account_move_line.account_id=account_account.id AND internal_group='expense' AND account_move_line.account_id=account_account.id AND internal_group='expense'
group by internal_group,date group by internal_group,date
''') % (states_arg)) ''') % (states_arg))
@ -336,7 +336,7 @@ class DashBoard(models.Model):
where Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW())) where Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move_line.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move_line.date) = Extract(YEAR FROM DATE(NOW()))
AND %s AND %s
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
AND account_move_line.account_id=account_account.id AND internal_group='income' AND account_move_line.account_id=account_account.id AND internal_group='income'
group by internal_group,date group by internal_group,date
''') % (states_arg)) ''') % (states_arg))
@ -348,7 +348,7 @@ class DashBoard(models.Model):
Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW())) Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move_line.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move_line.date) = Extract(YEAR FROM DATE(NOW()))
AND %s AND %s
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
AND account_move_line.account_id=account_account.id AND internal_group='expense' AND account_move_line.account_id=account_account.id AND internal_group='expense'
group by internal_group,date group by internal_group,date
''') % (states_arg)) ''') % (states_arg))
@ -430,7 +430,7 @@ class DashBoard(models.Model):
from account_move,res_partner where from account_move,res_partner where
account_move.partner_id=res_partner.id AND account_move.type = 'in_invoice' AND account_move.partner_id=res_partner.id AND account_move.type = 'in_invoice' AND
invoice_payment_state = 'not_paid' AND invoice_payment_state = 'not_paid' AND
account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + ''' AND
%s %s
AND account_move.commercial_partner_id=res_partner.commercial_partner_id AND account_move.commercial_partner_id=res_partner.commercial_partner_id
group by parent,partner,res group by parent,partner,res
@ -480,7 +480,7 @@ class DashBoard(models.Model):
account_move.partner_id=res_partner.id AND account_move.type = 'out_invoice' AND account_move.partner_id=res_partner.id AND account_move.type = 'out_invoice' AND
invoice_payment_state = 'not_paid' AND invoice_payment_state = 'not_paid' AND
%s %s
AND account_move.company_id = ''' + str(company_id) + ''' AND AND account_move.company_id in ''' + str(tuple(company_id)) + ''' AND
account_move_line.account_internal_type = 'payable' AND account_move_line.account_internal_type = 'payable' AND
account_move.commercial_partner_id=res_partner.commercial_partner_id account_move.commercial_partner_id=res_partner.commercial_partner_id
group by parent,partner,res group by parent,partner,res
@ -528,7 +528,7 @@ class DashBoard(models.Model):
AND Extract(month FROM account_move.invoice_date_due) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.invoice_date_due) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.invoice_date_due) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.invoice_date_due) = Extract(YEAR FROM DATE(NOW()))
AND account_move.partner_id = res_partner.commercial_partner_id AND account_move.partner_id = res_partner.commercial_partner_id
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
group by parent, due_partner, month group by parent, due_partner, month
order by amount desc ''') % (states_arg)) order by amount desc ''') % (states_arg))
else: else:
@ -539,7 +539,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(YEAR FROM account_move.invoice_date_due) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.invoice_date_due) = Extract(YEAR FROM DATE(NOW()))
AND account_move.partner_id = res_partner.commercial_partner_id AND account_move.partner_id = res_partner.commercial_partner_id
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
group by parent, due_partner group by parent, due_partner
order by amount desc ''') % (states_arg)) order by amount desc ''') % (states_arg))
@ -586,7 +586,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move.invoice_date_due) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.invoice_date_due) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.invoice_date_due) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.invoice_date_due) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
AND account_move.partner_id = res_partner.commercial_partner_id AND account_move.partner_id = res_partner.commercial_partner_id
group by parent, bill_partner, month group by parent, bill_partner, month
order by amount desc ''') % (states_arg)) order by amount desc ''') % (states_arg))
@ -598,7 +598,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(YEAR FROM account_move.invoice_date_due) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.invoice_date_due) = Extract(YEAR FROM DATE(NOW()))
AND account_move.partner_id = res_partner.commercial_partner_id AND account_move.partner_id = res_partner.commercial_partner_id
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
group by parent, bill_partner group by parent, bill_partner
order by amount desc ''') % (states_arg)) order by amount desc ''') % (states_arg))
@ -639,7 +639,7 @@ class DashBoard(models.Model):
self._cr.execute((''' select res_partner.name as customers, account_move.commercial_partner_id as parent, self._cr.execute((''' select res_partner.name as customers, account_move.commercial_partner_id as parent,
sum(account_move.amount_total) as amount from account_move, res_partner sum(account_move.amount_total) as amount from account_move, res_partner
where account_move.commercial_partner_id = res_partner.id where account_move.commercial_partner_id = res_partner.id
AND account_move.company_id = %s AND account_move.company_id in %s
AND account_move.type = 'out_invoice' AND account_move.type = 'out_invoice'
AND %s AND %s
AND Extract(month FROM account_move.invoice_date_due) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.invoice_date_due) = Extract(month FROM DATE(NOW()))
@ -647,14 +647,14 @@ class DashBoard(models.Model):
group by parent, customers group by parent, customers
order by amount desc order by amount desc
limit 10 limit 10
''') % (company_id, states_arg)) ''') % (tuple(company_id), states_arg))
record_invoice = self._cr.dictfetchall() record_invoice = self._cr.dictfetchall()
self._cr.execute((''' select res_partner.name as customers, account_move.commercial_partner_id as parent, self._cr.execute((''' select res_partner.name as customers, account_move.commercial_partner_id as parent,
sum(account_move.amount_total) as amount from account_move, res_partner sum(account_move.amount_total) as amount from account_move, res_partner
where account_move.commercial_partner_id = res_partner.id where account_move.commercial_partner_id = res_partner.id
AND account_move.company_id = %s AND account_move.company_id in %s
AND account_move.type = 'out_refund' AND account_move.type = 'out_refund'
AND %s AND %s
AND Extract(month FROM account_move.invoice_date_due) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.invoice_date_due) = Extract(month FROM DATE(NOW()))
@ -662,7 +662,7 @@ class DashBoard(models.Model):
group by parent, customers group by parent, customers
order by amount desc order by amount desc
limit 10 limit 10
''') % (company_id, states_arg)) ''') % (tuple(company_id), states_arg))
record_refund = self._cr.dictfetchall() record_refund = self._cr.dictfetchall()
else: else:
@ -670,7 +670,7 @@ class DashBoard(models.Model):
self._cr.execute((''' select res_partner.name as customers, account_move.commercial_partner_id as parent, self._cr.execute((''' select res_partner.name as customers, account_move.commercial_partner_id as parent,
sum(account_move.amount_total) as amount from account_move, res_partner sum(account_move.amount_total) as amount from account_move, res_partner
where account_move.commercial_partner_id = res_partner.id where account_move.commercial_partner_id = res_partner.id
AND account_move.company_id = %s AND account_move.company_id in %s
AND account_move.type = 'out_invoice' AND account_move.type = 'out_invoice'
AND %s AND %s
AND Extract(month FROM account_move.invoice_date_due) = ''' + str( AND Extract(month FROM account_move.invoice_date_due) = ''' + str(
@ -678,14 +678,14 @@ class DashBoard(models.Model):
group by parent, customers group by parent, customers
order by amount desc order by amount desc
limit 10 limit 10
''') % (company_id, states_arg)) ''') % (tuple(company_id), states_arg))
record_invoice = self._cr.dictfetchall() record_invoice = self._cr.dictfetchall()
self._cr.execute((''' select res_partner.name as customers, account_move.commercial_partner_id as parent, self._cr.execute((''' select res_partner.name as customers, account_move.commercial_partner_id as parent,
sum(account_move.amount_total) as amount from account_move, res_partner sum(account_move.amount_total) as amount from account_move, res_partner
where account_move.commercial_partner_id = res_partner.id where account_move.commercial_partner_id = res_partner.id
AND account_move.company_id = %s AND account_move.company_id in %s
AND account_move.type = 'out_refund' AND account_move.type = 'out_refund'
AND %s AND %s
AND Extract(month FROM account_move.invoice_date_due) = ''' + str( AND Extract(month FROM account_move.invoice_date_due) = ''' + str(
@ -693,7 +693,7 @@ class DashBoard(models.Model):
group by parent, customers group by parent, customers
order by amount desc order by amount desc
limit 10 limit 10
''') % (company_id, states_arg)) ''') % (tuple(company_id), states_arg))
record_refund = self._cr.dictfetchall() record_refund = self._cr.dictfetchall()
@ -726,22 +726,22 @@ class DashBoard(models.Model):
states_arg = """ state = 'posted'""" states_arg = """ state = 'posted'"""
self._cr.execute(('''select sum(amount_total) as customer_invoice from account_move where type ='out_invoice' self._cr.execute(('''select sum(amount_total) as customer_invoice from account_move where type ='out_invoice'
AND %s AND account_move.company_id = ''' + str(company_id) + ''' AND %s AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_customer = self._cr.dictfetchall() record_customer = self._cr.dictfetchall()
self._cr.execute(('''select sum(amount_total) as supplier_invoice from account_move where type ='in_invoice' self._cr.execute(('''select sum(amount_total) as supplier_invoice from account_move where type ='in_invoice'
AND %s AND account_move.company_id = ''' + str(company_id) + ''' AND %s AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_supplier = self._cr.dictfetchall() record_supplier = self._cr.dictfetchall()
self._cr.execute(('''select sum(amount_total) as credit_note from account_move where type ='out_refund' self._cr.execute(('''select sum(amount_total) as credit_note from account_move where type ='out_refund'
AND %s AND account_move.company_id = ''' + str(company_id) + ''' AND %s AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_credit_note = self._cr.dictfetchall() result_credit_note = self._cr.dictfetchall()
self._cr.execute(('''select sum(amount_total) as refund from account_move where type ='in_refund' self._cr.execute(('''select sum(amount_total) as refund from account_move where type ='in_refund'
AND %s AND account_move.company_id = ''' + str(company_id) + ''' AND %s AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_refund = self._cr.dictfetchall() result_refund = self._cr.dictfetchall()
@ -766,28 +766,28 @@ class DashBoard(models.Model):
self._cr.execute(('''select sum(amount_total_signed) as customer_invoice from account_move where type ='out_invoice' self._cr.execute(('''select sum(amount_total_signed) as customer_invoice from account_move where type ='out_invoice'
AND %s AND %s
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_customer_current_year = self._cr.dictfetchall() record_customer_current_year = self._cr.dictfetchall()
self._cr.execute(('''select sum(-(amount_total_signed)) as supplier_invoice from account_move where type ='in_invoice' self._cr.execute(('''select sum(-(amount_total_signed)) as supplier_invoice from account_move where type ='in_invoice'
AND %s AND %s
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_supplier_current_year = self._cr.dictfetchall() record_supplier_current_year = self._cr.dictfetchall()
self._cr.execute(('''select sum(-(amount_total_signed)) - sum(-(amount_residual_signed)) as credit_note from account_move where type ='out_refund' self._cr.execute(('''select sum(-(amount_total_signed)) - sum(-(amount_residual_signed)) as credit_note from account_move where type ='out_refund'
AND %s AND %s
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_credit_note_current_year = self._cr.dictfetchall() result_credit_note_current_year = self._cr.dictfetchall()
self._cr.execute(('''select sum(-(amount_total_signed)) as refund from account_move where type ='in_refund' self._cr.execute(('''select sum(-(amount_total_signed)) as refund from account_move where type ='in_refund'
AND %s AND %s
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_refund_current_year = self._cr.dictfetchall() result_refund_current_year = self._cr.dictfetchall()
@ -795,7 +795,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND invoice_payment_state = 'paid' AND invoice_payment_state = 'paid'
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_paid_customer_invoice_current_year = self._cr.dictfetchall() record_paid_customer_invoice_current_year = self._cr.dictfetchall()
@ -803,7 +803,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND invoice_payment_state = 'paid' AND invoice_payment_state = 'paid'
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_paid_supplier_invoice_current_year = self._cr.dictfetchall() result_paid_supplier_invoice_current_year = self._cr.dictfetchall()
@ -811,7 +811,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND invoice_payment_state = 'paid' AND invoice_payment_state = 'paid'
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_paid_customer_credit_current_year = self._cr.dictfetchall() record_paid_customer_credit_current_year = self._cr.dictfetchall()
@ -819,7 +819,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND invoice_payment_state = 'paid' AND invoice_payment_state = 'paid'
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_paid_supplier_refund_current_year = self._cr.dictfetchall() result_paid_supplier_refund_current_year = self._cr.dictfetchall()
@ -856,7 +856,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_customer_current_month = self._cr.dictfetchall() record_customer_current_month = self._cr.dictfetchall()
@ -864,7 +864,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_supplier_current_month = self._cr.dictfetchall() record_supplier_current_month = self._cr.dictfetchall()
@ -872,7 +872,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_credit_note_current_month = self._cr.dictfetchall() result_credit_note_current_month = self._cr.dictfetchall()
@ -880,7 +880,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_refund_current_month = self._cr.dictfetchall() result_refund_current_month = self._cr.dictfetchall()
@ -888,7 +888,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_paid_customer_invoice_current_month = self._cr.dictfetchall() record_paid_customer_invoice_current_month = self._cr.dictfetchall()
@ -896,7 +896,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_paid_supplier_invoice_current_month = self._cr.dictfetchall() result_paid_supplier_invoice_current_month = self._cr.dictfetchall()
@ -905,7 +905,7 @@ class DashBoard(models.Model):
AND invoice_payment_state = 'paid' AND invoice_payment_state = 'paid'
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record_paid_customer_credit_current_month = self._cr.dictfetchall() record_paid_customer_credit_current_month = self._cr.dictfetchall()
@ -914,7 +914,7 @@ class DashBoard(models.Model):
AND invoice_payment_state = 'paid' AND invoice_payment_state = 'paid'
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
result_paid_supplier_refund_current_month = self._cr.dictfetchall() result_paid_supplier_refund_current_month = self._cr.dictfetchall()
@ -950,7 +950,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move.date) = Extract(month FROM DATE(NOW()))
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move.company_id = ''' + str(company_id) + ''' AND account_move.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record = self._cr.dictfetchall() record = self._cr.dictfetchall()
return record return record
@ -991,7 +991,7 @@ class DashBoard(models.Model):
self._cr.execute(''' select sum(amount_total) from account_move where type = 'out_invoice' self._cr.execute(''' select sum(amount_total) from account_move where type = 'out_invoice'
AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND AND Extract(YEAR FROM account_move.date) = Extract(YEAR FROM DATE(NOW())) AND
account_move.state = 'posted' AND account_move.state = 'posted' AND
account_move.company_id = ''' + str(company_id) + ''' account_move.company_id in ''' + str(tuple(company_id)) + '''
''') ''')
record = self._cr.dictfetchall() record = self._cr.dictfetchall()
return record return record
@ -1026,7 +1026,7 @@ class DashBoard(models.Model):
L.account_id=a.id AND l.full_reconcile_id IS NULL AND L.account_id=a.id AND l.full_reconcile_id IS NULL AND
l.balance != 0 AND a.reconcile IS F l.balance != 0 AND a.reconcile IS F
AND l.''' + states_arg + ''' AND l.''' + states_arg + '''
AND l.company_id = ''' + str(company_id) + ''' AND l.company_id in ''' + str(tuple(company_id)) + '''
''' '''
self._cr.execute((''' select count(*) FROM account_move_line l,account_account a self._cr.execute((''' select count(*) FROM account_move_line l,account_account a
@ -1035,7 +1035,7 @@ class DashBoard(models.Model):
L.account_id=a.id AND l.full_reconcile_id IS NULL AND L.account_id=a.id AND l.full_reconcile_id IS NULL AND
l.balance != 0 AND a.reconcile IS TRUE l.balance != 0 AND a.reconcile IS TRUE
AND l.%s AND l.%s
AND l.company_id = ''' + str(company_id) + ''' AND l.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record = self._cr.dictfetchall() record = self._cr.dictfetchall()
return record return record
@ -1072,7 +1072,7 @@ class DashBoard(models.Model):
L.account_id=a.id AND l.full_reconcile_id IS NULL AND L.account_id=a.id AND l.full_reconcile_id IS NULL AND
l.balance != 0 AND a.reconcile IS TRUE l.balance != 0 AND a.reconcile IS TRUE
AND l.%s AND l.%s
AND l.company_id = ''' + str(company_id) + ''' AND l.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record = self._cr.dictfetchall() record = self._cr.dictfetchall()
return record return record
@ -1121,7 +1121,7 @@ class DashBoard(models.Model):
AND %s AND %s
AND Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW()))
AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW())) AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW()))
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record = self._cr.dictfetchall() record = self._cr.dictfetchall()
@ -1146,7 +1146,7 @@ class DashBoard(models.Model):
account_account.internal_group = 'expense' ) account_account.internal_group = 'expense' )
AND Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW()))
AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW())) AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW()))
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
group by internal_group group by internal_group
''') % (states_arg)) ''') % (states_arg))
income = self._cr.dictfetchall() income = self._cr.dictfetchall()
@ -1165,14 +1165,19 @@ class DashBoard(models.Model):
return profit return profit
def get_current_company_value(self): def get_current_company_value(self):
current_company = request.httprequest.cookies.get('cids')
if current_company: cookies_cids = [int(r) for r in request.httprequest.cookies.get('cids').split(",")] \
company_id = int(current_company[0]) if request.httprequest.cookies.get('cids') \
else: else [request.env.user.company_id.id]
company_id = self.env.company.id
for company_id in cookies_cids:
if company_id not in self.env.user.company_ids.ids: if company_id not in self.env.user.company_ids.ids:
company_id = self.env.company.id cookies_cids.remove(company_id)
return company_id if not cookies_cids:
cookies_cids = [self.env.company.id]
if len(cookies_cids) == 1:
cookies_cids.append(0)
return cookies_cids
@api.model @api.model
def profit_income_this_year(self, *post): def profit_income_this_year(self, *post):
@ -1190,7 +1195,7 @@ class DashBoard(models.Model):
(account_account.internal_group = 'income' or (account_account.internal_group = 'income' or
account_account.internal_group = 'expense' ) account_account.internal_group = 'expense' )
AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW())) AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW()))
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
group by internal_group group by internal_group
''') % (states_arg)) ''') % (states_arg))
income = self._cr.dictfetchall() income = self._cr.dictfetchall()
@ -1246,7 +1251,7 @@ class DashBoard(models.Model):
account_move_line.account_id = account_account.id AND account_account.internal_group = 'income' account_move_line.account_id = account_account.id AND account_account.internal_group = 'income'
AND %s AND %s
AND Extract(YEAR FROM account_move_line.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move_line.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
record = self._cr.dictfetchall() record = self._cr.dictfetchall()
return record return record
@ -1268,7 +1273,11 @@ class DashBoard(models.Model):
@api.model @api.model
def get_currency(self): def get_currency(self):
current_company = self.env['res.company'].browse(self.get_current_company_value()) company_ids = self.get_current_company_value()
if 0 in company_ids:
company_ids.remove(0)
current_company_id = company_ids[0]
current_company = self.env['res.company'].browse(current_company_id)
default = current_company.currency_id or self.env.ref('base.main_company').currency_id default = current_company.currency_id or self.env.ref('base.main_company').currency_id
lang = self.env.user.lang lang = self.env.user.lang
if not lang: if not lang:
@ -1309,7 +1318,7 @@ class DashBoard(models.Model):
%s %s
AND Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW())) AND Extract(month FROM account_move_line.date) = Extract(month FROM DATE(NOW()))
AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW())) AND Extract(year FROM account_move_line.date) = Extract(year FROM DATE(NOW()))
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
''') % (states_arg)) ''') % (states_arg))
@ -1334,7 +1343,7 @@ class DashBoard(models.Model):
account_move_line.account_id = account_account.id AND account_account.internal_group = 'expense' AND account_move_line.account_id = account_account.id AND account_account.internal_group = 'expense' AND
%s %s
AND Extract(YEAR FROM account_move_line.date) = Extract(YEAR FROM DATE(NOW())) AND Extract(YEAR FROM account_move_line.date) = Extract(YEAR FROM DATE(NOW()))
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
@ -1358,7 +1367,7 @@ class DashBoard(models.Model):
account_account_type on account_account_type.id = account_account.user_type_id account_account_type on account_account_type.id = account_account.user_type_id
where account_account_type.name = 'Bank and Cash' where account_account_type.name = 'Bank and Cash'
AND %s AND %s
AND account_move_line.company_id = ''' + str(company_id) + ''' AND account_move_line.company_id in ''' + str(tuple(company_id)) + '''
group by account_account.name group by account_account.name
''') % (states_arg)) ''') % (states_arg))

501
base_accounting_kit/static/description/index.html

@ -15,6 +15,12 @@
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Multi Company In Dashboard
</li>
<li style="display: flex;align-items: center;padding: 8px 0;font-size: 19px; list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Comma separator added in Dashboard Comma separator added in Dashboard
</li> </li>
@ -30,7 +36,8 @@
</ul> </ul>
<div style=" margin: 0 0 0px;padding: 20px 0 10;font-size: 23px;line-height: 35px;font-weight: 400;color: #000;border-top: 1px solid rgba(255,255,255,0.1);border-bottom: 1px solid rgba(255,255,255,0.11);text-align: left;"> <div style=" margin: 0 0 0px;padding: 20px 0 10;font-size: 23px;line-height: 35px;font-weight: 400;color: #000;border-top: 1px solid rgba(255,255,255,0.1);border-bottom: 1px solid rgba(255,255,255,0.11);text-align: left;">
<h1 style="font-size: 39px;font-weight: 600;margin: 0px !important;">Odoo 13 Accounting</h1> <h1 style="font-size: 39px;font-weight: 600;margin: 0px !important;">Odoo 13 Accounting</h1>
<h3 style="font-size: 21px;margin-top: 8px;position: relative;">Dashboard, Asset Management, Accounting Reports, PDC Management, <h3 style="font-size: 21px;margin-top: 8px;position: relative;">Dashboard, Asset Management, Accounting
Reports, PDC Management,
Account Lock dates, Customer Credit Limit and Follow Ups, Day book, Account Lock dates, Customer Credit Limit and Follow Ups, Day book,
Bank book and Cash book reports in Odoo 13 community edition.</h3> Bank book and Cash book reports in Odoo 13 community edition.</h3>
</div> </div>
@ -67,12 +74,13 @@
</ul> </ul>
</div> </div>
<div class="col-md-5 col-sm-12 col-xs-12"><img src="images/accounting_kit_window.gif" class="img-responsive" alt=""></div> <div class="col-md-5 col-sm-12 col-xs-12"><img src="images/accounting_kit_window.gif" class="img-responsive" alt="">
</div>
</div> </div>
<div> <div>
<section class="oe_container" style="padding: 1rem 0rem 1rem; background-color: #ffffff !important;"> <section class="oe_container" style="padding: 1rem 0rem 1rem; background-color: #ffffff !important;">
<div class="row py-4 px-3"> <div class="row py-4 px-3">
<div class="w-100" style="padding-top:30px;padding-bottom:45px;border-radius: 10px;"> <div class="w-100" style="padding-top:30px;padding-bottom:45px;border-radius: 10px;">
<ul role="tablist" class="nav nav-pills justify-content-center" data-tabs="tabs" id="pills-tab" <ul role="tablist" class="nav nav-pills justify-content-center" data-tabs="tabs" id="pills-tab"
@ -111,7 +119,6 @@
<div class="tab-pane"> <div class="tab-pane">
<h2 style="font-weight: 600;text-align: center;width: 100%;">Screenshots</h2> <h2 style="font-weight: 600;text-align: center;width: 100%;">Screenshots</h2>
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> <hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;">
<div> <div>
@ -119,401 +126,533 @@
<div id="demo" class="row carousel slide mb32" data-ride="carousel"> <div id="demo" class="row carousel slide mb32" data-ride="carousel">
<div class="carousel-inner"> <div class="carousel-inner">
<div class="carousel-item active" style="min-height: 0px;"> <div class="carousel-item active" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
style="float: left;">
<h3 class="alert" <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Dashboard with Necessary Details. Dashboard with Necessary Details.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit_dashboard-1.png"> src="images/base_accounting_kit_dashboard-1.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
style="float: left;">
<h3 class="alert" <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Aged Receivable, Payable and Top Customer Details in Dashboard. Aged Receivable, Payable and Top Customer Details in Dashboard.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit_dashboard-2.png"> src="images/base_accounting_kit_dashboard-2.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
style="float: left;">
<h3 class="alert" <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Create Assets from Accounting > Accounting > Assets > Create. Create Assets from Accounting > Accounting > Assets > Create.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-3.png"> src="images/base_accounting_kit-3.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
Create Asset categories from Accounting > Configuration > Asset Types > Create. style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Create Asset categories from Accounting > Configuration > Asset
Types > Create.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-4.png"> src="images/base_accounting_kit-4.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Create Asset from vendor bill. Create Asset from vendor bill.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-5.png"> src="images/base_accounting_kit-5.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Manage post dated checks. Manage post dated checks.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-21.png"> src="images/base_accounting_kit-21.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Accounting lock dates for community edition. Accounting lock dates for community edition.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-18.png"> src="images/base_accounting_kit-18.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
Create recurring templates from Accounting > Configuration > Recurring Templates. style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Create recurring templates from Accounting > Configuration >
Recurring Templates.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-25.png"> src="images/base_accounting_kit-25.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Create recurring entries. Create recurring entries.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-24.png"> src="images/base_accounting_kit-24.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
Manage Customer Follow-ups from Accounting > Customers > Follow-up Reports style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Manage Customer Follow-ups from Accounting > Customers >
Follow-up Reports
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-11.png"> src="images/base_accounting_kit-11.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Generate accounting PDF reports from Accounting > Reporting Generate accounting PDF reports from Accounting > Reporting
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-43.png"> src="images/base_accounting_kit-43.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Day book reporting. Day book reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-13.png"> src="images/base_accounting_kit-13.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Day book report. Day book report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-12.png"> src="images/base_accounting_kit-12.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Bank book reporting. Bank book reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-8.png"> src="images/base_accounting_kit-8.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Bank book report. Bank book report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-41.png"> src="images/base_accounting_kit-41.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Cash book reporting. Cash book reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-9.png"> src="images/base_accounting_kit-9.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Cash book report. Cash book report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-42.png"> src="images/base_accounting_kit-42.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Financial reports.</br> Financial reports.</br>
Profit and Loss reporting. Profit and Loss reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-23.png"> src="images/base_accounting_kit-23.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Profit and Loss report. Profit and Loss report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-22.png"> src="images/base_accounting_kit-22.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Balance sheet reporting. Balance sheet reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-7.png"> src="images/base_accounting_kit-7.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Balance sheet report. Balance sheet report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-6.png"> src="images/base_accounting_kit-6.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Trial balance reporting. Trial balance reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-29.png"> src="images/base_accounting_kit-29.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Trial balance report. Trial balance report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-28.png"> src="images/base_accounting_kit-28.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Journal Audit reporting. Journal Audit reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-17.png"> src="images/base_accounting_kit-17.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Journal Audit report. Journal Audit report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-16.png"> src="images/base_accounting_kit-16.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
General Ledger reporting. General Ledger reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-16.png"> src="images/base_accounting_kit-16.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
General Ledger report. General Ledger report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-14.png"> src="images/base_accounting_kit-14.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Partner Ledger reporting. Partner Ledger reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-20.png"> src="images/base_accounting_kit-20.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Partner Ledger report. Partner Ledger report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-19.png"> src="images/base_accounting_kit-19.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Aged Partner Balance reporting. Aged Partner Balance reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-2.png"> src="images/base_accounting_kit-2.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Aged Partner Balance report. Aged Partner Balance report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-1.png"> src="images/base_accounting_kit-1.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Tax reporting. Tax reporting.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-27.png"> src="images/base_accounting_kit-27.png">
</div> </div>
</div> </div>
</div> </div>
<div class="carousel-item" style="min-height: 0px;"> <div class="carousel-item" style="min-height: 0px;">
<div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16" style="float: left;"> <div class="col-xs-12 col-sm-12 col-md-12 mb16 mt16"
<h3 class="alert" style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;"> style="float: left;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <h3 class="alert"
style="font-weight:400;color: #091E42;background: #fff;text-align: left;border-radius: 0; font-size: 18px;">
<i class="fa fa-check-circle-o"
style="width:40px; color:#07B700;"></i>
Tax report. Tax report.
</h3> </h3>
<div style=""> <div style="">
<img class="img img-responsive center-block" style="border-top-left-radius: 10px;border-top-right-radius: 10px;" <img class="img img-responsive center-block"
style="border-top-left-radius: 10px;border-top-right-radius: 10px;"
src="images/base_accounting_kit-26.png"> src="images/base_accounting_kit-26.png">
</div> </div>
</div> </div>
@ -521,8 +660,6 @@
</div> </div>
<a class="carousel-control-prev" href="#demo" data-slide="prev" <a class="carousel-control-prev" href="#demo" data-slide="prev"
style="left:-25px;width: 35px;color: #000;"> <span style="left:-25px;width: 35px;color: #000;"> <span
class="carousel-control-prev-icon"><i class="fa fa-chevron-left" class="carousel-control-prev-icon"><i class="fa fa-chevron-left"
@ -546,63 +683,78 @@
<h2 style="font-weight: 600;text-align: center;width: 100%;">Odoo 13 Accounting</h2> <h2 style="font-weight: 600;text-align: center;width: 100%;">Odoo 13 Accounting</h2>
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> <hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;">
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Accounting Dashboard with all necessary details. Accounting Dashboard with all necessary details.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Asset management system for Odoo 13 community edition. Asset management system for Odoo 13 community edition.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
PDC management is now in. PDC management is now in.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Accounting lock dates for Odoo 13 community edition. Accounting lock dates for Odoo 13 community edition.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Customer credit limit. Customer credit limit.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Handle Recurring payments in Odoo. Handle Recurring payments in Odoo.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Manage Customer follow-ups. Manage Customer follow-ups.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Day book, Bank book and Cash book reports. Day book, Bank book and Cash book reports.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Financial reports. Financial reports.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Trial balance report. Trial balance report.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Journal audit report. Journal audit report.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
General ledger report. General ledger report.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Partner ledger report. Partner ledger report.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Aged partner balance. Aged partner balance.
</p> </p>
<p class="mb8" style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;"> <p class="mb8"
style="font-family: Roboto;color: #000;list-style-type: square;font-size: 19px;line-height: 50px; background-color: #3a34380d;padding-left: 20px;border-radius: 7px;list-style: none;">
<i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i> <i class="fa fa-check-circle-o" style="width:40px; color:#07B700;"></i>
Tax reports. Tax reports.
</p> </p>
@ -620,11 +772,18 @@
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> <hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;">
<h3 class="oe_slogan" <h3 class="oe_slogan"
style="text-align: center;font-size: 21px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;opacity: 1 !important;line-height: 31px;font-weight: 400;letter-spacing: .5px;margin-bottom: 20px;"> style="text-align: center;font-size: 21px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;opacity: 1 !important;line-height: 31px;font-weight: 400;letter-spacing: .5px;margin-bottom: 20px;">
Accounting in odoo is sufficient for any organization to meet all their needs related to accounting. As you know for any organization, accounting is one of the most important processes in order to run the company without any financial losses. Odoo accounting is connected with all the other apps such as sales, purchase, inventory and more. Accounting in odoo is sufficient for any organization to meet all their needs related to
accounting. As you know for any organization, accounting is one of the most important
processes in order to run the company without any financial losses. Odoo accounting is
connected with all the other apps such as sales, purchase, inventory and more.
<br> <br>
<br> <br>
In community edition, we have only limited features available under Odoo accounting. Here comes the use of the module Odoo13 Full Accounting Kit by Cybrosys Technologies which is built under the V13 platform. This module will bring back the accounting features such as Asset management, Accounting Reports, PDC Management, Account Lock dates, Customer Credit Limit, and Follow-Ups, Daybook, Bankbook, and Cashbook reports. In community edition, we have only limited features available under Odoo accounting. Here
comes the use of the module Odoo13 Full Accounting Kit by Cybrosys Technologies which is
built under the V13 platform. This module will bring back the accounting features such as
Asset management, Accounting Reports, PDC Management, Account Lock dates, Customer Credit
Limit, and Follow-Ups, Daybook, Bankbook, and Cashbook reports.
</h3> </h3>
@ -641,7 +800,9 @@
<p>Odoo 13 Full Accounting Kit</p> <p>Odoo 13 Full Accounting Kit</p>
<div class="s_panel_video" data-video-id="peAp2Tx_XIs?rel=0" style="cursor:pointer;"> <div class="s_panel_video" data-video-id="peAp2Tx_XIs?rel=0" style="cursor:pointer;">
<img class="img-fluid s_tooltip_tabs_tooltip_image s_figure_link pb0" src="images/Accounting kit -2.png" alt="Cybrosys Cover Video" style="max-width:100%;"> <img class="img-fluid s_tooltip_tabs_tooltip_image s_figure_link pb0"
src="images/Accounting kit -2.png" alt="Cybrosys Cover Video"
style="max-width:100%;">
</div> </div>
</center> </center>
</div> </div>
@ -658,9 +819,9 @@
</div> </div>
</div> </div>
</div> </div>
</section> </section>
<section class="oe_container" style="padding: 2rem 3rem 1rem;"> <section class="oe_container" style="padding: 2rem 3rem 1rem;">
<h2 style="font-weight: 600;text-align: center;margin-bottom: 25px;width: 100%;">Suggested Products</h2> <h2 style="font-weight: 600;text-align: center;margin-bottom: 25px;width: 100%;">Suggested Products</h2>
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> <hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;">
<div id="demo1" class="row carousel slide" data-ride="carousel"> <div id="demo1" class="row carousel slide" data-ride="carousel">
@ -723,13 +884,14 @@
style="right:-25px;width: 35px;color: #000;"> style="right:-25px;width: 35px;color: #000;">
<span class="carousel-control-next-icon"><i class="fa fa-chevron-right" style="font-size:24px"></i></span> <span class="carousel-control-next-icon"><i class="fa fa-chevron-right" style="font-size:24px"></i></span>
</a></div> </a></div>
</section> </section>
<section class="row" style="padding: 2rem 3rem 1rem;margin:0px"> <section class="row" style="padding: 2rem 3rem 1rem;margin:0px">
<h2 style="font-weight: 600;margin-bottom: 20px;text-align: center;width: 100%;">Our Service</h2> <h2 style="font-weight: 600;margin-bottom: 20px;text-align: center;width: 100%;">Our Service</h2>
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> <hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;">
<div class="row justify-content-between" style=" display: flex; justify-content: center; flex-wrap: wrap;width: 100%; "> <div class="row justify-content-between"
style=" display: flex; justify-content: center; flex-wrap: wrap;width: 100%; ">
<!-- <div style="display:flex;padding-top: 20px;justify-content: space-between;"> --> <!-- <div style="display:flex;padding-top: 20px;justify-content: space-between;"> -->
<div class="col-md-2 col-sm-6 col-xs-12"> <div class="col-md-2 col-sm-6 col-xs-12">
<div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"><a <div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"><a
@ -943,10 +1105,10 @@
</div> </div>
</div> </div>
</div> </div>
</section> </section>
<section class="oe_container" style="padding: 0% 0% 6% 0%;"> <section class="oe_container" style="padding: 0% 0% 6% 0%;">
<center> <center>
<div class="col-md-12" style="margin: auto !important; <div class="col-md-12" style="margin: auto !important;
width: 70%; width: 70%;
@ -954,7 +1116,8 @@
<h2 style="font-weight: 600;text-align: center;width: 100%;">Need Any Help?</h2> <h2 style="font-weight: 600;text-align: center;width: 100%;">Need Any Help?</h2>
<hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;"> <hr style="margin-top: 0px;margin-bottom: 2%;border: 0;text-align: center;border-top: 3px solid #d21c22;width: 5%;">
<h4 style="font-size:16px;"> If you have anything to share with us based on your use of this module, please <h4 style="font-size:16px;"> If you have anything to share with us based on your use of this module,
please
let us know. We are ready to offer our support. </h4> let us know. We are ready to offer our support. </h4>
<div class="col-md-6" style="float:left; padding:20px;"> <div class="col-md-6" style="float:left; padding:20px;">
<h4><i class="fa fa-envelope"></i>Email us </h4> <h4><i class="fa fa-envelope"></i>Email us </h4>
@ -968,19 +1131,21 @@
</div> </div>
</center> </center>
</section> </section>
<section class="oe_container" style="padding: 0% 0% 6% 0%;"> <section class="oe_container" style="padding: 0% 0% 6% 0%;">
<div class="oe_slogan" style="margin-bottom: 0px;"> <div class="oe_slogan" style="margin-bottom: 0px;">
<div style=" display: flex; justify-content: center; flex-wrap: wrap; "> <div style=" display: flex; justify-content: center; flex-wrap: wrap; ">
</div> </div>
<br> <br>
<img src="https://www.cybrosys.com/images/logo.png" style="width: 190px; margin-bottom: 25px;margin-top: 30px;" <img src="https://www.cybrosys.com/images/logo.png"
style="width: 190px; margin-bottom: 25px;margin-top: 30px;"
class="center-block"> class="center-block">
<div style=" display: flex; justify-content: center; flex-wrap: wrap; "><a href="https://twitter.com/cybrosys" <div style=" display: flex; justify-content: center; flex-wrap: wrap; "><a
href="https://twitter.com/cybrosys"
target="_blank"><i target="_blank"><i
class="fa fa-2x fa-twitter" class="fa fa-2x fa-twitter"
style="color:white;background: #00a0d1;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a> style="color:white;background: #00a0d1;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a>
@ -998,6 +1163,6 @@
</td> </td>
</div> </div>
</div> </div>
</section> </section>
</div> </div>

Loading…
Cancel
Save