[MERGE] merge with trunk addons

bzr revid: mra@mra-laptop-20100629041840-da4fb2mexfyxxjxl
This commit is contained in:
Mustufa Rangwala 2010-06-29 09:48:40 +05:30
commit 2a2120d9e1
65 changed files with 303 additions and 763 deletions

View File

@ -113,8 +113,6 @@ module named account_vouchers
'report/account_invoice_report_view.xml', 'report/account_invoice_report_view.xml',
'report/account_entries_report_view.xml', 'report/account_entries_report_view.xml',
'report/account_report_view.xml', 'report/account_report_view.xml',
'report/account_analytic_report_view.xml',
'report/account_account_report_view.xml',
'report/account_analytic_entries_report_view.xml', 'report/account_analytic_entries_report_view.xml',
'board_account_view.xml', 'board_account_view.xml',
"wizard/account_pl_report_view.xml", "wizard/account_pl_report_view.xml",

View File

@ -177,7 +177,6 @@ class account_cash_statement(osv.osv):
('confirm', 'Confirm'), ('confirm', 'Confirm'),
('open','Open')], 'State', required=True, states={'confirm': [('readonly', True)]}, readonly="1"), ('open','Open')], 'State', required=True, states={'confirm': [('readonly', True)]}, readonly="1"),
'total_entry_encoding':fields.function(_get_sum_entry_encoding, method=True, store=True, string="Cash Transaction", help="Total cash transactions"), 'total_entry_encoding':fields.function(_get_sum_entry_encoding, method=True, store=True, string="Cash Transaction", help="Total cash transactions"),
'date':fields.datetime("Open On"),
'closing_date':fields.datetime("Closed On"), 'closing_date':fields.datetime("Closed On"),
'balance_end': fields.function(_end_balance, method=True, store=True, string='Balance', help="Closing balance based on transactions"), 'balance_end': fields.function(_end_balance, method=True, store=True, string='Balance', help="Closing balance based on transactions"),
'balance_end_cash': fields.function(_balance_end_cash, method=True, store=True, string='Balance', help="Closing balance based on cashBox"), 'balance_end_cash': fields.function(_balance_end_cash, method=True, store=True, string='Balance', help="Closing balance based on cashBox"),
@ -231,7 +230,16 @@ class account_cash_statement(osv.osv):
res = super(account_cash_statement, self).onchange_journal_id(cr, uid, statement_id, journal_id, context) res = super(account_cash_statement, self).onchange_journal_id(cr, uid, statement_id, journal_id, context)
return res return res
def _equal_balance(self, cr, uid, ids, statement, context={}):
if statement.balance_end != statement.balance_end_cash:
return False
else:
return True
def _user_allow(self, cr, uid, ids, statement, context={}):
return True
def button_open(self, cr, uid, ids, context=None): def button_open(self, cr, uid, ids, context=None):
""" Changes statement state to Running. """ Changes statement state to Running.
@ -241,7 +249,11 @@ class account_cash_statement(osv.osv):
statement_pool = self.pool.get('account.bank.statement') statement_pool = self.pool.get('account.bank.statement')
statement = statement_pool.browse(cr, uid, ids[0]) statement = statement_pool.browse(cr, uid, ids[0])
number = self.pool.get('ir.sequence').get(cr, uid, 'account.bank.statement')
if not self._user_allow(cr, uid, ids, statement, context={}):
raise osv.except_osv(_('Error !'), _('User %s have no rights to access %s journal !' % (statement.user_id.name, statement.journal_id.name)))
number = self.pool.get('ir.sequence').get(cr, uid, statement.journal_id.sequence_id.code)
if len(statement.starting_details_ids) > 0: if len(statement.starting_details_ids) > 0:
sid = [] sid = []
@ -291,7 +303,7 @@ class account_cash_statement(osv.osv):
if not st.state == 'open': if not st.state == 'open':
continue continue
if st.balance_end != st.balance_end_cash: if not self._equal_balance(cr, uid, ids, st, context):
raise osv.except_osv(_('Error !'), _('Cash balance is not matching with closing balance !')) raise osv.except_osv(_('Error !'), _('Cash balance is not matching with closing balance !'))
if not (abs((st.balance_end or 0.0) - st.balance_end_real) < 0.0001): if not (abs((st.balance_end or 0.0) - st.balance_end_real) < 0.0001):

View File

@ -508,7 +508,7 @@ class account_move_line(osv.osv):
_constraints = [ _constraints = [
(_check_no_view, 'You can not create move line on view account.', ['account_id']), (_check_no_view, 'You can not create move line on view account.', ['account_id']),
(_check_no_closed, 'You can not create move line on closed account.', ['account_id']), (_check_no_closed, 'You can not create move line on closed account.', ['account_id']),
(_check_company_id,'Company must be same for its related account and period.',['company_id'] ), (_check_company_id, 'Company must be same for its related account and period.', ['company_id']),
] ]
#TODO: ONCHANGE_ACCOUNT_ID: set account_tax_id #TODO: ONCHANGE_ACCOUNT_ID: set account_tax_id

View File

@ -82,8 +82,9 @@
<menuitem action="action_account_fiscalyear_form" id="menu_action_account_fiscalyear_form" parent="next_id_23"/> <menuitem action="action_account_fiscalyear_form" id="menu_action_account_fiscalyear_form" parent="next_id_23"/>
<!-- <!--
Period Period
--> -->
<record id="res_role_period" model="res.roles"> <record id="res_role_period" model="res.roles">
<field eval="&quot;&quot;&quot;Period&quot;&quot;&quot;" name="name"/> <field eval="&quot;&quot;&quot;Period&quot;&quot;&quot;" name="name"/>
</record> </record>
@ -469,15 +470,10 @@
<field name="name" select="1"/> <field name="name" select="1"/>
<field name="date" select="1"/> <field name="date" select="1"/>
<field name="journal_id" on_change="onchange_journal_id(journal_id)" select="1"/> <field name="journal_id" on_change="onchange_journal_id(journal_id)" select="1"/>
<!-- <field name="currency"/>-->
<field name="period_id"/> <field name="period_id"/>
<!-- <group colspan="2" col="3">-->
<!-- <button name="%(action_view_account_statement_from_invoice)d"-->
<!-- string="Import Invoice" type="action" attrs="{'invisible':[('state','=','confirm')]}" icon="gtk-open"/>-->
<!-- <button name="button_import_invoice" string="Import Invoice" attrs="{'invisible':[('state','=','confirm')]}" type="object" icon="gtk-apply"/>-->
<!-- </group>-->
<field name="balance_start"/> <field name="balance_start"/>
<field name="balance_end_real"/> <field name="balance_end_real"/>
</group>
<notebook colspan="4"> <notebook colspan="4">
<page string="Transaction"> <page string="Transaction">
<field colspan="4" name="line_ids" nolabel="1"> <field colspan="4" name="line_ids" nolabel="1">

View File

@ -14,31 +14,48 @@
<record id="account_type_asset" model="account.account.type"> <record id="account_type_asset" model="account.account.type">
<field name="name">Asset</field> <field name="name">Asset</field>
<field name="code">asset</field> <field name="code">asset</field>
<field name="report_type">asset</field>
<field name="close_method">balance</field> <field name="close_method">balance</field>
</record> </record>
<record id="account_type_receivable" model="account.account.type">
<field name="name">Receivable</field>
<field name="code">receivable</field>
<field name="report_type">asset</field>
<field name="close_method">unreconciled</field>
</record>
<record id="account_type_liability" model="account.account.type"> <record id="account_type_liability" model="account.account.type">
<field name="name">Liability</field> <field name="name">Liability</field>
<field name="code">liability</field> <field name="code">liability</field>
<field name="report_type">liability</field>
<field name="close_method">balance</field> <field name="close_method">balance</field>
</record> </record>
<record id="account_type_payable" model="account.account.type">
<field name="name">Payable</field>
<field name="code">payable</field>
<field name="report_type">liability</field>
<field name="close_method">unreconciled</field>
</record>
<record id="account_type_income" model="account.account.type">
<field name="name">Income</field>
<field name="code">income</field>
<field name="report_type">income</field>
<field name="close_method">none</field>
</record>
<record id="account_type_expense" model="account.account.type">
<field name="name">Expense</field>
<field name="code">expense</field>
<field name="report_type">expense</field>
<field name="close_method">none</field>
</record>
<record id="account_type_cash_equity" model="account.account.type"> <record id="account_type_cash_equity" model="account.account.type">
<field name="name">Equity</field> <field name="name">Equity</field>
<field name="code">equity</field> <field name="code">equity</field>
<field name="close_method">balance</field> <field name="close_method">balance</field>
</record> </record>
<record id="account_type_income" model="account.account.type">
<field name="name">Income</field>
<field name="code">income</field>
<field name="close_method">unreconciled</field>
</record>
<record id="account_type_expense" model="account.account.type">
<field name="name">Expense</field>
<field name="code">expense</field>
<field name="close_method">unreconciled</field>
</record>
<record id="account_type_cash_moves" model="account.account.type"> <record id="account_type_cash_moves" model="account.account.type">
<field name="name">Cash</field> <field name="name">Cash</field>
<field name="code">cash</field> <field name="code">cash</field>
<field name="report_type">asset</field>
<field name="close_method">balance</field> <field name="close_method">balance</field>
</record> </record>
@ -65,7 +82,7 @@ your own accounts.
<field eval="ref('minimal_0')" name="parent_id"/> <field eval="ref('minimal_0')" name="parent_id"/>
<field name="company_id" ref="base.main_company"/> <field name="company_id" ref="base.main_company"/>
<field eval="True" name="reconcile"/> <field eval="True" name="reconcile"/>
<field name="user_type" ref="account_type_income"/> <field name="user_type" ref="account_type_receivable"/>
<field name="note"> <field name="note">
This chart of account is used for automated testing purpose. It is installed This chart of account is used for automated testing purpose. It is installed
only if you selected demo data during your database creation. Modules can only if you selected demo data during your database creation. Modules can
@ -75,12 +92,12 @@ your own chart of account.
</record> </record>
<record id="a_pay" model="account.account"> <record id="a_pay" model="account.account">
<field name="name">Main Payable</field> <field name="name">Main Payable</field>
<field name="code">x 440000</field> <field name="code">x 44000</field>
<field name="type">payable</field> <field name="type">payable</field>
<field eval="ref('minimal_0')" name="parent_id"/> <field eval="ref('minimal_0')" name="parent_id"/>
<field name="company_id" ref="base.main_company"/> <field name="company_id" ref="base.main_company"/>
<field eval="True" name="reconcile"/> <field eval="True" name="reconcile"/>
<field name="user_type" ref="account_type_expense"/> <field name="user_type" ref="account_type_payable"/>
<field name="note"> <field name="note">
This chart of account is used for automated testing purpose. It is installed This chart of account is used for automated testing purpose. It is installed
only if you selected demo data during your database creation. Modules can only if you selected demo data during your database creation. Modules can
@ -90,7 +107,7 @@ your own chart of account.
</record> </record>
<record id="cash" model="account.account"> <record id="cash" model="account.account">
<field name="name">Petty Cash</field> <field name="name">Petty Cash</field>
<field name="code">x 570000</field> <field name="code">x 57000</field>
<field name="type">other</field> <field name="type">other</field>
<field eval="ref('minimal_0')" name="parent_id"/> <field eval="ref('minimal_0')" name="parent_id"/>
<field name="company_id" ref="base.main_company"/> <field name="company_id" ref="base.main_company"/>
@ -104,7 +121,7 @@ your own chart of account.
</record> </record>
<record id="a_expense" model="account.account"> <record id="a_expense" model="account.account">
<field name="name">Products Purchase</field> <field name="name">Products Purchase</field>
<field name="code">x 600000</field> <field name="code">x 60000</field>
<field name="type">other</field> <field name="type">other</field>
<field eval="ref('minimal_0')" name="parent_id"/> <field eval="ref('minimal_0')" name="parent_id"/>
<field name="company_id" ref="base.main_company"/> <field name="company_id" ref="base.main_company"/>
@ -118,11 +135,11 @@ your own chart of account.
</record> </record>
<record id="a_sale" model="account.account"> <record id="a_sale" model="account.account">
<field name="name">Products Sales</field> <field name="name">Products Sales</field>
<field name="code">x 701000</field> <field name="code">x 70000</field>
<field name="type">other</field> <field name="type">other</field>
<field eval="ref('minimal_0')" name="parent_id"/> <field eval="ref('minimal_0')" name="parent_id"/>
<field name="user_type" ref="account_type_income"/>
<field name="company_id" ref="base.main_company"/> <field name="company_id" ref="base.main_company"/>
<field name="user_type" ref="account_type_income"/>
<field name="note"> <field name="note">
This chart of account is used for automated testing purpose. It is installed This chart of account is used for automated testing purpose. It is installed
only if you selected demo data during your database creation. Modules can only if you selected demo data during your database creation. Modules can

View File

@ -1,94 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_account_account_report_tree" model="ir.ui.view">
<field name="name">account.account.report.tree</field>
<field name="model">account.account.report</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree string="Accounts Analysis">
<field name="name" invisible="1" string="Account"/>
<field name="code" invisible="1"/>
<field name="type" invisible="1"/>
<field name="company_id" invisible="1" group="base.multi_company"/>
<field name="currency_mode" invisible="1"/>
<field name="nbr" sum="#Accounts"/>
<field name="user_type" invisible="1"/>
<field name="parent_account_id" invisible="1"/>
<field name="quantity" sum="Quantity"/>
<field name="amount_total" sum="Total Amount"/>
<field name="credit" sum="Credit"/>
<field name="debit" sum="Debit"/>
<field name="balance" sum="Balance"/>
</tree>
</field>
</record>
<record id="view_account_account_report_graph" model="ir.ui.view">
<field name="name">account.account.report.graph</field>
<field name="model">account.account.report</field>
<field name="type">graph</field>
<field name="arch" type="xml">
<graph string="Accounts Analysis" type="bar">
<field name="name"/>
<field name="credit" operator="+"/>
<field name="debit" operator="+"/>
<field name="balance" operator="+"/>
</graph>
</field>
</record>
<record id="view_account_account_report_search" model="ir.ui.view">
<field name="name">account.account.report.search</field>
<field name="model">account.account.report</field>
<field name="type">search</field>
<field name="arch" type="xml">
<search string="Accounts Analysis">
<group>
<filter icon="terp-go-today"
string="At Date"
domain="[('currency_mode','=', 'current')]"/>
<filter icon="terp-stock_format-default"
string="Average Rate"
domain="[('currency_mode','=','average')]"/>
<separator orientation="vertical"/>
<field name="name" string="Account"/>
<field name="code"/>
</group>
<newline/>
<group expand="0" string="Group By...">
<filter string="Account" name="Account" icon="terp-folder-orange" context="{'group_by':'name'}"/>
<filter string="Code" icon="terp-stock_format-scientific" context="{'group_by':'code'}"/>
<filter string="Company" icon="terp-go-home" context="{'group_by':'company_id'}" groups="base.group_multi_company"/>
<separator orientation="vertical"/>
<filter string="Currencies Rate" icon="terp-dolar" context="{'group_by':'currency_mode'}"/>
<filter string="Internal Type" icon="terp-go-home" context="{'group_by':'type'}"/>
<filter string="Account Type" icon="terp-stock_symbol-selection" context="{'group_by':'user_type'}"/>
<filter string="Parent Account" icon="terp-folder-orange" context="{'group_by':'parent_account_id'}"/>
</group>
<newline/>
<group expand="0" string="Extended options..." groups="base.group_extended">
<field name="parent_account_id" />
<separator orientation="vertical"/>
<field name="type" />
<field name="user_type" widget="selection"/>
<field name="company_id" widget="selection" groups="base.group_multi_company"/>
</group>
</search>
</field>
</record>
<record id="action_account_account_report" model="ir.actions.act_window">
<field name="name">Accounts Analysis</field>
<field name="res_model">account.account.report</field>
<field name="view_type">form</field>
<field name="view_mode">tree,graph</field>
<field name="context">{"search_default_Account":1,"search_default_At Date":1,'group_by_no_leaf':1,'group_by':[]}</field>
<field name="search_view_id" ref="view_account_account_report_search"/>
</record>
<menuitem action="action_account_account_report" id="menu_action_account_account_report" parent="account.menu_finance_statistic_report_statement" sequence="6"/>
</data>
</openerp>

View File

@ -1,94 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import tools
from osv import fields,osv
class analytic_report(osv.osv):
_name = "analytic.report"
_description = "Analytic Accounts Statistics"
_auto = False
_columns = {
'date_start': fields.date('Date Start', readonly=True),
'date_end': fields.date('Date End', readonly=True),
'name' : fields.char('Analytic Account', size=128, readonly=True),
'partner_id' : fields.many2one('res.partner', 'Associated Partner', readonly=True),
'journal_id' : fields.many2one('account.analytic.journal', 'Analytic Journal', readonly=True),
'parent_id': fields.many2one('account.analytic.account', 'Parent Analytic Account', readonly=True),
'user_id' : fields.many2one('res.users', 'Account Manager', readonly=True),
'product_id' : fields.many2one('product.product', 'Product', readonly=True),
'total_quantity': fields.float('# Total Quantity', readonly=True),
'debit' : fields.float('Debit', readonly=True),
'credit' : fields.float('Credit', readonly=True),
'balance' : fields.float('Balance', readonly=True),
'year': fields.char('Year', size=4, readonly=True),
'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'),
('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'),
('10','October'), ('11','November'), ('12','December')], 'Month', readonly=True),
'day': fields.char('Day', size=128, readonly=True),
'nbr':fields.integer('# of Lines', readonly=True),
'company_id': fields.many2one('res.company', 'Company', readonly=True),
'type': fields.selection([('view','View'), ('normal','Normal')], 'Account Type'),
'state': fields.selection([('draft','Draft'),
('open','Open'),
('pending','Pending'),
('cancelled', 'Cancelled'),
('close','Close'),
('template', 'Template')],
'State', readonly=True),
}
_order = 'date_start desc'
def init(self, cr):
tools.drop_view_if_exists(cr, 'analytic_report')
cr.execute("""
create or replace view analytic_report as (
select
min(s.id) as id,
to_char(s.create_date, 'YYYY') as year,
to_char(s.create_date, 'MM') as month,
to_char(s.create_date, 'YYYY-MM-DD') as day,
l.journal_id,
l.product_id,
s.parent_id,
s.date_start,
s.date as date_end,
s.user_id,
s.company_id,
s.type,
s.name,
s.partner_id,
sum(s.quantity) as total_quantity,
s.debit,
s.credit,
s.balance,
count(*) as nbr,
s.state
from account_analytic_account s
left join account_analytic_line l on (s.id=l.account_id)
GROUP BY s.create_date,s.state,l.journal_id,s.name,
s.partner_id,s.date_start,s.date,s.user_id,
s.company_id,s.type,
s.debit,s.credit,s.balance,s.parent_id,l.product_id
)
""")
analytic_report()

View File

@ -1,128 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<openerp> <openerp>
<data> <data>
<record id="view_analytic_report_tree" model="ir.ui.view">
<field name="name">analytic.report.tree</field>
<field name="model">analytic.report</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree string="Analytic Accounts Analysis">
<field name="parent_id" invisible="1" string="Analytic Account"/>
<field name="product_id" invisible="1"/>
<field name="name" invisible="1"/>
<field name="partner_id" invisible="1"/>
<field name="journal_id" string="Analytic Journal" invisible="1"/>
<field name="user_id" invisible="1"/>
<field name="date_start" invisible="1"/>
<field name="date_end" invisible="1"/>
<field name="total_quantity" sum=" # Total Quantity"/>
<field name="nbr" sum ="# of Lines"/>
<field name="company_id" invisible="1" groups="base.group_multi_company"/>
<field name="type" invisible="1"/>
<field name="debit" sum ="Debit"/>
<field name="credit" sum ="Credit"/>
<field name="balance" sum ="Balance"/>
<field name="state" invisible="1"/>
<field name="day" invisible="1"/>
<field name="month" invisible="1"/>
<field name="year" invisible="1"/>
</tree>
</field>
</record>
<record id="view_analytic_report_search" model="ir.ui.view">
<field name="name">analytic.report.search</field>
<field name="model">analytic.report</field>
<field name="type">search</field>
<field name="arch" type="xml">
<search string="Analytic Accounts Analysis">
<group>
<filter icon="terp-go-year" string=" 365 Days "
domain="[('day','&lt;=', time.strftime('%%Y-%%m-%%d')),('day','&gt;',(datetime.date.today()-datetime.timedelta(days=365)).strftime('%%Y-%%m-%%d'))]"
help="Analytic Accounts of last 365 days"/>
<filter icon="terp-go-month" string=" 30 Days "
name="This Month"
domain="[('day','&lt;=', time.strftime('%%Y-%%m-%%d')), ('day','&gt;',(datetime.date.today()-datetime.timedelta(days=30)).strftime('%%Y-%%m-%%d'))]"
help="Analytic Accounts of last 30 days"/>
<filter icon="terp-go-week"
string=" 7 Days "
separator="1"
domain="[('day','&lt;=', time.strftime('%%Y-%%m-%%d')), ('day','&gt;',(datetime.date.today()-datetime.timedelta(days=7)).strftime('%%Y-%%m-%%d'))]"
help="Analytic Accounts during last 7 days"/>
<separator orientation="vertical"/>
<filter icon="terp-document-new"
string="Draft"
domain="[('state','=','draft')]"/>
<filter icon="terp-camera_test"
string="Open"
domain="[('state','=','open')]"/>
<filter icon="terp-gtk-media-pause"
string="Pending"
domain="[('state','=','pending')]"/>
<separator orientation="vertical"/>
<field name="name"/>
<field name="product_id" />
<field name="partner_id"/>
<field name="user_id" widget="selection">
<filter icon="terp-folder-orange"
string="My Accounts"
help="My Account"
domain="[('user_id','=',uid)]"/>
</field>
</group>
<newline/>
<group expand="0" string="Group By..." colspan="10" col="12">
<filter string="User" name="User" icon="terp-personal" context="{'group_by':'user_id'}"/>
<filter string="Associated Partner" icon="terp-personal+" context="{'group_by':'partner_id'}"/>
<separator orientation="vertical"/>
<filter string="Company" icon="terp-go-home" context="{'group_by':'company_id'}" groups="base.group_multi_company"/>
<filter string="Analytic Account" icon="terp-folder-green" context="{'group_by':'parent_id'}"/>
<filter string="Analytic Journal" icon="terp-folder-green" context="{'group_by':'journal_id'}"/>
<separator orientation="vertical"/>
<filter string="Product" icon="terp-accessories-archiver" context="{'group_by':'product_id'}"/>
<filter string="Account Type" icon="terp-stock_symbol-selection" context="{'group_by':'type'}"/>
<filter string="State" icon="terp-stock_effects-object-colorize" context="{'group_by':'state'}"/>
<separator orientation="vertical"/>
<filter string="Day" icon="terp-go-today" context="{'group_by':'day'}"/>
<filter string="Month" icon="terp-go-month" context="{'group_by':'month'}"/>
<filter string="Year" icon="terp-go-year" context="{'group_by':'year'}"/>
</group>
<newline/>
<group expand="0" string="Extended options..." colspan="10" col="12" groups="base.group_extended">
<field name="date_start"/>
<field name="date_end"/>
<separator orientation="vertical"/>
<field name="state"/>
<field name="parent_id"/>
<field name="journal_id" widget="selection"/>
<field name="type"/>
<field name="company_id" widget="selection" groups="base.group_multi_company"/>
</group>
</search>
</field>
</record>
<record id="view_account_analytic_report_search" model="ir.ui.view">
<field name="name">account.analytic.report.graph</field>
<field name="model">analytic.report</field>
<field name="type">graph</field>
<field name="arch" type="xml">
<graph string="Analytic Accounts Analysis" type="bar">
<field name="user_id"/>
<field name="credit" operator="+"/>
<field name="debit" operator="+"/>
<field name="balance" operator="+"/>
<field name="nbr" operator="+"/>
</graph>
</field>
</record>
<record id="action_analytic_report_all" model="ir.actions.act_window">
<field name="name">Analytic Accounts Analysis</field>
<field name="res_model">analytic.report</field>
<field name="view_type">form</field>
<field name="view_mode">tree,graph</field>
<field name="context">{'search_default_This Month':1,'search_default_User':1,'group_by_no_leaf':1,'group_by':[]}</field>
<field name="search_view_id" ref="view_analytic_report_search"/>
</record>
<menuitem action="action_analytic_report_all" id="menu_action_analytic_report_all" parent="account.menu_finance_statistic_report_statement" sequence="8"/>
</data> </data>
</openerp> </openerp>

View File

@ -24,100 +24,84 @@ from osv import fields,osv
class account_entries_report(osv.osv): class account_entries_report(osv.osv):
_name = "account.entries.report" _name = "account.entries.report"
_description = "Entries" _description = "Journal Items Analysis"
_auto = False _auto = False
_rec_name = 'date' _rec_name = 'date'
_columns = { _columns = {
'date': fields.date('Effective Date', readonly=True), 'date': fields.date('Effective Date', readonly=True),
'date_created': fields.date('Date Created', readonly=True), 'date_created': fields.date('Date Created', readonly=True),
'date_maturity': fields.date('Date Maturity', readonly=True), 'date_maturity': fields.date('Date Maturity', readonly=True),
'nbr':fields.integer('# of Entries', readonly=True), 'ref': fields.char('Reference', size=64, readonly=True),
'nbl':fields.integer('# of Lines', readonly=True), 'nbr':fields.integer('# of Items', readonly=True),
'amount': fields.float('Amount', readonly=True), 'debit':fields.float('Debit', readonly=True),
'credit':fields.float('Credit', readonly=True),
'balance': fields.float('Balance', readonly=True),
'year': fields.char('Year', size=4, readonly=True), 'year': fields.char('Year', size=4, readonly=True),
'day': fields.char('Day', size=128, readonly=True), 'date': fields.date('Date', size=128, readonly=True),
'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), 'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'),
('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'), ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'),
('10','October'), ('11','November'), ('12','December')], 'Month', readonly=True), ('10','October'), ('11','November'), ('12','December')], 'Month', readonly=True),
'ref': fields.char('Reference', size=64, readonly=True),
'period_id': fields.many2one('account.period', 'Period', readonly=True), 'period_id': fields.many2one('account.period', 'Period', readonly=True),
'account_id': fields.many2one('account.account', 'Account', readonly=True), 'account_id': fields.many2one('account.account', 'Account', readonly=True),
'journal_id': fields.many2one('account.journal', 'Journal', readonly=True), 'journal_id': fields.many2one('account.journal', 'Journal', readonly=True),
'fiscalyear_id': fields.many2one('account.fiscalyear', 'Fiscal Year', readonly=True),
'product_id': fields.many2one('product.product', 'Product', readonly=True), 'product_id': fields.many2one('product.product', 'Product', readonly=True),
'state': fields.selection([('draft','Draft'), ('posted','Posted')], 'State', readonly=True, 'state': fields.selection([('draft','Draft'), ('posted','Posted')], 'State', readonly=True,
help='When new account move is created the state will be \'Draft\'. When all the payments are done it will be in \'Posted\' state.'), help='When new account move is created the state will be \'Draft\'. When all the payments are done it will be in \'Posted\' state.'),
'state_2': fields.selection([('draft','Draft'), ('valid','Valid')], 'State of Move Line', readonly=True, 'state_2': fields.selection([('draft','Draft'), ('valid','Valid')], 'State of Move Line', readonly=True,
help='When new move line is created the state will be \'Draft\'.\n* When all the payments are done it will be in \'Valid\' state.'), help='When new move line is created the state will be \'Draft\'.\n* When all the payments are done it will be in \'Valid\' state.'),
'partner_id': fields.many2one('res.partner','Partner', readonly=True), 'partner_id': fields.many2one('res.partner','Partner', readonly=True),
'period_id2': fields.many2one('account.period', 'Move Line Period', readonly=True),
'analytic_account_id' : fields.many2one('account.analytic.account', 'Analytic Account', readonly=True), 'analytic_account_id' : fields.many2one('account.analytic.account', 'Analytic Account', readonly=True),
'journal_id2': fields.many2one('account.journal', 'Move Line Journal', readonly=True),
'type': fields.selection([
('pay_voucher','Cash Payment'),
('bank_pay_voucher','Bank Payment'),
('rec_voucher','Cash Receipt'),
('bank_rec_voucher','Bank Receipt'),
('cont_voucher','Contra'),
('journal_sale_vou','Journal Sale'),
('journal_pur_voucher','Journal Purchase'),
('journal_voucher','Journal Voucher'),
],'Type',readonly=True),
'quantity': fields.float('Products Quantity', digits=(16,2), readonly=True), 'quantity': fields.float('Products Quantity', digits=(16,2), readonly=True),
'user_type': fields.many2one('account.account.type', 'Account Type', readonly=True),
'type': fields.selection([
('receivable', 'Receivable'),
('payable', 'Payable'),
('view', 'View'),
('consolidation', 'Consolidation'),
('other', 'Others'),
('closed', 'Closed'),
], 'Internal Type', readonly=True, help="This type is used to differentiate types with "\
"special effects in Open ERP: view can not have entries, consolidation are accounts that "\
"can have children accounts for multi-company consolidations, payable/receivable are for "\
"partners accounts (for debit/credit computations), closed for depreciated accounts."),
'company_id': fields.many2one('res.company', 'Company', readonly=True), 'company_id': fields.many2one('res.company', 'Company', readonly=True),
} }
_order = 'date desc' _order = 'date desc'
def init(self, cr): def init(self, cr):
tools.drop_view_if_exists(cr, 'account_entries_report') tools.drop_view_if_exists(cr, 'account_entries_report')
cr.execute(""" cr.execute("""
create or replace view account_entries_report as ( create or replace view account_entries_report as (
select select
min(l.id) as id, l.id as id,
am.ref as ref, am.date as date,
sum(l.quantity) as quantity, l.date_maturity as date_maturity,
am.state as state, l.date_created as date_created,
l.state as state_2, am.ref as ref,
am.date as date, am.state as state,
count(l.id) as nbr, l.state as state_2,
count(distinct am.id) as nbl, to_char(am.date, 'YYYY') as year,
l.debit as amount, to_char(am.date, 'MM') as month,
to_char(am.date, 'YYYY') as year, l.partner_id as partner_id,
to_char(am.date, 'MM') as month, l.product_id as product_id,
to_char(am.date, 'YYYY-MM-DD') as day, am.company_id as company_id,
am.company_id as company_id, am.journal_id as journal_id,
l.account_id as account_id, p.fiscalyear_id as fiscalyear_id,
l.analytic_account_id as analytic_account_id, am.period_id as period_id,
l.date_created as date_created, l.account_id as account_id,
l.date_maturity as date_maturity, l.analytic_account_id as analytic_account_id,
am.journal_id as journal_id, a.type as type,
l.journal_id as journal_id2, a.user_type as user_type,
l.period_id as period_id2, 1 as nbr,
am.period_id as period_id, l.quantity as quantity,
l.partner_id as partner_id, l.debit as debit,
l.product_id as product_id, l.credit as credit,
am.type as type l.debit-l.credit as balance
from from
account_move_line l account_move_line l
left join left join account_account a on (l.account_id = a.id)
account_move am on (am.id=l.move_id) left join account_move am on (am.id=l.move_id)
group by am.ref, left join account_period p on (am.period_id=p.id)
am.state,
am.date,
am.company_id,
am.journal_id,
l.journal_id,
am.period_id,
l.period_id,
am.type,
l.partner_id,
l.analytic_account_id,
l.product_id,
l.date_created,
l.date_maturity,
l.account_id,
l.state,
l.debit
) )
""") """)
account_entries_report() account_entries_report()

View File

@ -14,7 +14,6 @@
<field name="state" invisible="1"/> <field name="state" invisible="1"/>
<field name="state_2" invisible="1"/> <field name="state_2" invisible="1"/>
<field name="year" invisible="1"/> <field name="year" invisible="1"/>
<field name="day" invisible="1"/>
<field name="month" invisible="1"/> <field name="month" invisible="1"/>
<field name="partner_id" invisible="1"/> <field name="partner_id" invisible="1"/>
<field name="product_id" invisible="1"/> <field name="product_id" invisible="1"/>
@ -23,12 +22,13 @@
<field name="account_id" invisible="1"/> <field name="account_id" invisible="1"/>
<field name="analytic_account_id" invisible="1"/> <field name="analytic_account_id" invisible="1"/>
<field name="period_id" invisible="1"/> <field name="period_id" invisible="1"/>
<field name="period_id2" invisible="1"/> <field name="user_type" invisible="1"/>
<field name="type" invisible="1"/> <field name="type" invisible="1"/>
<field name="nbr" sum="# of Entries "/> <field name="nbr" sum="# of Items"/>
<field name="nbl" sum="# of Lines "/>
<field name="amount" sum="# of Amount "/>
<field name="quantity" sum="# of Products Qty "/> <field name="quantity" sum="# of Products Qty "/>
<field name="debit" sum="# of Lines "/>
<field name="credit" sum="# of Amount "/>
<field name="balance" sum="# of Amount "/>
</tree> </tree>
</field> </field>
</record> </record>
@ -38,8 +38,8 @@
<field name="type">graph</field> <field name="type">graph</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<graph string="Entries Analysis" type="bar"> <graph string="Entries Analysis" type="bar">
<field name="partner_id"/> <field name="account_id"/>
<field name="amount"/> <field name="balance"/>
</graph> </graph>
</field> </field>
</record> </record>
@ -49,77 +49,61 @@
<field name="type">search</field> <field name="type">search</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<search string="Entries Analysis"> <search string="Entries Analysis">
<group colspan="10" col="12"> <group colspan="10" col="12">
<filter icon="terp-go-year" string=" 365 Days " <filter string="Income" name="profit" icon="terp-document-new" domain="[('user_type.report_type','=','income')]"/>
domain="[('date','&lt;=', time.strftime('%%Y-%%m-%%d')),('date','&gt;',(datetime.date.today()-datetime.timedelta(days=365)).strftime('%%Y-%%m-%%d'))]" <filter string="Expense" name="loss" icon="terp-document-new" domain="[('user_type.report_type','=','expense')]"/>
help="Entries of last 365 days"/>
<filter icon="terp-go-month" string=" 30 Days "
name="This Month"
domain="[('date','&lt;=', time.strftime('%%Y-%%m-%%d')), ('date','&gt;',(datetime.date.today()-datetime.timedelta(days=30)).strftime('%%Y-%%m-%%d'))]"
help="Entries of last 30 days"/>
<filter icon="terp-go-week"
string=" 7 Days "
separator="1"
domain="[('date','&lt;=', time.strftime('%%Y-%%m-%%d')), ('date','&gt;',(datetime.date.today()-datetime.timedelta(days=7)).strftime('%%Y-%%m-%%d'))]"
help="Entries during last 7 days"/>
<separator orientation="vertical"/>
<filter string="Draft"
icon="terp-document-new"
domain="[('state','=','draft')]"
help = "Draft entries"/>
<filter string="Posted"
icon="terp-camera_test"
domain="[('state','=','posted')]"
help = "Posted entries"/>
<separator orientation="vertical"/> <separator orientation="vertical"/>
<field name="product_id" /> <filter string="Asset" name="asset" icon="terp-document-new" domain="[('user_type.report_type','=','asset')]"/>
<field name="partner_id" /> <filter string="Liability" name="liability" icon="terp-document-new" domain="[('user_type.report_type','=','liability')]"/>
<filter string="Receivable" name="asset" icon="terp-document-new" domain="[('type','=','receivable')]"/>
<filter string="Payable" name="asset" icon="terp-document-new" domain="[('type','=','payable')]"/>
<separator orientation="vertical"/>
<filter string="Draft" icon="terp-document-new" domain="[('state','=','draft')]" help = "Draft entries"/>
<filter string="Posted" icon="terp-camera_test" domain="[('state','=','posted')]" help = "Posted entries"/>
<separator orientation="vertical"/>
<field name="journal_id"/>
<field name="period_id"/>
<field name="account_id"/> <field name="account_id"/>
<field name="analytic_account_id"/> <field name="analytic_account_id"/>
</group> </group>
<newline/> <newline/>
<group expand="0" string="Group By..."> <group expand="1" string="Group By...">
<filter string="Journal" name="group_journal" icon="terp-folder-orange" context="{'group_by':'journal_id'}"/>
<filter string="Account" name="group_account" icon="terp-folder-orange" context="{'group_by':'account_id'}"/>
<filter string="Fiscal Year" icon="terp-go-month" context="{'group_by':'fiscalyear_id'}"/>
<filter string="Period" icon="terp-go-month" name="group_period" context="{'group_by':'period_id'}"/>
<separator orientation="vertical"/>
<filter string="Analytic" name="analytic_account" icon="terp-folder-orange" context="{'group_by':'analytic_account_id'}"/>
<filter string="Partner" icon="terp-personal" context="{'group_by':'partner_id'}"/> <filter string="Partner" icon="terp-personal" context="{'group_by':'partner_id'}"/>
<filter string="Product" icon="terp-accessories-archiver" context="{'group_by':'product_id'}"/> <filter string="Product" icon="terp-accessories-archiver" context="{'group_by':'product_id'}"/>
<filter string="Journal" name="Journal" icon="terp-folder-orange" context="{'group_by':'journal_id'}"/>
<separator orientation="vertical"/> <separator orientation="vertical"/>
<filter string="State" icon="terp-stock_effects-object-colorize" context="{'group_by':'state'}"/> <filter string="State" icon="terp-stock_effects-object-colorize" context="{'group_by':'state'}"/>
<filter string="Type" icon="terp-stock_symbol-selection" context="{'group_by':'type'}"/> <filter string="Type" icon="terp-stock_symbol-selection" context="{'group_by':'user_type'}"/>
<filter string="Int.Type" icon="terp-stock_symbol-selection" context="{'group_by':'type'}"/>
<filter string="Company" icon="terp-go-home" context="{'group_by':'company_id'}" groups="base.group_multi_company"/> <filter string="Company" icon="terp-go-home" context="{'group_by':'company_id'}" groups="base.group_multi_company"/>
<filter string="Account" name="Account" icon="terp-folder-orange" context="{'group_by':'account_id'}"/>
<separator orientation="vertical"/> <separator orientation="vertical"/>
<filter string="Analytic Account" name="Analytic Account" icon="terp-folder-green" context="{'group_by':'analytic_account_id'}"/> <filter string="Day" icon="terp-go-today" context="{'group_by':'date'}"/>
<filter string="State of Move Line" icon="terp-stock_effects-object-colorize" context="{'group_by':'state_2'}"/>
<filter string="Period" icon="terp-go-month" context="{'group_by':'period_id'}"/>
<filter string="Period of Move Line" icon="terp-go-month" context="{'group_by':'period_id2'}"/>
<newline/>
<filter string="Day" icon="terp-go-today" context="{'group_by':'day'}"/>
<filter string="Month" icon="terp-go-month" context="{'group_by':'month'}"/> <filter string="Month" icon="terp-go-month" context="{'group_by':'month'}"/>
<filter string="Year" icon="terp-go-year" context="{'group_by':'year'}"/> <filter string="Year" icon="terp-go-year" context="{'group_by':'year'}"/>
</group> </group>
<newline/> <newline/>
<group expand="0" string="Extended options..." groups="base.group_extended"> <group expand="0" string="Extended options..." groups="base.group_extended">
<field name="state_2"/> <field name="date"/>
<field name="period_id" widget="selection"/>
<field name="period_id2" widget="selection"/>
<field name="type"/>
<field name="journal_id" widget="selection"/>
<field name="company_id" widget="selection" groups="base.group_multi_company"/>
<newline/>
<field name="date_created"/> <field name="date_created"/>
<field name="date"/>
<field name="date_maturity"/> <field name="date_maturity"/>
<separator orientation="vertical"/>
<field name="product_id" />
<field name="partner_id" />
</group> </group>
</search> </search>
</field> </field>
</record> </record>
<record id="action_account_entries_report_all" model="ir.actions.act_window"> <record id="action_account_entries_report_all" model="ir.actions.act_window">
<field name="name">Entries Analysis</field> <field name="name">Accounting Analysis</field>
<field name="res_model">account.entries.report</field> <field name="res_model">account.entries.report</field>
<field name="view_type">form</field> <field name="view_type">form</field>
<field name="view_mode">tree,graph</field> <field name="view_mode">tree,graph</field>
<field name="context">{'search_default_This Month':1,'search_default_Journal':1,'group_by_no_leaf':1,'group_by':[]}</field> <field name="context">{'search_default_profit': 1,'search_default_group_journal':1,'search_default_group_period': 1, 'group_by_no_leaf':1,'group_by':[]}</field>
<field name="search_view_id" ref="view_account_entries_report_search"/>
</record> </record>
<menuitem action="action_account_entries_report_all" id="menu_action_account_entries_report_all" parent="account.menu_finance_statistic_report_statement" sequence="2"/> <menuitem action="action_account_entries_report_all" id="menu_action_account_entries_report_all" parent="account.menu_finance_statistic_report_statement" sequence="2"/>
</data> </data>

View File

@ -27,8 +27,6 @@
"access_account_tax_code_template","account.tax.code.template","model_account_tax_code_template","account.group_account_manager",1,1,1,1 "access_account_tax_code_template","account.tax.code.template","model_account_tax_code_template","account.group_account_manager",1,1,1,1
"access_account_chart_template","account.chart.template","model_account_chart_template","account.group_account_manager",1,1,1,1 "access_account_chart_template","account.chart.template","model_account_chart_template","account.group_account_manager",1,1,1,1
"access_account_tax_template","account.tax.template","model_account_tax_template","account.group_account_manager",1,1,1,1 "access_account_tax_template","account.tax.template","model_account_tax_template","account.group_account_manager",1,1,1,1
"access_wizard_multi_charts_accounts","wizard.multi.charts.accounts","model_wizard_multi_charts_accounts","account.group_account_manager",1,1,1,1
"access_account_bank_accounts_wizard","account.bank.accounts.wizard","model_account_bank_accounts_wizard","account.group_account_manager",1,1,1,1
"access_account_bank_statement","account.bank.statement","model_account_bank_statement","account.group_account_user",1,1,1,1 "access_account_bank_statement","account.bank.statement","model_account_bank_statement","account.group_account_user",1,1,1,1
"access_account_bank_statement_reconcile","account.bank.statement.reconcile","model_account_bank_statement_reconcile","account.group_account_user",1,1,1,1 "access_account_bank_statement_reconcile","account.bank.statement.reconcile","model_account_bank_statement_reconcile","account.group_account_user",1,1,1,1
"access_account_bank_statement_reconcile_line","account.bank.statement.reconcile.line","model_account_bank_statement_reconcile_line","account.group_account_user",1,1,1,1 "access_account_bank_statement_reconcile_line","account.bank.statement.reconcile.line","model_account_bank_statement_reconcile_line","account.group_account_user",1,1,1,1
@ -66,8 +64,6 @@
"access_account_fiscalyear_invoice","account.fiscalyear.invoice","model_account_fiscalyear","account.group_account_invoice",1,0,0,0 "access_account_fiscalyear_invoice","account.fiscalyear.invoice","model_account_fiscalyear","account.group_account_invoice",1,0,0,0
"access_res_currency_account_manager","res.currency account manager","base.model_res_currency","group_account_manager",1,1,1,1 "access_res_currency_account_manager","res.currency account manager","base.model_res_currency","group_account_manager",1,1,1,1
"access_res_currency_rate_account_manager","res.currency.rate account manager","base.model_res_currency_rate","group_account_manager",1,1,1,1 "access_res_currency_rate_account_manager","res.currency.rate account manager","base.model_res_currency_rate","group_account_manager",1,1,1,1
"access_account_add_tmpl_wizard_account_manager","account.addtmpl.wizard account manager","model_account_addtmpl_wizard","group_account_manager",1,1,1,1
"access_account_add_tmpl_wizard_system_manager","account.addtmpl.wizard system manager","model_account_addtmpl_wizard","base.group_system",1,1,1,1
"access_account_invoice_user","account.invoice user","model_account_invoice","base.group_user",1,0,0,0 "access_account_invoice_user","account.invoice user","model_account_invoice","base.group_user",1,0,0,0
"access_account_invoice_user","account.invoice.line user","model_account_invoice_line","base.group_user",1,0,0,0 "access_account_invoice_user","account.invoice.line user","model_account_invoice_line","base.group_user",1,0,0,0
"access_account_payment_term_partner_manager","account.payment.term partner manager","model_account_payment_term","base.group_user",1,0,0,0 "access_account_payment_term_partner_manager","account.payment.term partner manager","model_account_payment_term","base.group_user",1,0,0,0
@ -85,7 +81,6 @@
"access_account_fiscal_position_account_template","account.fiscal.position.account.template","model_account_fiscal_position_account_template","account.group_account_manager",1,1,1,1 "access_account_fiscal_position_account_template","account.fiscal.position.account.template","model_account_fiscal_position_account_template","account.group_account_manager",1,1,1,1
"access_account_sequence_fiscal_year","account.sequence.fiscalyear","model_account_sequence_fiscalyear","account.group_account_user",1,1,1,1 "access_account_sequence_fiscal_year","account.sequence.fiscalyear","model_account_sequence_fiscalyear","account.group_account_user",1,1,1,1
"access_account_sequence_fiscal_year_user","account.sequence.fiscalyear user","model_account_sequence_fiscalyear","base.group_user",1,0,0,0 "access_account_sequence_fiscal_year_user","account.sequence.fiscalyear user","model_account_sequence_fiscalyear","base.group_user",1,0,0,0
"access_account_installer","account.installer","model_account_installer","base.group_system",1,1,1,1
"access_report_account_receivable","report.account.receivable","model_report_account_receivable","account.group_account_manager",1,0,0,0 "access_report_account_receivable","report.account.receivable","model_report_account_receivable","account.group_account_manager",1,0,0,0
"access_temp_range","temp.range","model_temp_range","account.group_account_manager",1,0,0,0 "access_temp_range","temp.range","model_temp_range","account.group_account_manager",1,0,0,0
"access_report_aged_receivable","report.aged.receivable","model_report_aged_receivable","account.group_account_manager",1,0,0,0 "access_report_aged_receivable","report.aged.receivable","model_report_aged_receivable","account.group_account_manager",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
27 access_account_tax_code_template account.tax.code.template model_account_tax_code_template account.group_account_manager 1 1 1 1
28 access_account_chart_template account.chart.template model_account_chart_template account.group_account_manager 1 1 1 1
29 access_account_tax_template account.tax.template model_account_tax_template account.group_account_manager 1 1 1 1
access_wizard_multi_charts_accounts wizard.multi.charts.accounts model_wizard_multi_charts_accounts account.group_account_manager 1 1 1 1
access_account_bank_accounts_wizard account.bank.accounts.wizard model_account_bank_accounts_wizard account.group_account_manager 1 1 1 1
30 access_account_bank_statement account.bank.statement model_account_bank_statement account.group_account_user 1 1 1 1
31 access_account_bank_statement_reconcile account.bank.statement.reconcile model_account_bank_statement_reconcile account.group_account_user 1 1 1 1
32 access_account_bank_statement_reconcile_line account.bank.statement.reconcile.line model_account_bank_statement_reconcile_line account.group_account_user 1 1 1 1
64 access_account_fiscalyear_invoice account.fiscalyear.invoice model_account_fiscalyear account.group_account_invoice 1 0 0 0
65 access_res_currency_account_manager res.currency account manager base.model_res_currency group_account_manager 1 1 1 1
66 access_res_currency_rate_account_manager res.currency.rate account manager base.model_res_currency_rate group_account_manager 1 1 1 1
access_account_add_tmpl_wizard_account_manager account.addtmpl.wizard account manager model_account_addtmpl_wizard group_account_manager 1 1 1 1
access_account_add_tmpl_wizard_system_manager account.addtmpl.wizard system manager model_account_addtmpl_wizard base.group_system 1 1 1 1
67 access_account_invoice_user account.invoice user model_account_invoice base.group_user 1 0 0 0
68 access_account_invoice_user account.invoice.line user model_account_invoice_line base.group_user 1 0 0 0
69 access_account_payment_term_partner_manager account.payment.term partner manager model_account_payment_term base.group_user 1 0 0 0
81 access_account_fiscal_position_account_template account.fiscal.position.account.template model_account_fiscal_position_account_template account.group_account_manager 1 1 1 1
82 access_account_sequence_fiscal_year account.sequence.fiscalyear model_account_sequence_fiscalyear account.group_account_user 1 1 1 1
83 access_account_sequence_fiscal_year_user account.sequence.fiscalyear user model_account_sequence_fiscalyear base.group_user 1 0 0 0
access_account_installer account.installer model_account_installer base.group_system 1 1 1 1
84 access_report_account_receivable report.account.receivable model_report_account_receivable account.group_account_manager 1 0 0 0
85 access_temp_range temp.range model_temp_range account.group_account_manager 1 0 0 0
86 access_report_aged_receivable report.aged.receivable model_report_aged_receivable account.group_account_manager 1 0 0 0

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: account_voucher #. module: account_voucher

View File

@ -22,15 +22,4 @@
"access_report_object_encoded","report.object.encoded","model_report_object_encoded","base.group_user",1,0,0,0 "access_report_object_encoded","report.object.encoded","model_report_object_encoded","base.group_user",1,0,0,0
"access_report_object_encoded_manager","report.object.encoded.manager","model_report_object_encoded_manager","base.group_user",1,0,0,0 "access_report_object_encoded_manager","report.object.encoded.manager","model_report_object_encoded_manager","base.group_user",1,0,0,0
"access_report_unclassified_objects","report.unclassified.objects","model_report_unclassified_objects","base.group_user",1,0,0,0 "access_report_unclassified_objects","report.unclassified.objects","model_report_unclassified_objects","base.group_user",1,0,0,0
"access_auction_lots_able","auction.lots.able","model_auction_lots_able","base.group_user",1,0,0,0
"access_auction_lots_auction_move","auction.lots.auction.move","model_auction_lots_auction_move","base.group_user",1,0,0,0
"access_auction_lots_enable","auction.lots.enable","model_auction_lots_enable","base.group_user",1,0,0,0
"access_auction_lots_make_invoice_buyer","auction.lots.make.invoice.buyer","model_auction_lots_make_invoice_buyer","base.group_user",1,0,0,0
"access_auction_lots_make_invoice","auction.lots.make.invoice","model_auction_lots_make_invoice","base.group_user",1,0,0,0
"access_auction_lots_sms_send","auction.lots.sms.send","model_auction_lots_sms_send","base.group_user",1,0,0,0
"access_auction_pay_buy","auction.pay.buy","model_auction_pay_buy","base.group_user",1,0,0,0
"acess_auction_payer","auction.payer","model_auction_payer","base.group_user",1,0,0,0
"access_auction_pay_sel","auction.pay.sel","model_auction_payer_sel","base.group_user",1,0,0,0
"acess_auction_taken","auction.taken","model_auction_taken","base.group_user",1,0,0,0
"access_auction_catalog_flagey","auction.catalog.flagey","model_auction_catalog_flagey","base.group_user",1,0,0,0
"access_auction_lots_buyer_map_user","auction_lots_buyer_map_user","model_auction_lots_buyer_map","base.group_user",1,0,0,0 "access_auction_lots_buyer_map_user","auction_lots_buyer_map_user","model_auction_lots_buyer_map","base.group_user",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
22 access_report_object_encoded report.object.encoded model_report_object_encoded base.group_user 1 0 0 0
23 access_report_object_encoded_manager report.object.encoded.manager model_report_object_encoded_manager base.group_user 1 0 0 0
24 access_report_unclassified_objects report.unclassified.objects model_report_unclassified_objects base.group_user 1 0 0 0
access_auction_lots_able auction.lots.able model_auction_lots_able base.group_user 1 0 0 0
access_auction_lots_auction_move auction.lots.auction.move model_auction_lots_auction_move base.group_user 1 0 0 0
access_auction_lots_enable auction.lots.enable model_auction_lots_enable base.group_user 1 0 0 0
access_auction_lots_make_invoice_buyer auction.lots.make.invoice.buyer model_auction_lots_make_invoice_buyer base.group_user 1 0 0 0
access_auction_lots_make_invoice auction.lots.make.invoice model_auction_lots_make_invoice base.group_user 1 0 0 0
access_auction_lots_sms_send auction.lots.sms.send model_auction_lots_sms_send base.group_user 1 0 0 0
access_auction_pay_buy auction.pay.buy model_auction_pay_buy base.group_user 1 0 0 0
acess_auction_payer auction.payer model_auction_payer base.group_user 1 0 0 0
access_auction_pay_sel auction.pay.sel model_auction_payer_sel base.group_user 1 0 0 0
acess_auction_taken auction.taken model_auction_taken base.group_user 1 0 0 0
access_auction_catalog_flagey auction.catalog.flagey model_auction_catalog_flagey base.group_user 1 0 0 0
25 access_auction_lots_buyer_map_user auction_lots_buyer_map_user model_auction_lots_buyer_map base.group_user 1 0 0 0

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: audittrail #. module: audittrail

View File

@ -5,4 +5,3 @@
"access_audittrail_rule_all_users","audittrail rule all","model_audittrail_rule","base.group_user",1,0,0,0 "access_audittrail_rule_all_users","audittrail rule all","model_audittrail_rule","base.group_user",1,0,0,0
"access_audittrail_log_all_users","audittrail log all","model_audittrail_log","base.group_user",1,0,1,0 "access_audittrail_log_all_users","audittrail log all","model_audittrail_log","base.group_user",1,0,1,0
"access_audittrail_log_line_all_users","audittrail log line all","model_audittrail_log_line","base.group_user",1,0,1,0 "access_audittrail_log_line_all_users","audittrail log line all","model_audittrail_log_line","base.group_user",1,0,1,0
"access_audittrail_view_log","audittrail.view.log","model_audittrail_view_log","base.group_user",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
5 access_audittrail_rule_all_users audittrail rule all model_audittrail_rule base.group_user 1 0 0 0
6 access_audittrail_log_all_users audittrail log all model_audittrail_log base.group_user 1 0 1 0
7 access_audittrail_log_line_all_users audittrail log line all model_audittrail_log_line base.group_user 1 0 1 0
access_audittrail_view_log audittrail.view.log model_audittrail_view_log base.group_user 1 1 1 1

View File

@ -2,5 +2,3 @@
"access_base_report_creator_report","base_report_creator.report","model_base_report_creator_report","base.group_system",1,1,1,1 "access_base_report_creator_report","base_report_creator.report","model_base_report_creator_report","base.group_system",1,1,1,1
"access_base_report_creator_report_fields","base_report_creator.report.fields","model_base_report_creator_report_fields","base.group_system",1,1,1,1 "access_base_report_creator_report_fields","base_report_creator.report.fields","model_base_report_creator_report_fields","base.group_system",1,1,1,1
"access_base_report_creator_report_filter","base_report_creator.report.filter","model_base_report_creator_report_filter","base.group_system",1,1,1,1 "access_base_report_creator_report_filter","base_report_creator.report.filter","model_base_report_creator_report_filter","base.group_system",1,1,1,1
"access_report_menu_create","report.menu.create","model_report_menu_create","base.group_system",1,1,1,1
"access_report_open","report.open","model_report_open","base.group_system",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_base_report_creator_report base_report_creator.report model_base_report_creator_report base.group_system 1 1 1 1
3 access_base_report_creator_report_fields base_report_creator.report.fields model_base_report_creator_report_fields base.group_system 1 1 1 1
4 access_base_report_creator_report_filter base_report_creator.report.filter model_base_report_creator_report_filter base.group_system 1 1 1 1
access_report_menu_create report.menu.create model_report_menu_create base.group_system 1 1 1 1
access_report_open report.open model_report_open base.group_system 1 1 1 1

View File

@ -1,4 +1 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
"access_base_setup_installer","base.setup.installer","model_base_setup_installer",base.group_system,1,1,1,1
"access_base_setup_company","base.setup.company","model_base_setup_company",base.group_system,1,1,1,1
"access_base_setup_config","base.setup.config","model_base_setup_config",base.group_system,1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_base_setup_installer base.setup.installer model_base_setup_installer base.group_system 1 1 1 1
access_base_setup_company base.setup.company model_base_setup_company base.group_system 1 1 1 1
access_base_setup_config base.setup.config model_base_setup_config base.group_system 1 1 1 1

View File

@ -3,4 +3,3 @@
"access_board_board_line","board.board.line","model_board_board_line","base.group_user",1,1,1,1 "access_board_board_line","board.board.line","model_board_board_line","base.group_user",1,1,1,1
"access_board_note_type","board.note.type","model_board_note_type","base.group_user",1,1,1,1 "access_board_note_type","board.note.type","model_board_note_type","base.group_user",1,1,1,1
"access_board_note","board.note","model_board_note","base.group_user",1,1,1,1 "access_board_note","board.note","model_board_note","base.group_user",1,1,1,1
"access_board_menu_create","board.menu.create","model_board_menu_create","base.group_user",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
3 access_board_board_line board.board.line model_board_board_line base.group_user 1 1 1 1
4 access_board_note_type board.note.type model_board_note_type base.group_user 1 1 1 1
5 access_board_note board.note model_board_note base.group_user 1 1 1 1
access_board_menu_create board.menu.create model_board_menu_create base.group_user 1 1 1 1

View File

@ -1,13 +1,5 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_basic_calendar_event_all","basic.calendar.event","model_basic_calendar_event","base.group_user",1,1,1,0
"access_basic_calendar_attendee_all","basic.calendar.attendee","model_basic_calendar_attendee","base.group_user",1,1,1,0
"access_calendar_todo_all","basic.calendar.todo","model_basic_calendar_todo","base.group_user",1,1,1,0
"access_basic_calendar_alarm_all","basic.calendar.alarm","model_basic_calendar_alarm","base.group_user",1,1,1,1
"access_basic_calendar_lines","basic.calendar.lines","model_basic_calendar_lines","base.group_user",1,1,1,1 "access_basic_calendar_lines","basic.calendar.lines","model_basic_calendar_lines","base.group_user",1,1,1,1
"access_basic_calendar_attributes","basic.calendar.attributes","model_basic_calendar_attributes","base.group_user",1,1,1,1 "access_basic_calendar_attributes","basic.calendar.attributes","model_basic_calendar_attributes","base.group_user",1,1,1,1
"access_basic_calendar_fields","basic.calendar.fields","model_basic_calendar_fields","base.group_user",1,1,1,1 "access_basic_calendar_fields","basic.calendar.fields","model_basic_calendar_fields","base.group_user",1,1,1,1
"access_basic_calendar_timezone","basic.calendar.timezone","model_basic_calendar_timezone","base.group_user",1,1,1,1
"access_calendar_event_export","calendar.event.export","model_calendar_event_export","base.group_user",1,1,1,1
"access_calendar_event_import","calendar.event.import","model_calendar_event_import","base.group_user",1,1,1,1
"access_calendar_event_subscribe","calendar.event.subscribe","model_calendar_event_subscribe","base.group_user",1,1,1,1
"access_basic_calendar","basic.calendar","model_basic_calendar","base.group_user",1,1,1,1 "access_basic_calendar","basic.calendar","model_basic_calendar","base.group_user",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_basic_calendar_event_all basic.calendar.event model_basic_calendar_event base.group_user 1 1 1 0
access_basic_calendar_attendee_all basic.calendar.attendee model_basic_calendar_attendee base.group_user 1 1 1 0
access_calendar_todo_all basic.calendar.todo model_basic_calendar_todo base.group_user 1 1 1 0
access_basic_calendar_alarm_all basic.calendar.alarm model_basic_calendar_alarm base.group_user 1 1 1 1
2 access_basic_calendar_lines basic.calendar.lines model_basic_calendar_lines base.group_user 1 1 1 1
3 access_basic_calendar_attributes basic.calendar.attributes model_basic_calendar_attributes base.group_user 1 1 1 1
4 access_basic_calendar_fields basic.calendar.fields model_basic_calendar_fields base.group_user 1 1 1 1
access_basic_calendar_timezone basic.calendar.timezone model_basic_calendar_timezone base.group_user 1 1 1 1
access_calendar_event_export calendar.event.export model_calendar_event_export base.group_user 1 1 1 1
access_calendar_event_import calendar.event.import model_calendar_event_import base.group_user 1 1 1 1
access_calendar_event_subscribe calendar.event.subscribe model_calendar_event_subscribe base.group_user 1 1 1 1
5 access_basic_calendar basic.calendar model_basic_calendar base.group_user 1 1 1 1

View File

@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n" "Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n" "Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-01-05 05:59+0000\n" "POT-Creation-Date: 2010-01-05 05:59+0000\n"
"PO-Revision-Date: 2010-06-27 22:27+0000\n" "PO-Revision-Date: 2010-06-28 22:26+0000\n"
"Last-Translator: Borja López Soilán (Pexego) <borjals@pexego.es>\n" "Last-Translator: Borja López Soilán (Pexego) <borjals@pexego.es>\n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: crm #. module: crm
@ -2239,7 +2239,7 @@ msgstr "Creado"
#. module: crm #. module: crm
#: view:crm.lead:0 #: view:crm.lead:0
msgid "Lead Information" msgid "Lead Information"
msgstr "" msgstr "Información iniciativa"
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_crm_segmentation_line #: model:ir.model,name:crm.model_crm_segmentation_line
@ -2264,6 +2264,8 @@ msgid ""
"Helps you to encode the result of a phone call or to plan a list of phone " "Helps you to encode the result of a phone call or to plan a list of phone "
"calls to process." "calls to process."
msgstr "" msgstr ""
"Le ayuda a registrar el resultado de una llamada telefónica o planear una "
"lista de llamadas a procesar."
#. module: crm #. module: crm
#: model:ir.actions.wizard,name:crm.wizard_crm_cal_import #: model:ir.actions.wizard,name:crm.wizard_crm_cal_import
@ -2278,7 +2280,7 @@ msgstr ""
#. module: crm #. module: crm
#: model:crm.case.category2,name:crm.category_job3 #: model:crm.case.category2,name:crm.category_job3
msgid " > Bac +5" msgid " > Bac +5"
msgstr "" msgstr " > Bac +5"
#. module: crm #. module: crm
#: selection:report.crm.case.section.categ.categ2,month:0 #: selection:report.crm.case.section.categ.categ2,month:0
@ -2559,6 +2561,8 @@ msgid ""
"If the active field is set to true, it will allow you to hide the case " "If the active field is set to true, it will allow you to hide the case "
"without removing it." "without removing it."
msgstr "" msgstr ""
"Si el campo activo está establecido a verdadero, le permitirá ocultar el "
"caso sin eliminarlo."
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_crm_menu_config_wizard #: model:ir.model,name:crm.model_crm_menu_config_wizard
@ -2637,7 +2641,7 @@ msgstr "Para asignar"
#: code:addons/crm/wizard/wizard_cal_subscribe.py:0 #: code:addons/crm/wizard/wizard_cal_subscribe.py:0
#, python-format #, python-format
msgid "Please provide Proper URL !" msgid "Please provide Proper URL !"
msgstr "" msgstr "Por favor, ¡provea una URL adecuada!"
#. module: crm #. module: crm
#: model:process.node,note:crm.process_node_opportunities0 #: model:process.node,note:crm.process_node_opportunities0
@ -2764,7 +2768,7 @@ msgstr "Abierto"
#. module: crm #. module: crm
#: selection:crm.meeting,class:0 #: selection:crm.meeting,class:0
msgid "PUBLIC" msgid "PUBLIC"
msgstr "" msgstr "PÚBLICO"
#. module: crm #. module: crm
#: code:addons/crm/wizard/crm_job_wizard.py:0 #: code:addons/crm/wizard/crm_job_wizard.py:0
@ -2783,6 +2787,8 @@ msgstr "Casos llamadas"
#: help:crm.case.rule,sequence:0 #: help:crm.case.rule,sequence:0
msgid "Gives the sequence order when displaying a list of case rules." msgid "Gives the sequence order when displaying a list of case rules."
msgstr "" msgstr ""
"Establece el orden de secuencia cuando se muestra una lista de reglas de "
"casos."
#. module: crm #. module: crm
#: field:crm.menu.config_wizard,helpdesk:0 #: field:crm.menu.config_wizard,helpdesk:0
@ -2845,7 +2851,7 @@ msgstr "Nombre iniciativa"
#. module: crm #. module: crm
#: view:crm.claim:0 #: view:crm.claim:0
msgid "Claim/Action Description" msgid "Claim/Action Description"
msgstr "" msgstr "Descripción Reclamación/Acción"
#. module: crm #. module: crm
#: field:crm.case.rule,trg_max_history:0 #: field:crm.case.rule,trg_max_history:0
@ -2855,7 +2861,7 @@ msgstr "Máximo historial de comunicaciones"
#. module: crm #. module: crm
#: view:crm.lead:0 #: view:crm.lead:0
msgid "Meeting For Leads Generation" msgid "Meeting For Leads Generation"
msgstr "" msgstr "Reunión para generación de iniciativas"
#. module: crm #. module: crm
#: wizard_view:crm.lead.opportunity_set,create_partner:0 #: wizard_view:crm.lead.opportunity_set,create_partner:0
@ -2907,6 +2913,14 @@ msgid ""
" \n" " \n"
"If the case needs to be reviewed then the state is set to 'Pending'." "If the case needs to be reviewed then the state is set to 'Pending'."
msgstr "" msgstr ""
"El estado se establece a 'Borrador', cuando se crea un caso. "
" \n"
"Si el caso está en progreso el estado se establece a 'Abierto'. "
" \n"
"Cuando el caso se cierra, el estado se establece a 'Realizado'. "
" \n"
"Si el caso necesita ser revisado entonces en estado se establece a "
"'Pendiente'."
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
@ -2951,12 +2965,12 @@ msgstr "Usuario responsable"
#: code:addons/crm/wizard/wizard_crm_new_send_email.py:0 #: code:addons/crm/wizard/wizard_crm_new_send_email.py:0
#, python-format #, python-format
msgid "Email not sent !" msgid "Email not sent !"
msgstr "" msgstr "¡Correo no enviado!"
#. module: crm #. module: crm
#: wizard_field:crm.phonecall.partner_create,init,close:0 #: wizard_field:crm.phonecall.partner_create,init,close:0
msgid "Close Phonecall" msgid "Close Phonecall"
msgstr "" msgstr "Cerrar llamada"
#. module: crm #. module: crm
#: field:crm.case,email_last:0 #: field:crm.case,email_last:0
@ -2966,12 +2980,12 @@ msgstr "Último email"
#. module: crm #. module: crm
#: view:crm.case.rule:0 #: view:crm.case.rule:0
msgid "Regex on Communication History" msgid "Regex on Communication History"
msgstr "" msgstr "Exp. reg. en histórico de comunicaciones"
#. module: crm #. module: crm
#: model:crm.case.category2,name:crm.categ2_fund4 #: model:crm.case.category2,name:crm.categ2_fund4
msgid "Demand Draft" msgid "Demand Draft"
msgstr "" msgstr "Borrador demanda"
#. module: crm #. module: crm
#: field:crm.case,id:0 #: field:crm.case,id:0
@ -2987,12 +3001,12 @@ msgstr "Historial del registro"
#: wizard_field:crm.lead.opportunity_set,opportunity,name:0 #: wizard_field:crm.lead.opportunity_set,opportunity,name:0
#: wizard_field:crm.phonecall.opportunity_set,opportunity,name:0 #: wizard_field:crm.phonecall.opportunity_set,opportunity,name:0
msgid "Opportunity Summary" msgid "Opportunity Summary"
msgstr "" msgstr "Resumen oportunidad"
#. module: crm #. module: crm
#: view:crm.case:0 #: view:crm.case:0
msgid "Search Case" msgid "Search Case"
msgstr "" msgstr "Buscar caso"
#. module: crm #. module: crm
#: view:crm.segmentation:0 #: view:crm.segmentation:0
@ -3008,7 +3022,7 @@ msgstr "Descripción del caso"
#: wizard_field:crm.job.reschedule_phone_call,init,user_id:0 #: wizard_field:crm.job.reschedule_phone_call,init,user_id:0
#: wizard_field:crm.opportunity.reschedule_phone_call,init,user_id:0 #: wizard_field:crm.opportunity.reschedule_phone_call,init,user_id:0
msgid "Assign To" msgid "Assign To"
msgstr "" msgstr "Asignar a"
#. module: crm #. module: crm
#: field:crm.case,date_action_last:0 #: field:crm.case,date_action_last:0
@ -3018,7 +3032,7 @@ msgstr "Última acción"
#. module: crm #. module: crm
#: field:crm.case,duration:0 #: field:crm.case,duration:0
msgid "Duration" msgid "Duration"
msgstr "" msgstr "Duración"
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_report_crm_case_section_categ_stage #: model:ir.model,name:crm.model_report_crm_case_section_categ_stage
@ -3028,12 +3042,12 @@ msgstr "Casos por sección, categoría y fase"
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
msgid "Candidate Hired" msgid "Candidate Hired"
msgstr "" msgstr "Candidato contratado"
#. module: crm #. module: crm
#: field:crm.menu.config_wizard,jobs:0 #: field:crm.menu.config_wizard,jobs:0
msgid "Jobs Hiring Process" msgid "Jobs Hiring Process"
msgstr "" msgstr "Proceso de selección de personal"
#. module: crm #. module: crm
#: model:ir.ui.menu,name:crm.next_id_52 #: model:ir.ui.menu,name:crm.next_id_52
@ -3044,12 +3058,12 @@ msgstr "Todos los casos"
#: code:addons/crm/wizard/crm_lead_wizard.py:0 #: code:addons/crm/wizard/crm_lead_wizard.py:0
#, python-format #, python-format
msgid "A partner is already defined on this lead." msgid "A partner is already defined on this lead."
msgstr "" msgstr "Una empresa ya ha sido definida en esta iniciativa."
#. module: crm #. module: crm
#: view:crm.lead:0 #: view:crm.lead:0
msgid "Lead Source" msgid "Lead Source"
msgstr "" msgstr "Origen iniciativa"
#. module: crm #. module: crm
#: field:report.crm.case.section.categ.categ2,nbr:0 #: field:report.crm.case.section.categ.categ2,nbr:0
@ -3057,17 +3071,17 @@ msgstr ""
#: field:report.crm.case.section.categ2,nbr:0 #: field:report.crm.case.section.categ2,nbr:0
#: field:report.crm.case.section.stage,nbr:0 #: field:report.crm.case.section.stage,nbr:0
msgid "# of Cases" msgid "# of Cases"
msgstr "" msgstr "# de casos"
#. module: crm #. module: crm
#: selection:crm.meeting,class:0 #: selection:crm.meeting,class:0
msgid "PRIVATE" msgid "PRIVATE"
msgstr "" msgstr "PRIVADO"
#. module: crm #. module: crm
#: wizard_view:caldav.crm.subscribe,init:0 #: wizard_view:caldav.crm.subscribe,init:0
msgid "Provide path for Remote Calendar" msgid "Provide path for Remote Calendar"
msgstr "" msgstr "Provea un camino para el calendario remoto"
#. module: crm #. module: crm
#: view:crm.segmentation:0 #: view:crm.segmentation:0
@ -3078,28 +3092,28 @@ msgstr "Segmentación"
#. module: crm #. module: crm
#: view:crm.fundraising:0 #: view:crm.fundraising:0
msgid "Funds Form" msgid "Funds Form"
msgstr "" msgstr "Formulario fondos"
#. module: crm #. module: crm
#: view:crm.meeting:0 #: view:crm.meeting:0
msgid "Search Meetings" msgid "Search Meetings"
msgstr "" msgstr "Buscar reuniones"
#. module: crm #. module: crm
#: selection:crm.lead.opportunity_set,create_partner,action:0 #: selection:crm.lead.opportunity_set,create_partner,action:0
#: selection:crm.phonecall.opportunity_set,create_partner,action:0 #: selection:crm.phonecall.opportunity_set,create_partner,action:0
msgid "Create a new partner" msgid "Create a new partner"
msgstr "" msgstr "Crear una nueva empresa"
#. module: crm #. module: crm
#: field:crm.case,company_id:0 #: field:crm.case,company_id:0
msgid "Company" msgid "Company"
msgstr "" msgstr "Compañía"
#. module: crm #. module: crm
#: model:crm.case.stage,name:crm.stage_lead3 #: model:crm.case.stage,name:crm.stage_lead3
msgid "In Process" msgid "In Process"
msgstr "" msgstr "En curso"
#. module: crm #. module: crm
#: selection:crm.segmentation,state:0 #: selection:crm.segmentation,state:0
@ -3115,18 +3129,18 @@ msgstr "%(case_user)s = Nombre del responsable"
#: wizard_field:crm.job.reschedule_phone_call,init,note:0 #: wizard_field:crm.job.reschedule_phone_call,init,note:0
#: wizard_field:crm.opportunity.reschedule_phone_call,init,note:0 #: wizard_field:crm.opportunity.reschedule_phone_call,init,note:0
msgid "Goals" msgid "Goals"
msgstr "" msgstr "Objetivos"
#. module: crm #. module: crm
#: model:ir.ui.menu,name:crm.menu_crm_case_section_categ_tree #: model:ir.ui.menu,name:crm.menu_crm_case_section_categ_tree
#: view:report.crm.case.section.categ2:0 #: view:report.crm.case.section.categ2:0
msgid "Cases by Section and Type" msgid "Cases by Section and Type"
msgstr "" msgstr "Casos por sección y tipo"
#. module: crm #. module: crm
#: model:ir.ui.menu,name:crm.menu_aftersale #: model:ir.ui.menu,name:crm.menu_aftersale
msgid "After-Sale Services" msgid "After-Sale Services"
msgstr "" msgstr "Servicios post-venta"
#. module: crm #. module: crm
#: wizard_button:caldav.crm.export,init,end:0 #: wizard_button:caldav.crm.export,init,end:0
@ -3134,17 +3148,17 @@ msgstr ""
#: wizard_button:caldav.crm.subscribe,display,end:0 #: wizard_button:caldav.crm.subscribe,display,end:0
#: view:crm.email.add.cc:0 #: view:crm.email.add.cc:0
msgid "Ok" msgid "Ok"
msgstr "" msgstr "Aceptar"
#. module: crm #. module: crm
#: wizard_field:caldav.crm.export,init,name:0 #: wizard_field:caldav.crm.export,init,name:0
msgid "File name" msgid "File name"
msgstr "" msgstr "Nombre fichero"
#. module: crm #. module: crm
#: view:crm.lead:0 #: view:crm.lead:0
msgid "Search Leads" msgid "Search Leads"
msgstr "" msgstr "Buscar iniciativas"
#. module: crm #. module: crm
#: help:crm.case.rule,active:0 #: help:crm.case.rule,active:0
@ -3152,6 +3166,8 @@ msgid ""
"If the active field is set to true, it will allow you to hide the case rule " "If the active field is set to true, it will allow you to hide the case rule "
"without removing it." "without removing it."
msgstr "" msgstr ""
"Si el campo activo está establecido a verdadero, le permitirá ocultar la "
"regla de caso sin eliminarla."
#. module: crm #. module: crm
#: code:addons/crm/crm.py:0 #: code:addons/crm/crm.py:0
@ -3163,13 +3179,13 @@ msgstr "¡Error!"
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_crm_claim_assign_wizard #: model:ir.model,name:crm.model_crm_claim_assign_wizard
msgid "crm.claim.assign_wizard" msgid "crm.claim.assign_wizard"
msgstr "" msgstr "crm.reclamación.asistente_asignación"
#. module: crm #. module: crm
#: model:ir.actions.act_window,name:crm.crm_case_categ0_act_job #: model:ir.actions.act_window,name:crm.crm_case_categ0_act_job
#: model:ir.ui.menu,name:crm.menu_crm_case_categ0_act_job #: model:ir.ui.menu,name:crm.menu_crm_case_categ0_act_job
msgid "All Jobs Requests" msgid "All Jobs Requests"
msgstr "" msgstr "Todas las peticiones de trabajo"
#. module: crm #. module: crm
#: selection:crm.case,state:0 #: selection:crm.case,state:0
@ -3181,12 +3197,12 @@ msgstr ""
#: selection:report.crm.case.section.categ2,state:0 #: selection:report.crm.case.section.categ2,state:0
#: selection:report.crm.case.section.stage,state:0 #: selection:report.crm.case.section.stage,state:0
msgid "Cancelled" msgid "Cancelled"
msgstr "" msgstr "Cancelado"
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
msgid "Applied Job" msgid "Applied Job"
msgstr "" msgstr "Trabajo solicitado"
#. module: crm #. module: crm
#: help:crm.meeting,exrule:0 #: help:crm.meeting,exrule:0
@ -3194,31 +3210,33 @@ msgid ""
"defines a rule or repeating pattern for " "defines a rule or repeating pattern for "
"anexception to a recurrence set" "anexception to a recurrence set"
msgstr "" msgstr ""
"define una regla o patrón repetitivo para una excepción a un conjunto "
"recurrente"
#. module: crm #. module: crm
#: view:crm.phonecall:0 #: view:crm.phonecall:0
msgid "Relevant" msgid "Relevant"
msgstr "" msgstr "Relevante"
#. module: crm #. module: crm
#: wizard_field:crm.case.opportunity.partner_opportunity,init,name:0 #: wizard_field:crm.case.opportunity.partner_opportunity,init,name:0
msgid "Opportunity Name" msgid "Opportunity Name"
msgstr "" msgstr "Nombre oportunidad"
#. module: crm #. module: crm
#: field:crm.meeting,rrule:0 #: field:crm.meeting,rrule:0
msgid "Recurrent Rule" msgid "Recurrent Rule"
msgstr "" msgstr "Regla recurrente"
#. module: crm #. module: crm
#: wizard_view:caldav.crm.import,init:0 #: wizard_view:caldav.crm.import,init:0
msgid "Import ICS" msgid "Import ICS"
msgstr "" msgstr "Importar ICS"
#. module: crm #. module: crm
#: view:crm.phonecall:0 #: view:crm.phonecall:0
msgid "Call Summary" msgid "Call Summary"
msgstr "" msgstr "Resumen de llamadas"
#. module: crm #. module: crm
#: field:crm.segmentation.line,expr_operator:0 #: field:crm.segmentation.line,expr_operator:0
@ -3233,7 +3251,7 @@ msgstr "Historial de comunicación del caso"
#. module: crm #. module: crm
#: model:ir.ui.menu,name:crm.menu_action_report_crm_case_oppor_categ #: model:ir.ui.menu,name:crm.menu_action_report_crm_case_oppor_categ
msgid "Cases by Opportunities and Type" msgid "Cases by Opportunities and Type"
msgstr "" msgstr "Casos por oportunidades y tipo"
#. module: crm #. module: crm
#: view:crm.case.rule:0 #: view:crm.case.rule:0
@ -3266,18 +3284,18 @@ msgstr "Expresión opcional"
#. module: crm #. module: crm
#: model:crm.case.categ,name:crm.categ_fund1 #: model:crm.case.categ,name:crm.categ_fund1
msgid "Social Rehabilitation And Rural Upliftment" msgid "Social Rehabilitation And Rural Upliftment"
msgstr "" msgstr "Rehabilitación social y recuperación rural"
#. module: crm #. module: crm
#: code:addons/crm/wizard/crm_job_wizard.py:0 #: code:addons/crm/wizard/crm_job_wizard.py:0
#, python-format #, python-format
msgid "A partner is already defined on this job request." msgid "A partner is already defined on this job request."
msgstr "" msgstr "Una empresa ya está definida para esta petición de trabajo"
#. module: crm #. module: crm
#: model:crm.case.stage,name:crm.stage_lead1 #: model:crm.case.stage,name:crm.stage_lead1
msgid "New" msgid "New"
msgstr "" msgstr "Nuevo"
#. module: crm #. module: crm
#: field:crm.case,description:0 #: field:crm.case,description:0
@ -3301,12 +3319,12 @@ msgstr "Canal"
#. module: crm #. module: crm
#: help:crm.case.rule,act_mail_to_email:0 #: help:crm.case.rule,act_mail_to_email:0
msgid "Email-id of the persons whom mail is to be sent" msgid "Email-id of the persons whom mail is to be sent"
msgstr "" msgstr "Email-id de las personas a las que se mandará el correo"
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_crm_claim #: model:ir.model,name:crm.model_crm_claim
msgid "Claim Cases" msgid "Claim Cases"
msgstr "" msgstr "Casos de reclamaciones"
#. module: crm #. module: crm
#: view:crm.case.rule:0 #: view:crm.case.rule:0
@ -3321,22 +3339,22 @@ msgstr "Casos por iniciativas y fase"
#. module: crm #. module: crm
#: field:crm.meeting,exdate:0 #: field:crm.meeting,exdate:0
msgid "Exception Date/Times" msgid "Exception Date/Times"
msgstr "" msgstr "Fecha/horas excepción"
#. module: crm #. module: crm
#: view:crm.meeting.generic_wizard:0 #: view:crm.meeting.generic_wizard:0
msgid "Generic Wizard" msgid "Generic Wizard"
msgstr "" msgstr "Asistente genérico"
#. module: crm #. module: crm
#: model:process.transition,note:crm.process_transition_leadopportunity0 #: model:process.transition,note:crm.process_transition_leadopportunity0
msgid "Creating business opportunities from Leads" msgid "Creating business opportunities from Leads"
msgstr "" msgstr "Creando oportunidades de negocio desde iniciativas"
#. module: crm #. module: crm
#: model:ir.ui.menu,name:crm.next_id_64 #: model:ir.ui.menu,name:crm.next_id_64
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr "Informes"
#. module: crm #. module: crm
#: code:addons/crm/crm.py:0 #: code:addons/crm/crm.py:0
@ -3362,12 +3380,12 @@ msgstr "Pendiente"
#. module: crm #. module: crm
#: model:process.transition,name:crm.process_transition_leadopportunity0 #: model:process.transition,name:crm.process_transition_leadopportunity0
msgid "Prospect Opportunity" msgid "Prospect Opportunity"
msgstr "" msgstr "Oportunidad de prospección"
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
msgid "Expected Salary" msgid "Expected Salary"
msgstr "" msgstr "Salario esperado"
#. module: crm #. module: crm
#: model:ir.ui.menu,name:crm.menu_crm_configuration #: model:ir.ui.menu,name:crm.menu_crm_configuration
@ -3377,54 +3395,54 @@ msgstr "Configuración"
#. module: crm #. module: crm
#: model:ir.actions.wizard,name:crm.wizard_crm_new_send_mail #: model:ir.actions.wizard,name:crm.wizard_crm_new_send_mail
msgid "Send New Mail" msgid "Send New Mail"
msgstr "" msgstr "Enviar nuevo correo"
#. module: crm #. module: crm
#: constraint:ir.cron:0 #: constraint:ir.cron:0
msgid "Invalid arguments" msgid "Invalid arguments"
msgstr "" msgstr "Argumentos inválidos"
#. module: crm #. module: crm
#: field:crm.meeting,transparent:0 #: field:crm.meeting,transparent:0
msgid "Trensparent" msgid "Trensparent"
msgstr "" msgstr "Transparente"
#. module: crm #. module: crm
#: view:crm.case:0 #: view:crm.case:0
msgid "My Cases" msgid "My Cases"
msgstr "" msgstr "Mis casos"
#. module: crm #. module: crm
#: model:crm.case.categ,name:crm.categ_lead7 #: model:crm.case.categ,name:crm.categ_lead7
#: model:crm.case.categ,name:crm.categ_oppor7 #: model:crm.case.categ,name:crm.categ_oppor7
msgid "Word of mouth" msgid "Word of mouth"
msgstr "" msgstr "De palabra"
#. module: crm #. module: crm
#: view:crm.lead:0 #: view:crm.lead:0
msgid "Lead Subject" msgid "Lead Subject"
msgstr "" msgstr "Asunto iniciativa"
#. module: crm #. module: crm
#: view:crm.lead:0 #: view:crm.lead:0
#: view:crm.phonecall:0 #: view:crm.phonecall:0
msgid "Convert to Opportunity" msgid "Convert to Opportunity"
msgstr "" msgstr "Convertir a oportunidad"
#. module: crm #. module: crm
#: model:crm.case.stage,name:crm.stage_phone1 #: model:crm.case.stage,name:crm.stage_phone1
msgid "Planned" msgid "Planned"
msgstr "" msgstr "Planificado"
#. module: crm #. module: crm
#: model:crm.case.category2,name:crm.category_meet3 #: model:crm.case.category2,name:crm.category_meet3
msgid "Customer Office" msgid "Customer Office"
msgstr "" msgstr "Oficina cliente"
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
msgid "Candidate Email" msgid "Candidate Email"
msgstr "" msgstr "Email candidato"
#. module: crm #. module: crm
#: view:crm.opportunity:0 #: view:crm.opportunity:0
@ -3434,7 +3452,7 @@ msgstr "Fase de ventas: "
#. module: crm #. module: crm
#: view:crm.claim:0 #: view:crm.claim:0
msgid "Type of Action" msgid "Type of Action"
msgstr "" msgstr "Tipo de acción"
#. module: crm #. module: crm
#: field:crm.case.rule,act_user_id:0 #: field:crm.case.rule,act_user_id:0
@ -3444,7 +3462,7 @@ msgstr "Establecer responsable a"
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
msgid "Meeting With Candidates" msgid "Meeting With Candidates"
msgstr "" msgstr "Reunión con candidatos"
#. module: crm #. module: crm
#: help:crm.segmentation,som_interval:0 #: help:crm.segmentation,som_interval:0
@ -3468,12 +3486,12 @@ msgstr ""
#: selection:report.crm.case.section.categ2,month:0 #: selection:report.crm.case.section.categ2,month:0
#: selection:report.crm.case.section.stage,month:0 #: selection:report.crm.case.section.stage,month:0
msgid "December" msgid "December"
msgstr "" msgstr "Diciembre"
#. module: crm #. module: crm
#: view:report.crm.case.section.categ.categ2:0 #: view:report.crm.case.section.categ.categ2:0
msgid "Search Cases by User" msgid "Search Cases by User"
msgstr "" msgstr "Buscar casos por usuario"
#. module: crm #. module: crm
#: view:crm.case.rule:0 #: view:crm.case.rule:0
@ -3488,7 +3506,7 @@ msgstr "Enviar correo a empresa"
#. module: crm #. module: crm
#: view:crm.fundraising:0 #: view:crm.fundraising:0
msgid "Funds Tree" msgid "Funds Tree"
msgstr "" msgstr "Árbol de fondos"
#. module: crm #. module: crm
#: field:crm.case.rule,act_method:0 #: field:crm.case.rule,act_method:0
@ -3498,7 +3516,7 @@ msgstr "Método llamada al objeto"
#. module: crm #. module: crm
#: model:ir.actions.act_window,name:crm.crm_case_category_act_fund_all1 #: model:ir.actions.act_window,name:crm.crm_case_category_act_fund_all1
msgid "All Funds" msgid "All Funds"
msgstr "" msgstr "Todos los fondos"
#. module: crm #. module: crm
#: field:crm.case.section,calendar:0 #: field:crm.case.section,calendar:0
@ -3510,12 +3528,12 @@ msgstr "Calendario"
#. module: crm #. module: crm
#: model:crm.case.categ,name:crm.categ_job1 #: model:crm.case.categ,name:crm.categ_job1
msgid "Salesman" msgid "Salesman"
msgstr "" msgstr "Comercial"
#. module: crm #. module: crm
#: model:crm.case.section,name:crm.section_support_help #: model:crm.case.section,name:crm.section_support_help
msgid "HelpDesk" msgid "HelpDesk"
msgstr "" msgstr "Ayuda/Asistencia"
#. module: crm #. module: crm
#: field:crm.case,ref2:0 #: field:crm.case,ref2:0
@ -3532,12 +3550,12 @@ msgstr "Compra Ventas"
#: model:ir.actions.wizard,name:crm.wizard_crm_job_meeting_set #: model:ir.actions.wizard,name:crm.wizard_crm_job_meeting_set
#: model:ir.actions.wizard,name:crm.wizard_crm_phonecall_meeting_set #: model:ir.actions.wizard,name:crm.wizard_crm_phonecall_meeting_set
msgid "Schedule Meeting" msgid "Schedule Meeting"
msgstr "" msgstr "Programar reunión"
#. module: crm #. module: crm
#: model:crm.case.categ,name:crm.categ_fund4 #: model:crm.case.categ,name:crm.categ_fund4
msgid "Arts And Culture" msgid "Arts And Culture"
msgstr "" msgstr "Arte y cultura"
#. module: crm #. module: crm
#: model:crm.case.categ,name:crm.categ_phone2 #: model:crm.case.categ,name:crm.categ_phone2
@ -3545,7 +3563,7 @@ msgstr ""
#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0 #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0
#: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound #: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound
msgid "Outbound" msgid "Outbound"
msgstr "" msgstr "Saliente"
#. module: crm #. module: crm
#: code:addons/crm/crm.py:0 #: code:addons/crm/crm.py:0
@ -3556,7 +3574,7 @@ msgstr "Añadir al historial"
#. module: crm #. module: crm
#: view:crm.meeting:0 #: view:crm.meeting:0
msgid "Confirmed" msgid "Confirmed"
msgstr "" msgstr "Confirmado"
#. module: crm #. module: crm
#: selection:crm.segmentation,state:0 #: selection:crm.segmentation,state:0
@ -3568,7 +3586,7 @@ msgstr "No ejecutado"
#: wizard_field:crm.lead.opportunity_set,opportunity,probability:0 #: wizard_field:crm.lead.opportunity_set,opportunity,probability:0
#: wizard_field:crm.phonecall.opportunity_set,opportunity,probability:0 #: wizard_field:crm.phonecall.opportunity_set,opportunity,probability:0
msgid "Success Probability" msgid "Success Probability"
msgstr "" msgstr "Probabilidad de éxito"
#. module: crm #. module: crm
#: code:addons/crm/crm.py:0 #: code:addons/crm/crm.py:0
@ -3593,7 +3611,7 @@ msgstr "Demora después fecha del disparo"
#. module: crm #. module: crm
#: view:crm.lead:0 #: view:crm.lead:0
msgid "Lead Details" msgid "Lead Details"
msgstr "" msgstr "Detalles iniciativa"
#. module: crm #. module: crm
#: field:crm.case.rule,act_section_id:0 #: field:crm.case.rule,act_section_id:0
@ -3623,17 +3641,17 @@ msgstr "¡Debe indicar un Email de empresa para usar esta acción!"
#: wizard_view:crm.phonecall.opportunity_set,create_partner:0 #: wizard_view:crm.phonecall.opportunity_set,create_partner:0
#: wizard_view:crm.phonecall.partner_create,init:0 #: wizard_view:crm.phonecall.partner_create,init:0
msgid "You may have to verify that this partner does not exist already." msgid "You may have to verify that this partner does not exist already."
msgstr "" msgstr "Debería verificar que esta empresa no exista ya."
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
msgid "Qualication" msgid "Qualication"
msgstr "" msgstr "Cualificación"
#. module: crm #. module: crm
#: view:crm.meeting:0 #: view:crm.meeting:0
msgid "Change RRule" msgid "Change RRule"
msgstr "" msgstr "Cambiar regla"
#. module: crm #. module: crm
#: selection:crm.email.add.cc,name:0 #: selection:crm.email.add.cc,name:0
@ -3643,14 +3661,14 @@ msgstr ""
#: field:report.crm.case.section.categ2,user_id:0 #: field:report.crm.case.section.categ2,user_id:0
#: field:report.crm.case.section.stage,user_id:0 #: field:report.crm.case.section.stage,user_id:0
msgid "User" msgid "User"
msgstr "" msgstr "Usuario"
#. module: crm #. module: crm
#: model:ir.ui.menu,name:crm.menu_action_report_crm_case_lead_categ_categ2 #: model:ir.ui.menu,name:crm.menu_action_report_crm_case_lead_categ_categ2
#: model:ir.ui.menu,name:crm.menu_crm_case_section_categ_categ2_tree #: model:ir.ui.menu,name:crm.menu_crm_case_section_categ_categ2_tree
#: view:report.crm.case.section.categ.categ2:0 #: view:report.crm.case.section.categ.categ2:0
msgid "Cases by Section, Category and Type" msgid "Cases by Section, Category and Type"
msgstr "" msgstr "Casos por sección, categoría y tipo"
#. module: crm #. module: crm
#: selection:report.crm.case.section.categ.categ2,month:0 #: selection:report.crm.case.section.categ.categ2,month:0
@ -3658,12 +3676,12 @@ msgstr ""
#: selection:report.crm.case.section.categ2,month:0 #: selection:report.crm.case.section.categ2,month:0
#: selection:report.crm.case.section.stage,month:0 #: selection:report.crm.case.section.stage,month:0
msgid "November" msgid "November"
msgstr "" msgstr "Noviembre"
#. module: crm #. module: crm
#: model:crm.case.category2,name:crm.category_job2 #: model:crm.case.category2,name:crm.category_job2
msgid "Licenced" msgid "Licenced"
msgstr "" msgstr "Licenciado"
#. module: crm #. module: crm
#: field:crm.case.section,parent_id:0 #: field:crm.case.section,parent_id:0
@ -3679,7 +3697,7 @@ msgstr "Sección padre"
#: model:ir.actions.wizard,name:crm.wizard_crm_job_reschedule_phone_call #: model:ir.actions.wizard,name:crm.wizard_crm_job_reschedule_phone_call
#: model:ir.actions.wizard,name:crm.wizard_crm_opportunity_reschedule_phone_call #: model:ir.actions.wizard,name:crm.wizard_crm_opportunity_reschedule_phone_call
msgid "Schedule Phone Call" msgid "Schedule Phone Call"
msgstr "" msgstr "Planificar llamada telefónica"
#. module: crm #. module: crm
#: code:addons/crm/crm.py:0 #: code:addons/crm/crm.py:0
@ -3696,12 +3714,12 @@ msgstr ""
#: selection:report.crm.case.section.categ2,month:0 #: selection:report.crm.case.section.categ2,month:0
#: selection:report.crm.case.section.stage,month:0 #: selection:report.crm.case.section.stage,month:0
msgid "January" msgid "January"
msgstr "" msgstr "Enero"
#. module: crm #. module: crm
#: model:process.process,name:crm.process_process_contractprocess0 #: model:process.process,name:crm.process_process_contractprocess0
msgid "Contract" msgid "Contract"
msgstr "" msgstr "Contrato"
#. module: crm #. module: crm
#: field:crm.case.section,child_ids:0 #: field:crm.case.section,child_ids:0
@ -3716,7 +3734,7 @@ msgstr "Ingresos previstos"
#. module: crm #. module: crm
#: model:crm.case.categ,name:crm.categ_fund3 #: model:crm.case.categ,name:crm.categ_fund3
msgid "Healthcare" msgid "Healthcare"
msgstr "" msgstr "Servicios sanitarios"
#. module: crm #. module: crm
#: view:crm.case:0 #: view:crm.case:0
@ -3730,7 +3748,7 @@ msgstr ""
#: view:crm.phonecall:0 #: view:crm.phonecall:0
#: view:crm.phonecall.assign_wizard:0 #: view:crm.phonecall.assign_wizard:0
msgid "Assign" msgid "Assign"
msgstr "" msgstr "Asignar"
#. module: crm #. module: crm
#: field:crm.case,partner_address_id:0 #: field:crm.case,partner_address_id:0
@ -3740,12 +3758,12 @@ msgstr "Contacto empresa"
#. module: crm #. module: crm
#: model:crm.case.category2,name:crm.category_meet1 #: model:crm.case.category2,name:crm.category_meet1
msgid "Office" msgid "Office"
msgstr "" msgstr "Oficina"
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_crm_fundraising #: model:ir.model,name:crm.model_crm_fundraising
msgid "Fund Raising Cases" msgid "Fund Raising Cases"
msgstr "" msgstr "Casos de reunión de fondos"
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_crm_case_stage #: model:ir.model,name:crm.model_crm_case_stage
@ -3774,7 +3792,7 @@ msgstr "Cerrado"
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_crm_helpdesk_assign_wizard #: model:ir.model,name:crm.model_crm_helpdesk_assign_wizard
msgid "crm.helpdesk.assign_wizard" msgid "crm.helpdesk.assign_wizard"
msgstr "" msgstr "crm.asistencia.aistente_asignación"
#. module: crm #. module: crm
#: view:crm.case.rule:0 #: view:crm.case.rule:0
@ -3790,28 +3808,28 @@ msgstr "Código de sección"
#: wizard_field:crm.job.meeting_set,init,date:0 #: wizard_field:crm.job.meeting_set,init,date:0
#: wizard_field:crm.phonecall.meeting_set,init,date:0 #: wizard_field:crm.phonecall.meeting_set,init,date:0
msgid "Meeting date" msgid "Meeting date"
msgstr "" msgstr "Fecha reunión"
#. module: crm #. module: crm
#: selection:crm.meeting,class:0 #: selection:crm.meeting,class:0
msgid "CONFIDENTIAL" msgid "CONFIDENTIAL"
msgstr "" msgstr "CONFIDENCIAL"
#. module: crm #. module: crm
#: help:crm.case.rule,act_mail_body:0 #: help:crm.case.rule,act_mail_body:0
msgid "Content of mail" msgid "Content of mail"
msgstr "" msgstr "Contenido del correo"
#. module: crm #. module: crm
#: model:crm.case.stage,name:crm.stage_meet2 #: model:crm.case.stage,name:crm.stage_meet2
msgid "Not fixed" msgid "Not fixed"
msgstr "" msgstr "No corregido"
#. module: crm #. module: crm
#: model:crm.case.categ,name:crm.categ_lead3 #: model:crm.case.categ,name:crm.categ_lead3
#: model:crm.case.categ,name:crm.categ_oppor3 #: model:crm.case.categ,name:crm.categ_oppor3
msgid "Employee" msgid "Employee"
msgstr "" msgstr "Empleado"
#. module: crm #. module: crm
#: field:crm.case,email_from:0 #: field:crm.case,email_from:0
@ -3821,7 +3839,7 @@ msgstr "Email empresa"
#. module: crm #. module: crm
#: view:crm.case.rule:0 #: view:crm.case.rule:0
msgid "% = The '%' Character" msgid "% = The '%' Character"
msgstr "" msgstr "% = EL '%' caracter"
#. module: crm #. module: crm
#: view:crm.case:0 #: view:crm.case:0
@ -3842,12 +3860,12 @@ msgstr "Descripción"
#: selection:report.crm.case.section.categ2,month:0 #: selection:report.crm.case.section.categ2,month:0
#: selection:report.crm.case.section.stage,month:0 #: selection:report.crm.case.section.stage,month:0
msgid "May" msgid "May"
msgstr "" msgstr "Mayo"
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
msgid "Internal Notes" msgid "Internal Notes"
msgstr "" msgstr "Notas internas"
#. module: crm #. module: crm
#: help:crm.case.rule,act_remind_user:0 #: help:crm.case.rule,act_remind_user:0
@ -3867,7 +3885,7 @@ msgstr ""
#: view:crm.opportunity:0 #: view:crm.opportunity:0
#: wizard_field:crm.send.mail,init,cc:0 #: wizard_field:crm.send.mail,init,cc:0
msgid "CC" msgid "CC"
msgstr "" msgstr "CC"
#. module: crm #. module: crm
#: field:crm.segmentation.line,operator:0 #: field:crm.segmentation.line,operator:0
@ -3877,7 +3895,7 @@ msgstr "Obligatorio / Opcional"
#. module: crm #. module: crm
#: wizard_button:caldav.crm.import,init,open:0 #: wizard_button:caldav.crm.import,init,open:0
msgid "_Import" msgid "_Import"
msgstr "" msgstr "_Importar"
#. module: crm #. module: crm
#: code:addons/crm/crm.py:0 #: code:addons/crm/crm.py:0
@ -3910,14 +3928,14 @@ msgstr "Muy bajo"
#: selection:report.crm.case.section.categ2,month:0 #: selection:report.crm.case.section.categ2,month:0
#: selection:report.crm.case.section.stage,month:0 #: selection:report.crm.case.section.stage,month:0
msgid "February" msgid "February"
msgstr "" msgstr "Febrero"
#. module: crm #. module: crm
#: view:crm.phonecall:0 #: view:crm.phonecall:0
#: model:ir.actions.act_window,name:crm.crm_case_categ_meet_case #: model:ir.actions.act_window,name:crm.crm_case_categ_meet_case
#: model:ir.actions.act_window,name:crm.crm_case_categ_meet_create_partner #: model:ir.actions.act_window,name:crm.crm_case_categ_meet_create_partner
msgid "Schedule a Meeting" msgid "Schedule a Meeting"
msgstr "" msgstr "Planificar una reunión"
#. module: crm #. module: crm
#: view:crm.case.rule:0 #: view:crm.case.rule:0
@ -3937,7 +3955,7 @@ msgstr ""
#: wizard_view:crm.new.send.mail,init:0 #: wizard_view:crm.new.send.mail,init:0
#: wizard_view:crm.send.mail,init:0 #: wizard_view:crm.send.mail,init:0
msgid "Mass Mailing" msgid "Mass Mailing"
msgstr "" msgstr "Envío masivo de correo"
#. module: crm #. module: crm
#: view:crm.case.rule:0 #: view:crm.case.rule:0
@ -3950,22 +3968,22 @@ msgstr "Acciones de Email"
#: field:report.crm.case.section.categ2,name:0 #: field:report.crm.case.section.categ2,name:0
#: field:report.crm.case.section.stage,name:0 #: field:report.crm.case.section.stage,name:0
msgid "Year" msgid "Year"
msgstr "" msgstr "Año"
#. module: crm #. module: crm
#: model:crm.case.category2,name:crm.categ2_fund1 #: model:crm.case.category2,name:crm.categ2_fund1
msgid "Cash" msgid "Cash"
msgstr "" msgstr "Efectivo"
#. module: crm #. module: crm
#: view:crm.fundraising:0 #: view:crm.fundraising:0
msgid "Funds by Categories" msgid "Funds by Categories"
msgstr "" msgstr "Fondos por categorías"
#. module: crm #. module: crm
#: model:process.node,note:crm.process_node_leads0 #: model:process.node,note:crm.process_node_leads0
msgid "Very first contact with new prospect" msgid "Very first contact with new prospect"
msgstr "" msgstr "Primer contacto con nueva prospección"
#. module: crm #. module: crm
#: selection:report.crm.case.section.categ.categ2,month:0 #: selection:report.crm.case.section.categ.categ2,month:0
@ -3973,22 +3991,22 @@ msgstr ""
#: selection:report.crm.case.section.categ2,month:0 #: selection:report.crm.case.section.categ2,month:0
#: selection:report.crm.case.section.stage,month:0 #: selection:report.crm.case.section.stage,month:0
msgid "April" msgid "April"
msgstr "" msgstr "Abril"
#. module: crm #. module: crm
#: model:crm.case.stage,name:crm.stage_meet5 #: model:crm.case.stage,name:crm.stage_meet5
msgid "Future" msgid "Future"
msgstr "" msgstr "Futuro"
#. module: crm #. module: crm
#: wizard_field:caldav.crm.export,init,file_path:0 #: wizard_field:caldav.crm.export,init,file_path:0
msgid "Save ICS file" msgid "Save ICS file"
msgstr "" msgstr "Guardar archivo ICS"
#. module: crm #. module: crm
#: wizard_field:caldav.crm.subscribe,init,url_path:0 #: wizard_field:caldav.crm.subscribe,init,url_path:0
msgid "Provide path for remote calendar" msgid "Provide path for remote calendar"
msgstr "" msgstr "Provea una ruta para el calendario remoto"
#. module: crm #. module: crm
#: view:crm.case.log:0 #: view:crm.case.log:0
@ -4003,12 +4021,12 @@ msgstr "Condiciones sobre temporización"
#. module: crm #. module: crm
#: model:ir.model,name:crm.model_crm_helpdesk #: model:ir.model,name:crm.model_crm_helpdesk
msgid "Helpdesk Cases" msgid "Helpdesk Cases"
msgstr "" msgstr "Casos de asistencia"
#. module: crm #. module: crm
#: model:ir.actions.wizard,name:crm.wizard_crm_cal_export #: model:ir.actions.wizard,name:crm.wizard_crm_cal_export
msgid "Export ICS File" msgid "Export ICS File"
msgstr "" msgstr "Exportar archivo ICS"
#. module: crm #. module: crm
#: field:crm.case.rule,sequence:0 #: field:crm.case.rule,sequence:0
@ -4021,12 +4039,12 @@ msgstr "Secuencia"
#: wizard_view:caldav.crm.import,init:0 #: wizard_view:caldav.crm.import,init:0
#: wizard_field:caldav.crm.import,init,file_path:0 #: wizard_field:caldav.crm.import,init,file_path:0
msgid "Select ICS file" msgid "Select ICS file"
msgstr "" msgstr "Exportar archivo ICS"
#. module: crm #. module: crm
#: wizard_view:caldav.crm.import,display:0 #: wizard_view:caldav.crm.import,display:0
msgid "Import Message" msgid "Import Message"
msgstr "" msgstr "Importar mensaje"
#. module: crm #. module: crm
#: field:crm.segmentation.line,expr_name:0 #: field:crm.segmentation.line,expr_name:0
@ -4042,17 +4060,17 @@ msgstr "Casos por sección"
#. module: crm #. module: crm
#: view:crm.job:0 #: view:crm.job:0
msgid "New Jobs" msgid "New Jobs"
msgstr "" msgstr "Nuevos trabajos"
#. module: crm #. module: crm
#: field:crm.menu.config_wizard,fund:0 #: field:crm.menu.config_wizard,fund:0
msgid "Fund Raising Operations" msgid "Fund Raising Operations"
msgstr "" msgstr "Operaciones de obtención de fondos"
#. module: crm #. module: crm
#: model:crm.case.category2,name:crm.category_lead8 #: model:crm.case.category2,name:crm.category_lead8
msgid "Newsletter" msgid "Newsletter"
msgstr "" msgstr "Boletín de noticias"
#~ msgid "My Draft " #~ msgid "My Draft "
#~ msgstr "Mis borradores " #~ msgstr "Mis borradores "

View File

@ -222,6 +222,7 @@
</record> </record>
<menuitem name="Leads Analysis" id="menu_report_crm_leads_tree" <menuitem name="Leads Analysis" id="menu_report_crm_leads_tree"
groups="base.group_extended"
parent="base.next_id_64" action="action_report_crm_lead" sequence="3"/> parent="base.next_id_64" action="action_report_crm_lead" sequence="3"/>
<menuitem name="Opportunities Analysis" id="menu_report_crm_opportunities_tree" <menuitem name="Opportunities Analysis" id="menu_report_crm_opportunities_tree"

View File

@ -188,6 +188,7 @@
</record> </record>
<menuitem name="Phone Calls Analysis" <menuitem name="Phone Calls Analysis"
groups="base.group_extended"
action="action_report_crm_phonecall" action="action_report_crm_phonecall"
id="menu_report_crm_phonecalls_tree" parent="base.next_id_64" sequence="5"/> id="menu_report_crm_phonecalls_tree" parent="base.next_id_64" sequence="5"/>

View File

@ -7,5 +7,3 @@
"access_delivery_grid_line_manager","delivery.grid.line","model_delivery_grid_line","sale.group_sale_manager",1,1,1,1 "access_delivery_grid_line_manager","delivery.grid.line","model_delivery_grid_line","sale.group_sale_manager",1,1,1,1
"access_delivery_carrier_partner_manager","delivery.carrier partner_manager","model_delivery_carrier","base.group_partner_manager",1,0,0,0 "access_delivery_carrier_partner_manager","delivery.carrier partner_manager","model_delivery_carrier","base.group_partner_manager",1,0,0,0
"access_delivery_carrier_stock_worker","delivery.carrier stock_worker","model_delivery_carrier","stock.group_stock_user",1,0,0,0 "access_delivery_carrier_stock_worker","delivery.carrier stock_worker","model_delivery_carrier","stock.group_stock_user",1,0,0,0
"access_delivery_sale_order_manager","delivery.sale.order","model_delivery_sale_order","sale.group_sale_manager",1,1,1,1
"access_delivery_sale_order","delivery.sale.order","model_delivery_sale_order","sale.group_sale_user",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
7 access_delivery_grid_line_manager delivery.grid.line model_delivery_grid_line sale.group_sale_manager 1 1 1 1
8 access_delivery_carrier_partner_manager delivery.carrier partner_manager model_delivery_carrier base.group_partner_manager 1 0 0 0
9 access_delivery_carrier_stock_worker delivery.carrier stock_worker model_delivery_carrier stock.group_stock_user 1 0 0 0
access_delivery_sale_order_manager delivery.sale.order model_delivery_sale_order sale.group_sale_manager 1 1 1 1
access_delivery_sale_order delivery.sale.order model_delivery_sale_order sale.group_sale_user 1 0 0 0

View File

@ -19,5 +19,3 @@
"access_report_document_file_group_system","report.document.file group system","model_report_document_file","base.group_system",1,0,0,0 "access_report_document_file_group_system","report.document.file group system","model_report_document_file","base.group_system",1,0,0,0
"access_report_document_wall_group_document_manager","report.document.wall document manager","model_report_document_wall","document.group_document_manager",1,0,0,0 "access_report_document_wall_group_document_manager","report.document.wall document manager","model_report_document_wall","document.group_document_manager",1,0,0,0
"access_report_document_wall_group_system","report.document.wall group system","model_report_document_wall","base.group_system",1,0,0,0 "access_report_document_wall_group_system","report.document.wall group system","model_report_document_wall","base.group_system",1,0,0,0
"access_document_configuation","document.configuration document manager","model_document_configuration","document.group_document_manager",1,1,1,1
"access_document_configuation_system","document.configuration group system","model_document_configuration","base.group_system",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
19 access_report_document_file_group_system report.document.file group system model_report_document_file base.group_system 1 0 0 0
20 access_report_document_wall_group_document_manager report.document.wall document manager model_report_document_wall document.group_document_manager 1 0 0 0
21 access_report_document_wall_group_system report.document.wall group system model_report_document_wall base.group_system 1 0 0 0
access_document_configuation document.configuration document manager model_document_configuration document.group_document_manager 1 1 1 1
access_document_configuation_system document.configuration group system model_document_configuration base.group_system 1 1 1 1

View File

@ -1,6 +1,2 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_document_ftp_browse","document.ftp.browse document manager","model_document_ftp_browse","document.group_document_manager",1,1,1,1
"access_document_ftp_browse","document.ftp.browse group system","model_document_ftp_browse","base.group_system",1,1,1,1
"access_document_ftp_configuation","document.ftp.configuration document manager","model_document_ftp_configuration","document.group_document_manager",1,1,1,1
"access_document_ftp_configuation_system","document.ftp.configuration group system","model_document_ftp_configuration","base.group_system",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_document_ftp_browse document.ftp.browse document manager model_document_ftp_browse document.group_document_manager 1 1 1 1
access_document_ftp_browse document.ftp.browse group system model_document_ftp_browse base.group_system 1 1 1 1
access_document_ftp_configuation document.ftp.configuration document manager model_document_ftp_configuration document.group_document_manager 1 1 1 1
access_document_ftp_configuation_system document.ftp.configuration group system model_document_ftp_configuration base.group_system 1 1 1 1
2

View File

@ -1,4 +1,3 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_document_directory_ics_fields_all","document.directory.ics.fields all","model_document_directory_ics_fields",,1,0,0,0 "access_document_directory_ics_fields_all","document.directory.ics.fields all","model_document_directory_ics_fields",,1,0,0,0
"access_document_directory_ics_fields_manager","document.directory.ics.fields group system","model_document_directory_ics_fields","base.group_system",1,1,1,1 "access_document_directory_ics_fields_manager","document.directory.ics.fields group system","model_document_directory_ics_fields","base.group_system",1,1,1,1
"access_document_ics_crm_wizard","document.ics.crm.wizard","model_document_ics_crm_wizard","base.group_system",1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_document_directory_ics_fields_all document.directory.ics.fields all model_document_directory_ics_fields 1 0 0 0
3 access_document_directory_ics_fields_manager document.directory.ics.fields group system model_document_directory_ics_fields base.group_system 1 1 1 1
access_document_ics_crm_wizard document.ics.crm.wizard model_document_ics_crm_wizard base.group_system 1 1 1 1

View File

@ -2,6 +2,4 @@
"access_email_template_engines","email_template.engines","model_email_template_engines","email_template.res_groups_email_template_admin",1,1,1,1 "access_email_template_engines","email_template.engines","model_email_template_engines","email_template.res_groups_email_template_admin",1,1,1,1
"access_email_template_account","email_template.account","model_email_template_account","email_template.res_groups_email_template_admin",1,1,1,1 "access_email_template_account","email_template.account","model_email_template_account","email_template.res_groups_email_template_admin",1,1,1,1
"access_email_template","email.template","model_email_template","email_template.res_groups_email_template_admin",1,1,1,1 "access_email_template","email.template","model_email_template","email_template.res_groups_email_template_admin",1,1,1,1
"access_email_template_preview","email_template.preview","model_email_template_preview","email_template.res_groups_email_template_admin",1,1,1,1
"access_email_template_mailbox","email_template.mailbox","model_email_template_mailbox","email_template.res_groups_email_template_admin",1,1,1,1 "access_email_template_mailbox","email_template.mailbox","model_email_template_mailbox","email_template.res_groups_email_template_admin",1,1,1,1
"access_email_template_send_wizard","email_template.send.wizard","model_email_template_send_wizard","email_template.res_groups_email_template_admin",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_email_template_engines email_template.engines model_email_template_engines email_template.res_groups_email_template_admin 1 1 1 1
3 access_email_template_account email_template.account model_email_template_account email_template.res_groups_email_template_admin 1 1 1 1
4 access_email_template email.template model_email_template email_template.res_groups_email_template_admin 1 1 1 1
access_email_template_preview email_template.preview model_email_template_preview email_template.res_groups_email_template_admin 1 1 1 1
5 access_email_template_mailbox email_template.mailbox model_email_template_mailbox email_template.res_groups_email_template_admin 1 1 1 1
access_email_template_send_wizard email_template.send.wizard model_email_template_send_wizard email_template.res_groups_email_template_admin 1 1 1 1

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: event #. module: event

View File

@ -7,4 +7,3 @@
"access_hr_department_manager","hr.department.manager","model_hr_department","hr.group_hr_manager",1,1,1,1 "access_hr_department_manager","hr.department.manager","model_hr_department","hr.group_hr_manager",1,1,1,1
"access_hr_employee_marital_status","hr.employee.marital.status","model_hr_employee_marital_status","hr.group_hr_user",1,1,1,1 "access_hr_employee_marital_status","hr.employee.marital.status","model_hr_employee_marital_status","hr.group_hr_user",1,1,1,1
"access_hr_job","hr.job","model_hr_job","hr.group_hr_user",1,0,0,0 "access_hr_job","hr.job","model_hr_job","hr.group_hr_user",1,0,0,0
"access_hr_installer","hr.installer","model_hr_installer","base.group_system",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
7 access_hr_department_manager hr.department.manager model_hr_department hr.group_hr_manager 1 1 1 1
8 access_hr_employee_marital_status hr.employee.marital.status model_hr_employee_marital_status hr.group_hr_user 1 1 1 1
9 access_hr_job hr.job model_hr_job hr.group_hr_user 1 0 0 0
access_hr_installer hr.installer model_hr_installer base.group_system 1 1 1 1

View File

@ -6,4 +6,3 @@
"access_hr_evaluation_plan_phase_manager","hr_evaluation.plan.phase","model_hr_evaluation_plan_phase","hr.group_hr_manager",1,1,1,1 "access_hr_evaluation_plan_phase_manager","hr_evaluation.plan.phase","model_hr_evaluation_plan_phase","hr.group_hr_manager",1,1,1,1
"access_hr_evaluation_interview","hr.evaluation.interview","model_hr_evaluation_interview","hr.group_hr_user",1,1,1,1 "access_hr_evaluation_interview","hr.evaluation.interview","model_hr_evaluation_interview","hr.group_hr_user",1,1,1,1
"access_hr_evaluation_report","hr.evaluation.report","model_hr_evaluation_report","hr.group_hr_manager",1,0,0,0 "access_hr_evaluation_report","hr.evaluation.report","model_hr_evaluation_report","hr.group_hr_manager",1,0,0,0
"access_hr_evaluation_reminder","hr.evaluation.reminder","model_hr_evaluation_reminder","hr.group_hr_user",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
6 access_hr_evaluation_plan_phase_manager hr_evaluation.plan.phase model_hr_evaluation_plan_phase hr.group_hr_manager 1 1 1 1
7 access_hr_evaluation_interview hr.evaluation.interview model_hr_evaluation_interview hr.group_hr_user 1 1 1 1
8 access_hr_evaluation_report hr.evaluation.report model_hr_evaluation_report hr.group_hr_manager 1 0 0 0
access_hr_evaluation_reminder hr.evaluation.reminder model_hr_evaluation_reminder hr.group_hr_user 1 1 1 1

View File

@ -9,4 +9,3 @@
"access_available_holidays_report","hr.available.holidays.report","model_available_holidays_report","hr.group_hr_manager",1,1,1,1 "access_available_holidays_report","hr.available.holidays.report","model_available_holidays_report","hr.group_hr_manager",1,1,1,1
"access_hr_holidays_report_user","hr.holidays.report","model_hr_holidays_report","hr.group_hr_user",1,0,0,0 "access_hr_holidays_report_user","hr.holidays.report","model_hr_holidays_report","hr.group_hr_user",1,0,0,0
"access_available_holidays_report_user","hr.available.holidays.report","model_available_holidays_report","hr.group_hr_user",1,0,0,0 "access_available_holidays_report_user","hr.available.holidays.report","model_available_holidays_report","hr.group_hr_user",1,0,0,0
"access_hr_holidays_summary_dept","hr.holidays.summary.dept","model_hr_holidays_summary_dept","hr.group_hr_manager",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
9 access_available_holidays_report hr.available.holidays.report model_available_holidays_report hr.group_hr_manager 1 1 1 1
10 access_hr_holidays_report_user hr.holidays.report model_hr_holidays_report hr.group_hr_user 1 0 0 0
11 access_available_holidays_report_user hr.available.holidays.report model_available_holidays_report hr.group_hr_user 1 0 0 0
access_hr_holidays_summary_dept hr.holidays.summary.dept model_hr_holidays_summary_dept hr.group_hr_manager 1 1 1 1

View File

@ -2,8 +2,5 @@
"access_hr_analytic_timesheet","hr.analytic.timesheet","model_hr_analytic_timesheet","hr.group_hr_user",1,1,1,1 "access_hr_analytic_timesheet","hr.analytic.timesheet","model_hr_analytic_timesheet","hr.group_hr_user",1,1,1,1
"access_hr_account_analytic_line","account.account.analytic.line","account.model_account_analytic_line","hr.group_hr_user",1,1,1,0 "access_hr_account_analytic_line","account.account.analytic.line","account.model_account_analytic_line","hr.group_hr_user",1,1,1,0
"access_account_analytic_journal","account.account.analytic.journal","account.model_account_analytic_journal","hr.group_hr_user",1,0,0,0 "access_account_analytic_journal","account.account.analytic.journal","account.model_account_analytic_journal","hr.group_hr_user",1,0,0,0
"access_hr_sign_in_project","hr.sign.in.project","model_hr_sign_in_project","hr.group_hr_user",1,1,1,1
"access_hr_sign_out_project","hr.sign.out.project","model_hr_sign_out_project","hr.group_hr_user",1,1,1,1
"access_hr_analytal_timesheet_employee","hr.analytical.timesheet.employee","model_hr_analytical_timesheet_employee","hr.group_hr_manager",1,1,1,1
"access_hr_analytal_timesheet_user","hr.analytical.timesheet.user","model_hr_analytical_timesheet_users","hr.group_hr_user",1,1,1,1 "access_hr_analytal_timesheet_user","hr.analytical.timesheet.user","model_hr_analytical_timesheet_users","hr.group_hr_user",1,1,1,1
"access_hr_timesheet_report","hr.timesheet.report","model_hr_timesheet_report","hr.group_hr_manager",1,0,0,0 "access_hr_timesheet_report","hr.timesheet.report","model_hr_timesheet_report","hr.group_hr_manager",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_hr_analytic_timesheet hr.analytic.timesheet model_hr_analytic_timesheet hr.group_hr_user 1 1 1 1
3 access_hr_account_analytic_line account.account.analytic.line account.model_account_analytic_line hr.group_hr_user 1 1 1 0
4 access_account_analytic_journal account.account.analytic.journal account.model_account_analytic_journal hr.group_hr_user 1 0 0 0
access_hr_sign_in_project hr.sign.in.project model_hr_sign_in_project hr.group_hr_user 1 1 1 1
access_hr_sign_out_project hr.sign.out.project model_hr_sign_out_project hr.group_hr_user 1 1 1 1
access_hr_analytal_timesheet_employee hr.analytical.timesheet.employee model_hr_analytical_timesheet_employee hr.group_hr_manager 1 1 1 1
5 access_hr_analytal_timesheet_user hr.analytical.timesheet.user model_hr_analytical_timesheet_users hr.group_hr_user 1 1 1 1
6 access_hr_timesheet_report hr.timesheet.report model_hr_timesheet_report hr.group_hr_manager 1 0 0 0

View File

@ -4,6 +4,5 @@
"access_idea_vote","idea.vote","model_idea_vote","base.group_user",1,1,1,1 "access_idea_vote","idea.vote","model_idea_vote","base.group_user",1,1,1,1
"access_idea_vote_stat","idea.vote.stat","model_idea_vote_stat","base.group_user",1,0,0,0 "access_idea_vote_stat","idea.vote.stat","model_idea_vote_stat","base.group_user",1,0,0,0
"access_idea_category_system","idea.category system","model_idea_category","base.group_system",1,1,1,1 "access_idea_category_system","idea.category system","model_idea_category","base.group_system",1,1,1,1
"idea_post_vote","idea.post.vote","model_idea_post_vote","base.group_user",1,1,1,1
"access_idea_select","idea.select","model_idea_select","base.group_user",1,1,1,1 "access_idea_select","idea.select","model_idea_select","base.group_user",1,1,1,1
"access_idea_comment","idea.comment","model_idea_comment","base.group_system",1,1,1,1 "access_idea_comment","idea.comment","model_idea_comment","base.group_system",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
4 access_idea_vote idea.vote model_idea_vote base.group_user 1 1 1 1
5 access_idea_vote_stat idea.vote.stat model_idea_vote_stat base.group_user 1 0 0 0
6 access_idea_category_system idea.category system model_idea_category base.group_system 1 1 1 1
idea_post_vote idea.post.vote model_idea_post_vote base.group_user 1 1 1 1
7 access_idea_select idea.select model_idea_select base.group_user 1 1 1 1
8 access_idea_comment idea.comment model_idea_comment base.group_system 1 1 1 1

View File

@ -1,2 +1 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_knowledge_installer","knowledge.installer","model_knowledge_installer",base.group_system,1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_knowledge_installer knowledge.installer model_knowledge_installer base.group_system 1 1 1 1

View File

@ -1,6 +1 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_vat_listing_clients","vat.listing.clients","model_vat_listing_clients",account.group_account_user,1,1,1,1
"access_partner_vat_intra","partner.vat.intra","model_partner_vat_intra",account.group_account_user,1,1,1,1
"access_partner_vat","partner.vat","model_partner_vat",account.group_account_user,1,1,1,1
"access_partner_vat_list","partner.vat.list","model_partner_vat_list",account.group_account_user,1,1,1,1
"access_l1on_be_vat_declaration","l1on_be.vat.declaration","model_l1on_be_vat_declaration",account.group_account_user,1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_vat_listing_clients vat.listing.clients model_vat_listing_clients account.group_account_user 1 1 1 1
access_partner_vat_intra partner.vat.intra model_partner_vat_intra account.group_account_user 1 1 1 1
access_partner_vat partner.vat model_partner_vat account.group_account_user 1 1 1 1
access_partner_vat_list partner.vat.list model_partner_vat_list account.group_account_user 1 1 1 1
access_l1on_be_vat_declaration l1on_be.vat.declaration model_l1on_be_vat_declaration account.group_account_user 1 1 1 1

View File

@ -1,3 +1 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"account_journal_todo","account.journal.todo","model_account_journal_todo","base.group_system",1,1,1,1
"account_journal_todo_erp","account.journa.todo","model_account_journal_todo","base.group_erp_manager",1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
account_journal_todo account.journal.todo model_account_journal_todo base.group_system 1 1 1 1
account_journal_todo_erp account.journa.todo model_account_journal_todo base.group_erp_manager 1 1 1 1

View File

@ -1,3 +1 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"account_tax_todo","account.tax.template.todo","model_account_tax_template_todo","base.group_system",1,1,1,1
"account_tax_todo_erp","account.tax.template.todo","model_account_tax_template_todo","base.group_erp_manager",1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
account_tax_todo account.tax.template.todo model_account_tax_template_todo base.group_system 1 1 1 1
account_tax_todo_erp account.tax.template.todo model_account_tax_template_todo base.group_erp_manager 1 1 1 1

View File

@ -5,6 +5,3 @@
"access_lunch_cashmove","lunch.cashmove","model_lunch_cashmove","base.group_user",1,1,1,1 "access_lunch_cashmove","lunch.cashmove","model_lunch_cashmove","base.group_user",1,1,1,1
"access_lunch_order","lunch.order","model_lunch_order","base.group_user",1,1,1,1 "access_lunch_order","lunch.order","model_lunch_order","base.group_user",1,1,1,1
"access_report_lunch_amount","report.lunch.amount","model_report_lunch_amount","base.group_user",1,1,1,1 "access_report_lunch_amount","report.lunch.amount","model_report_lunch_amount","base.group_user",1,1,1,1
"lunch_order_confirm ","lunch.order.confirm","model_lunch_order_confirm","base.group_user",1,1,1,1
"lunch_order_cancel","lunch.order.cancel","model_lunch_order_cancel","base.group_user",1,1,1,1
"lunch_cashbox_clean","lunch.cashbox.clean","model_lunch_cashbox_clean","base.group_user",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
5 access_lunch_cashmove lunch.cashmove model_lunch_cashmove base.group_user 1 1 1 1
6 access_lunch_order lunch.order model_lunch_order base.group_user 1 1 1 1
7 access_report_lunch_amount report.lunch.amount model_report_lunch_amount base.group_user 1 1 1 1
lunch_order_confirm lunch.order.confirm model_lunch_order_confirm base.group_user 1 1 1 1
lunch_order_cancel lunch.order.cancel model_lunch_order_cancel base.group_user 1 1 1 1
lunch_cashbox_clean lunch.cashbox.clean model_lunch_cashbox_clean base.group_user 1 1 1 1

View File

@ -235,19 +235,20 @@ class mailgate_tool(osv.osv_memory):
if message_forward: if message_forward:
# TODO: we need an interface for this for all types of objects, not just leads # TODO: we need an interface for this for all types of objects, not just leads
if hasattr(res, 'section'): if hasattr(res, 'section_id'):
del msg['reply-to'] del msg['reply-to']
msg['reply-to'] = res.section.email_from msg['reply-to'] = res.section_id.reply_to
if not tools.misc._email_send(msg, openobject_id=res_id) and email_error: smtp_from = self.to_email(msg['from'])
if not tools.misc._email_send(smtp_from, message_forward, msg, openobject_id=res.id) and email_error:
subj = msg['subject'] subj = msg['subject']
del msg['subject'], msg['to'], msg['cc'], msg['bcc'] del msg['subject'], msg['to'], msg['cc'], msg['bcc']
msg['subject'] = '[OpenERP-Forward-Failed] %s' % subj msg['subject'] = '[OpenERP-Forward-Failed] %s' % subj
msg['to'] = email_error msg['to'] = email_error
tools.misc._email_send(msg, openobject_id=res_id) tools.misc._email_send(smtp_from, self.to_email(email_error), msg, openobject_id=res.id)
def process_email(self, cr, uid, model, message, attach=True, context=None): def process_email(self, cr, uid, model, message, attach=True, context=None):
"""This function Processes email and create record for given OpenERP model """This function Processes email and create record for given OpenERP model
@param self: The object pointer @param self: The object pointer
@param cr: the current row, from the database cursor, @param cr: the current row, from the database cursor,
@param uid: the current users ID for security checks, @param uid: the current users ID for security checks,

View File

@ -1,3 +1,2 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_marketing_installer","marketing.installer","model_marketing_installer","base.group_system",1,1,1,1
"access_res_config_installer","access_marketing_installer","base.model_res_config_installer","base.group_system",1,1,1,1 "access_res_config_installer","access_marketing_installer","base.model_res_config_installer","base.group_system",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_marketing_installer marketing.installer model_marketing_installer base.group_system 1 1 1 1
2 access_res_config_installer access_marketing_installer base.model_res_config_installer base.group_system 1 1 1 1

View File

@ -2,5 +2,3 @@
"access_membership_membership_line_partner_manager","membership.membership_line partner_manager","model_membership_membership_line","base.group_partner_manager",1,1,1,1 "access_membership_membership_line_partner_manager","membership.membership_line partner_manager","model_membership_membership_line","base.group_partner_manager",1,1,1,1
"access_membership_membership_line","membership.membership_line","model_membership_membership_line",,1,0,0,0 "access_membership_membership_line","membership.membership_line","model_membership_membership_line",,1,0,0,0
"access_report_membership","report.membership","model_report_membership","base.group_partner_manager",1,0,0,0 "access_report_membership","report.membership","model_report_membership","base.group_partner_manager",1,0,0,0
"access_membership_invoice","membership.invoice","model_membership_invoice",,1,1,1,1
"access_membership_unpaid_invoice","membership.unpaid.invoice","model_membership_unpaid_invoice",,1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_membership_membership_line_partner_manager membership.membership_line partner_manager model_membership_membership_line base.group_partner_manager 1 1 1 1
3 access_membership_membership_line membership.membership_line model_membership_membership_line 1 0 0 0
4 access_report_membership report.membership model_report_membership base.group_partner_manager 1 0 0 0
access_membership_invoice membership.invoice model_membership_invoice 1 1 1 1
access_membership_unpaid_invoice membership.unpaid.invoice model_membership_unpaid_invoice 1 0 0 0

View File

@ -24,11 +24,6 @@
"access_hr_timesheet_group_mrp_worker","resource.calendar mrp_worker","resource.model_resource_calendar","mrp.group_mrp_user",1,0,0,0 "access_hr_timesheet_group_mrp_worker","resource.calendar mrp_worker","resource.model_resource_calendar","mrp.group_mrp_user",1,0,0,0
"access_procurement_stock_worker","procurement.order stock_worker","model_procurement_order","stock.group_stock_user",1,1,1,1 "access_procurement_stock_worker","procurement.order stock_worker","model_procurement_order","stock.group_stock_user",1,1,1,1
"access_mrp_production_stock_worker","mrp.production stock_worker","model_mrp_production","stock.group_stock_user",1,0,0,0 "access_mrp_production_stock_worker","mrp.production stock_worker","model_mrp_production","stock.group_stock_user",1,0,0,0
"access_mrp_installer","mrp.installer","model_mrp_installer","base.group_system",1,1,1,1
"access_mrp_product_produce","mrp.product.produce","model_mrp_product_produce","mrp.group_mrp_user",1,1,1,1
"access_mrp_change_production_qty","change.production.qty","model_change_production_qty","mrp.group_mrp_user",1,0,0,0
"access_mrp_production_order","mrp.production.order","model_mrp_production_order","mrp.group_mrp_user",1,0,0,0 "access_mrp_production_order","mrp.production.order","model_mrp_production_order","mrp.group_mrp_user",1,0,0,0
"access_report_workcenter_load","report.workcenter.load","model_report_workcenter_load","mrp.group_mrp_manager",1,0,0,0 "access_report_workcenter_load","report.workcenter.load","model_report_workcenter_load","mrp.group_mrp_manager",1,0,0,0
"access_report_mrp_inout","report.mrp.inout","model_report_mrp_inout","mrp.group_mrp_manager",1,0,0,0 "access_report_mrp_inout","report.mrp.inout","model_report_mrp_inout","mrp.group_mrp_manager",1,0,0,0
"access_mrp_product_price","mrp.product_price","model_mrp_product_price","mrp.group_mrp_manager",1,0,0,0
"access_mrp_workcenter_load","mrp.workcenter.load","model_mrp_workcenter_load","mrp.group_mrp_manager",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
24 access_hr_timesheet_group_mrp_worker resource.calendar mrp_worker resource.model_resource_calendar mrp.group_mrp_user 1 0 0 0
25 access_procurement_stock_worker procurement.order stock_worker model_procurement_order stock.group_stock_user 1 1 1 1
26 access_mrp_production_stock_worker mrp.production stock_worker model_mrp_production stock.group_stock_user 1 0 0 0
access_mrp_installer mrp.installer model_mrp_installer base.group_system 1 1 1 1
access_mrp_product_produce mrp.product.produce model_mrp_product_produce mrp.group_mrp_user 1 1 1 1
access_mrp_change_production_qty change.production.qty model_change_production_qty mrp.group_mrp_user 1 0 0 0
27 access_mrp_production_order mrp.production.order model_mrp_production_order mrp.group_mrp_user 1 0 0 0
28 access_report_workcenter_load report.workcenter.load model_report_workcenter_load mrp.group_mrp_manager 1 0 0 0
29 access_report_mrp_inout report.mrp.inout model_report_mrp_inout mrp.group_mrp_manager 1 0 0 0
access_mrp_product_price mrp.product_price model_mrp_product_price mrp.group_mrp_manager 1 0 0 0
access_mrp_workcenter_load mrp.workcenter.load model_mrp_workcenter_load mrp.group_mrp_manager 1 0 0 0

View File

@ -5,7 +5,3 @@
"access_mrp_repair_line_manager","MRP Repair Line manager","model_mrp_repair_line","stock.group_stock_manager",1,1,1,1 "access_mrp_repair_line_manager","MRP Repair Line manager","model_mrp_repair_line","stock.group_stock_manager",1,1,1,1
"access_mrp_repair_fee_user","MRP Repair Fee user","model_mrp_repair_fee","stock.group_stock_user",1,0,0,0 "access_mrp_repair_fee_user","MRP Repair Fee user","model_mrp_repair_fee","stock.group_stock_user",1,0,0,0
"access_mrp_repair_fee_manager","MRP Repair Fee manager","model_mrp_repair_fee","stock.group_stock_manager",1,1,1,1 "access_mrp_repair_fee_manager","MRP Repair Fee manager","model_mrp_repair_fee","stock.group_stock_manager",1,1,1,1
"access_mrp_repair_cancel_user","mrp.repair.cancel user","model_mrp_repair_cancel","stock.group_stock_user",1,0,0,0
"access_mrp_repair_cancel_manager","mrp.repair.cancel manager","model_mrp_repair_cancel","stock.group_stock_manager",1,1,1,1
"access_mrp_repair_make_invoice_user","mrp.repair.make_invoice user","model_mrp_repair_make_invoice","stock.group_stock_user",1,0,0,0
"access_mrp_repair_make_invoice_manager","mrp.repair.make_invoice manager","model_mrp_repair_make_invoice","stock.group_stock_manager",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
5 access_mrp_repair_line_manager MRP Repair Line manager model_mrp_repair_line stock.group_stock_manager 1 1 1 1
6 access_mrp_repair_fee_user MRP Repair Fee user model_mrp_repair_fee stock.group_stock_user 1 0 0 0
7 access_mrp_repair_fee_manager MRP Repair Fee manager model_mrp_repair_fee stock.group_stock_manager 1 1 1 1
access_mrp_repair_cancel_user mrp.repair.cancel user model_mrp_repair_cancel stock.group_stock_user 1 0 0 0
access_mrp_repair_cancel_manager mrp.repair.cancel manager model_mrp_repair_cancel stock.group_stock_manager 1 1 1 1
access_mrp_repair_make_invoice_user mrp.repair.make_invoice user model_mrp_repair_make_invoice stock.group_stock_user 1 0 0 0
access_mrp_repair_make_invoice_manager mrp.repair.make_invoice manager model_mrp_repair_make_invoice stock.group_stock_manager 1 1 1 1

View File

@ -1,9 +1,2 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"olap_query_logs_clear","olap.query.logs.clear","model_olap_query_logs_clear","base.group_user",1,1,1,1
"olap_query_logs_clear_msg","olap.query.logs.clear.msg","model_olap_query_logs_clear_msg","base.group_user",1,1,1,1
"olap_load_column","olap.load.column","model_olap_load_column","base.group_user",1,1,1,1
"olap_saved_query","olap.saved.query","model_olap_saved_query","base.group_user",1,1,1,1 "olap_saved_query","olap.saved.query","model_olap_saved_query","base.group_user",1,1,1,1
"olap_warehouse_wizard","olap.warehouse.wizard","model_olap_warehouse_wizard","base.group_user",1,1,1,1
"olap_parameters_config_wizard","olap.parameters.config.wizard","model_olap_parameters_config_wizard","base.group_user",1,1,1,1
"olap_bi_load_db_wizard","bi.load.db.wizard ","model_bi_load_db_wizard","base.group_user",1,1,1,1
"olap_bi_auto_configure_wizard","bi.auto.configure.wizard","model_bi_auto_configure_wizard","base.group_user",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
olap_query_logs_clear olap.query.logs.clear model_olap_query_logs_clear base.group_user 1 1 1 1
olap_query_logs_clear_msg olap.query.logs.clear.msg model_olap_query_logs_clear_msg base.group_user 1 1 1 1
olap_load_column olap.load.column model_olap_load_column base.group_user 1 1 1 1
2 olap_saved_query olap.saved.query model_olap_saved_query base.group_user 1 1 1 1
olap_warehouse_wizard olap.warehouse.wizard model_olap_warehouse_wizard base.group_user 1 1 1 1
olap_parameters_config_wizard olap.parameters.config.wizard model_olap_parameters_config_wizard base.group_user 1 1 1 1
olap_bi_load_db_wizard bi.load.db.wizard model_bi_load_db_wizard base.group_user 1 1 1 1
olap_bi_auto_configure_wizard bi.auto.configure.wizard model_bi_auto_configure_wizard base.group_user 1 1 1 1

View File

@ -23,6 +23,7 @@ from osv import osv
from osv import fields from osv import fields
import urllib,re import urllib,re
import random, time import random, time
from tools.translate import _
def geo_find(addr): def geo_find(addr):
import urllib,re import urllib,re
@ -82,7 +83,7 @@ class crm_lead(osv.osv):
if lead.partner_assigned_id.address: if lead.partner_assigned_id.address:
email = lead.partner_assigned_id.address[0].email email = lead.partner_assigned_id.address[0].email
if not email: if not email:
raise osv.except_osv(_('Error !'), _('No partner assigned to this opportunity')) raise osv.except_osv(_('Error !'), _('No email on the partner assigned to this opportunity'))
forward = fobj.create(cr, uid, { forward = fobj.create(cr, uid, {
'name': 'email', 'name': 'email',
'history': 'whole', 'history': 'whole',

View File

@ -18,24 +18,4 @@
"access_report_sales_by_margin_pos","report.sales.by.margin.pos","model_report_sales_by_margin_pos","point_of_sale.group_pos_user",1,0,0,0 "access_report_sales_by_margin_pos","report.sales.by.margin.pos","model_report_sales_by_margin_pos","point_of_sale.group_pos_user",1,0,0,0
"access_report_sales_by_margin_pos_month","report.sales.by.margin.pos.month","model_report_sales_by_margin_pos_month","point_of_sale.group_pos_user",1,0,0,0 "access_report_sales_by_margin_pos_month","report.sales.by.margin.pos.month","model_report_sales_by_margin_pos_month","point_of_sale.group_pos_user",1,0,0,0
"access_singer_statement","singer.statement","model_singer_statement","point_of_sale.group_pos_user",1,0,0,0 "access_singer_statement","singer.statement","model_singer_statement","point_of_sale.group_pos_user",1,0,0,0
"access_add_product","pos.add.product ","model_pos_add_product","point_of_sale.group_pos_user",1,0,0,0
"access_pos_confirm","pos.confirm","model_pos_confirm","point_of_sale.group_pos_user",1,0,0,0
"access_pos_discount","pos.discount","model_pos_discount","point_of_sale.group_pos_user",1,0,0,0
"access_pos_get_sale","pos.get.sale","model_pos_get_sale","point_of_sale.group_pos_user",1,0,0,0
"access_pos_close_statement","pos.open.statement","model_pos_open_statement","point_of_sale.group_pos_user",1,0,0,0
"access_pos_open_statement","pos.close.statement","model_pos_close_statement","point_of_sale.group_pos_user",1,0,0,0
"acess_pos_box_entries ","pos.box.entries ","model_pos_box_entries","point_of_sale.group_pos_user",1,0,0,0
"access_pos_box_out","pos.box.out","model_pos_box_out","point_of_sale.group_pos_user",1,0,0,0
"access_pos_details ","pos.details ","model_pos_details","point_of_sale.group_pos_user",1,0,0,0
"access_pos_sale_user","pos.sale.user","model_pos_sale_user","point_of_sale.group_pos_user",1,0,0,0
"access_pos_sale_user_today","pos.sales.user.today","model_pos_sales_user_today","point_of_sale.group_pos_user",1,0,0,0
"access_pos_sales_user_today_current_user","pos.sales.user.today.current_user","model_pos_sales_user_today_current_user","point_of_sale.group_pos_user",1,0,0,0
"access_all_closed_cashbox_of_the_day","all.closed.cashbox.of.the.day","model_all_closed_cashbox_of_the_day","point_of_sale.group_pos_user",1,0,0,0
"access_pos_receipt","pos.receipt ","model_pos_receipt","point_of_sale.group_pos_user",1,0,0,0
"access_pos_payment_report_user","pos.payment.report.user","model_pos_payment_report_user","point_of_sale.group_pos_user",1,0,0,0
"access_pos_payment_report_date ","pos.payment.report.date ","model_pos_payment_report_date","point_of_sale.group_pos_user",1,0,0,0
"access_pos_make_payment","pos.make.payment","model_pos_make_payment","point_of_sale.group_pos_user",1,0,0,0
"access_pos_scan_product","pos.scan.product","model_pos_scan_product","point_of_sale.group_pos_user",1,0,0,0
"access_pos_payment_report","pos.payment.report","model_pos_payment_report","point_of_sale.group_pos_user",1,0,0,0
"access_report_pos_order","report.pos.order","model_report_pos_order","point_of_sale.group_pos_user",1,0,0,0 "access_report_pos_order","report.pos.order","model_report_pos_order","point_of_sale.group_pos_user",1,0,0,0
"access_pos_return","pos.return","model_pos_return","point_of_sale.group_pos_user",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
18 access_report_sales_by_margin_pos report.sales.by.margin.pos model_report_sales_by_margin_pos point_of_sale.group_pos_user 1 0 0 0
19 access_report_sales_by_margin_pos_month report.sales.by.margin.pos.month model_report_sales_by_margin_pos_month point_of_sale.group_pos_user 1 0 0 0
20 access_singer_statement singer.statement model_singer_statement point_of_sale.group_pos_user 1 0 0 0
access_add_product pos.add.product model_pos_add_product point_of_sale.group_pos_user 1 0 0 0
access_pos_confirm pos.confirm model_pos_confirm point_of_sale.group_pos_user 1 0 0 0
access_pos_discount pos.discount model_pos_discount point_of_sale.group_pos_user 1 0 0 0
access_pos_get_sale pos.get.sale model_pos_get_sale point_of_sale.group_pos_user 1 0 0 0
access_pos_close_statement pos.open.statement model_pos_open_statement point_of_sale.group_pos_user 1 0 0 0
access_pos_open_statement pos.close.statement model_pos_close_statement point_of_sale.group_pos_user 1 0 0 0
acess_pos_box_entries pos.box.entries model_pos_box_entries point_of_sale.group_pos_user 1 0 0 0
access_pos_box_out pos.box.out model_pos_box_out point_of_sale.group_pos_user 1 0 0 0
access_pos_details pos.details model_pos_details point_of_sale.group_pos_user 1 0 0 0
access_pos_sale_user pos.sale.user model_pos_sale_user point_of_sale.group_pos_user 1 0 0 0
access_pos_sale_user_today pos.sales.user.today model_pos_sales_user_today point_of_sale.group_pos_user 1 0 0 0
access_pos_sales_user_today_current_user pos.sales.user.today.current_user model_pos_sales_user_today_current_user point_of_sale.group_pos_user 1 0 0 0
access_all_closed_cashbox_of_the_day all.closed.cashbox.of.the.day model_all_closed_cashbox_of_the_day point_of_sale.group_pos_user 1 0 0 0
access_pos_receipt pos.receipt model_pos_receipt point_of_sale.group_pos_user 1 0 0 0
access_pos_payment_report_user pos.payment.report.user model_pos_payment_report_user point_of_sale.group_pos_user 1 0 0 0
access_pos_payment_report_date pos.payment.report.date model_pos_payment_report_date point_of_sale.group_pos_user 1 0 0 0
access_pos_make_payment pos.make.payment model_pos_make_payment point_of_sale.group_pos_user 1 0 0 0
access_pos_scan_product pos.scan.product model_pos_scan_product point_of_sale.group_pos_user 1 0 0 0
access_pos_payment_report pos.payment.report model_pos_payment_report point_of_sale.group_pos_user 1 0 0 0
21 access_report_pos_order report.pos.order model_report_pos_order point_of_sale.group_pos_user 1 0 0 0
access_pos_return pos.return model_pos_return point_of_sale.group_pos_user 1 0 0 0

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: product #. module: product

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: product_expiry #. module: product_expiry

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: product_electronic #. module: product_electronic

View File

@ -1,2 +1 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_product_margin","product.margin","model_product_margin",,1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_product_margin product.margin model_product_margin 1 0 0 0

View File

@ -1,2 +1 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_misc_tools_installer","misc_tools.installer","model_misc_tools_installer",base.group_system,1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_misc_tools_installer misc_tools.installer model_misc_tools_installer base.group_system 1 1 1 1

View File

@ -9,16 +9,11 @@
"access_project_task","project.task","model_project_task","project.group_project_user",1,1,1,1 "access_project_task","project.task","model_project_task","project.group_project_user",1,1,1,1
"access_project_task_work","project.task.work","model_project_task_work","project.group_project_user",1,1,1,1 "access_project_task_work","project.task.work","model_project_task_work","project.group_project_user",1,1,1,1
"access_project_task_work_manager","project.task.work.manager","model_project_task_work","project.group_project_manager",1,1,1,1 "access_project_task_work_manager","project.task.work.manager","model_project_task_work","project.group_project_manager",1,1,1,1
"access_config_compute_remaining","project.config.compute.remaining","model_config_compute_remaining","project.group_project_user",1,1,1,1
"access_config_compute_remaining_manager","project.config.compute.remaining.manager","model_config_compute_remaining","project.group_project_manager",1,1,1,1
"access_project_message","project.message","model_project_message","project.group_project_user",1,1,1,1 "access_project_message","project.message","model_project_message","project.group_project_user",1,1,1,1
"access_project_installer","project.installer","model_project_installer","base.group_system",1,1,1,1
"access_report_project_task_user","report.project.task.user","model_report_project_task_user","project.group_project_manager",1,0,0,0 "access_report_project_task_user","report.project.task.user","model_report_project_task_user","project.group_project_manager",1,0,0,0
"access_project_vs_remaining_hours","project.vs.remaining.hours","model_project_vs_remaining_hours","project.group_project_user",1,1,1,1 "access_project_vs_remaining_hours","project.vs.remaining.hours","model_project_vs_remaining_hours","project.group_project_user",1,1,1,1
"access_task_by_days_vs_planned_hours","task.by.days.vs.planned.hour","model_task_by_days_vs_planned_hours","project.group_project_user",1,1,1,1 "access_task_by_days_vs_planned_hours","task.by.days.vs.planned.hour","model_task_by_days_vs_planned_hours","project.group_project_user",1,1,1,1
"access_task_by_days","task.by.days","model_task_by_days","project.group_project_user",1,1,1,1 "access_task_by_days","task.by.days","model_task_by_days","project.group_project_user",1,1,1,1
"access_close_task","close.task","model_close_task","project.group_project_user",1,1,1,1
"access_close_task_manager","close.task manager","model_close_task","project.group_project_manager",1,1,1,1
"access_partner_task user","base.res.partner user","base.model_res_partner","project.group_project_user",1,0,0,0 "access_partner_task user","base.res.partner user","base.model_res_partner","project.group_project_user",1,0,0,0
"access_partner_task manager","base.res.partner manager","base.model_res_partner","project.group_project_manager",1,0,0,0 "access_partner_task manager","base.res.partner manager","base.model_res_partner","project.group_project_manager",1,0,0,0
"access_partner_address_task user","base.res.partner.address user","base.model_res_partner_address","project.group_project_user",1,0,0,0 "access_partner_address_task user","base.res.partner.address user","base.model_res_partner_address","project.group_project_user",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
9 access_project_task project.task model_project_task project.group_project_user 1 1 1 1
10 access_project_task_work project.task.work model_project_task_work project.group_project_user 1 1 1 1
11 access_project_task_work_manager project.task.work.manager model_project_task_work project.group_project_manager 1 1 1 1
access_config_compute_remaining project.config.compute.remaining model_config_compute_remaining project.group_project_user 1 1 1 1
access_config_compute_remaining_manager project.config.compute.remaining.manager model_config_compute_remaining project.group_project_manager 1 1 1 1
12 access_project_message project.message model_project_message project.group_project_user 1 1 1 1
access_project_installer project.installer model_project_installer base.group_system 1 1 1 1
13 access_report_project_task_user report.project.task.user model_report_project_task_user project.group_project_manager 1 0 0 0
14 access_project_vs_remaining_hours project.vs.remaining.hours model_project_vs_remaining_hours project.group_project_user 1 1 1 1
15 access_task_by_days_vs_planned_hours task.by.days.vs.planned.hour model_task_by_days_vs_planned_hours project.group_project_user 1 1 1 1
16 access_task_by_days task.by.days model_task_by_days project.group_project_user 1 1 1 1
access_close_task close.task model_close_task project.group_project_user 1 1 1 1
access_close_task_manager close.task manager model_close_task project.group_project_manager 1 1 1 1
17 access_partner_task user base.res.partner user base.model_res_partner project.group_project_user 1 0 0 0
18 access_partner_task manager base.res.partner manager base.model_res_partner project.group_project_manager 1 0 0 0
19 access_partner_address_task user base.res.partner.address user base.model_res_partner_address project.group_project_user 1 0 0 0

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: project_gtd #. module: project_gtd

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: project_retro_planning #. module: project_retro_planning

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: purchase #. module: purchase

View File

@ -9,7 +9,6 @@
"access_purchase_order_line_stock_worker","purchase.order.line","model_purchase_order_line","stock.group_stock_user",1,0,0,0 "access_purchase_order_line_stock_worker","purchase.order.line","model_purchase_order_line","stock.group_stock_user",1,0,0,0
"access_account_tax_purchase_user","account.tax","account.model_account_tax","purchase.group_purchase_user",1,0,0,0 "access_account_tax_purchase_user","account.tax","account.model_account_tax","purchase.group_purchase_user",1,0,0,0
"access_report_purchase_order","purchase.report","model_purchase_report","purchase.group_purchase_manager",1,0,0,0 "access_report_purchase_order","purchase.report","model_purchase_report","purchase.group_purchase_manager",1,0,0,0
"access_purchase_order_group","purchase.order.group","model_purchase_order_group","purchase.group_purchase_user",1,1,1,1
"access_purchase_order_manager","purchase.order","model_purchase_order","purchase.group_purchase_manager",1,1,1,1 "access_purchase_order_manager","purchase.order","model_purchase_order","purchase.group_purchase_manager",1,1,1,1
"access_purchase_order_line_manager","purchase.order.line","model_purchase_order_line","purchase.group_purchase_manager",1,1,1,1 "access_purchase_order_line_manager","purchase.order.line","model_purchase_order_line","purchase.group_purchase_manager",1,1,1,1
"access_stock_location_purchase_user_manager","stock.location","stock.model_stock_location","purchase.group_purchase_manager",1,0,0,0 "access_stock_location_purchase_user_manager","stock.location","stock.model_stock_location","purchase.group_purchase_manager",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
9 access_purchase_order_line_stock_worker purchase.order.line model_purchase_order_line stock.group_stock_user 1 0 0 0
10 access_account_tax_purchase_user account.tax account.model_account_tax purchase.group_purchase_user 1 0 0 0
11 access_report_purchase_order purchase.report model_purchase_report purchase.group_purchase_manager 1 0 0 0
access_purchase_order_group purchase.order.group model_purchase_order_group purchase.group_purchase_user 1 1 1 1
12 access_purchase_order_manager purchase.order model_purchase_order purchase.group_purchase_manager 1 1 1 1
13 access_purchase_order_line_manager purchase.order.line model_purchase_order_line purchase.group_purchase_manager 1 1 1 1
14 access_stock_location_purchase_user_manager stock.location stock.model_stock_location purchase.group_purchase_manager 1 0 0 0

View File

@ -1,2 +1 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_report_designer_installer","report_designer.installer","model_report_designer_installer",base.group_system,1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
access_report_designer_installer report_designer.installer model_report_designer_installer base.group_system 1 1 1 1

View File

@ -3,8 +3,6 @@
"access_sale_order","sale.order","model_sale_order","group_sale_user",1,1,1,0 "access_sale_order","sale.order","model_sale_order","group_sale_user",1,1,1,0
"access_sale_order_line","sale.order.line","model_sale_order_line","group_sale_user",1,1,1,0 "access_sale_order_line","sale.order.line","model_sale_order_line","group_sale_user",1,1,1,0
"access_sale_shop_admin","sale.shop","model_sale_shop","base.group_system",1,1,1,1 "access_sale_shop_admin","sale.shop","model_sale_shop","base.group_system",1,1,1,1
"access_sale_config_picking_policy","sale.config.picking_policy","model_sale_config_picking_policy","group_sale_user",1,0,0,0
"access_sale_config_picking_policy_manager","sale.config.picking_policy_manager","model_sale_config_picking_policy","group_sale_manager",1,1,1,1
"access_account_invoice_salesman","account_invoice salesman","account.model_account_invoice","group_sale_user",1,1,1,1 "access_account_invoice_salesman","account_invoice salesman","account.model_account_invoice","group_sale_user",1,1,1,1
"access_account_invoice_line_salesman","account_invoice.line salesman","account.model_account_invoice_line","group_sale_user",1,1,1,1 "access_account_invoice_line_salesman","account_invoice.line salesman","account.model_account_invoice_line","group_sale_user",1,1,1,1
"access_account_payment_term_salesman","account_payment_term salesman","account.model_account_payment_term","group_sale_user",1,0,0,0 "access_account_payment_term_salesman","account_payment_term salesman","account.model_account_payment_term","group_sale_user",1,0,0,0
@ -17,10 +15,6 @@
"access_sale_order_manager","sale.order.manager","model_sale_order","group_sale_manager",1,1,1,1 "access_sale_order_manager","sale.order.manager","model_sale_order","group_sale_manager",1,1,1,1
"access_sale_order_line_manager","sale.order.line.manager","model_sale_order_line","group_sale_manager",1,1,1,1 "access_sale_order_line_manager","sale.order.line.manager","model_sale_order_line","group_sale_manager",1,1,1,1
"access_sale_report_manager","sale.report","model_sale_report","group_sale_manager",1,0,0,0 "access_sale_report_manager","sale.report","model_sale_report","group_sale_manager",1,0,0,0
"access_sale_order_line_make_invoice","sale.order.line.make.invoice","model_sale_order_line_make_invoice","group_sale_user",1,1,1,0
"access_sale_order_line_make_invoice_manager","sale.order.line.make.invoice","model_sale_order_line_make_invoice","group_sale_manager",1,1,1,1
"access_sale_advance_payment_inv","sale.advance.payment.inv","model_sale_advance_payment_inv","group_sale_user",1,1,1,0
"access_sale_advance_payment_inv_manager","sale.advance.payment.inv","model_sale_advance_payment_inv","group_sale_manager",1,1,1,1
"access_sale_open_invoice","sale.open.invoice","model_sale_open_invoice","group_sale_user",1,1,1,0 "access_sale_open_invoice","sale.open.invoice","model_sale_open_invoice","group_sale_user",1,1,1,0
"access_sale_open_invoice_manager","sale.open.invoice","model_sale_open_invoice","group_sale_manager",1,1,1,1 "access_sale_open_invoice_manager","sale.open.invoice","model_sale_open_invoice","group_sale_manager",1,1,1,1
"access_product_product_sale_user","product.product.sale.user","model_product_product","group_sale_user",1,0,0,0 "access_product_product_sale_user","product.product.sale.user","model_product_product","group_sale_user",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
3 access_sale_order sale.order model_sale_order group_sale_user 1 1 1 0
4 access_sale_order_line sale.order.line model_sale_order_line group_sale_user 1 1 1 0
5 access_sale_shop_admin sale.shop model_sale_shop base.group_system 1 1 1 1
access_sale_config_picking_policy sale.config.picking_policy model_sale_config_picking_policy group_sale_user 1 0 0 0
access_sale_config_picking_policy_manager sale.config.picking_policy_manager model_sale_config_picking_policy group_sale_manager 1 1 1 1
6 access_account_invoice_salesman account_invoice salesman account.model_account_invoice group_sale_user 1 1 1 1
7 access_account_invoice_line_salesman account_invoice.line salesman account.model_account_invoice_line group_sale_user 1 1 1 1
8 access_account_payment_term_salesman account_payment_term salesman account.model_account_payment_term group_sale_user 1 0 0 0
15 access_sale_order_manager sale.order.manager model_sale_order group_sale_manager 1 1 1 1
16 access_sale_order_line_manager sale.order.line.manager model_sale_order_line group_sale_manager 1 1 1 1
17 access_sale_report_manager sale.report model_sale_report group_sale_manager 1 0 0 0
access_sale_order_line_make_invoice sale.order.line.make.invoice model_sale_order_line_make_invoice group_sale_user 1 1 1 0
access_sale_order_line_make_invoice_manager sale.order.line.make.invoice model_sale_order_line_make_invoice group_sale_manager 1 1 1 1
access_sale_advance_payment_inv sale.advance.payment.inv model_sale_advance_payment_inv group_sale_user 1 1 1 0
access_sale_advance_payment_inv_manager sale.advance.payment.inv model_sale_advance_payment_inv group_sale_manager 1 1 1 1
18 access_sale_open_invoice sale.open.invoice model_sale_open_invoice group_sale_user 1 1 1 0
19 access_sale_open_invoice_manager sale.open.invoice model_sale_open_invoice group_sale_manager 1 1 1 1
20 access_product_product_sale_user product.product.sale.user model_product_product group_sale_user 1 0 0 0

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: sale_analytic_plans #. module: sale_analytic_plans

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-06-28 03:48+0000\n" "X-Launchpad-Export-Date: 2010-06-29 03:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n" "X-Generator: Launchpad (build Unknown)\n"
#. module: sale_journal #. module: sale_journal

View File

@ -7,7 +7,6 @@
"access_stock_location_user","stock.location.user","model_stock_location","base.group_user",1,0,0,0 "access_stock_location_user","stock.location.user","model_stock_location","base.group_user",1,0,0,0
"access_stock_journal_user","stock.journal.user","model_stock_journal","base.group_user",1,0,0,0 "access_stock_journal_user","stock.journal.user","model_stock_journal","base.group_user",1,0,0,0
"access_stock_journal_manager","stock.journal.manager","model_stock_journal","stock.group_stock_manager",1,1,1,1 "access_stock_journal_manager","stock.journal.manager","model_stock_journal","stock.group_stock_manager",1,1,1,1
"access_stock_picking_move_wizard","stock.picking.move.wizard","model_stock_picking_move_wizard","stock.group_stock_user",1,1,1,1
"access_stock_tracking","stock.tracking","model_stock_tracking","stock.group_stock_user",1,1,1,0 "access_stock_tracking","stock.tracking","model_stock_tracking","stock.group_stock_user",1,1,1,0
"access_stock_picking","stock.picking","model_stock_picking","stock.group_stock_user",1,1,1,1 "access_stock_picking","stock.picking","model_stock_picking","stock.group_stock_user",1,1,1,1
"access_stock_production_lot","stock.production.lot","model_stock_production_lot","stock.group_stock_user",1,1,1,0 "access_stock_production_lot","stock.production.lot","model_stock_production_lot","stock.group_stock_user",1,1,1,0
@ -21,29 +20,7 @@
"access_stock_report_tracklots","stock.report.tracklots","model_stock_report_tracklots","stock.group_stock_user",1,1,1,1 "access_stock_report_tracklots","stock.report.tracklots","model_stock_report_tracklots","stock.group_stock_user",1,1,1,1
"access_report_products_to_received_planned","report.products.to.received.planned","model_report_products_to_received_planned","stock.group_stock_user",1,1,1,1 "access_report_products_to_received_planned","report.products.to.received.planned","model_report_products_to_received_planned","stock.group_stock_user",1,1,1,1
"access_report_delivery_products_planned","report.delivery.products.planned","model_report_delivery_products_planned","stock.group_stock_user",1,1,1,1 "access_report_delivery_products_planned","report.delivery.products.planned","model_report_delivery_products_planned","stock.group_stock_user",1,1,1,1
"access_stock_move_track","stock.move.track","model_stock_move_track","stock.group_stock_user",1,1,1,1
"access_stock_move_consume","stock.move.consume","model_stock_move_consume","stock.group_stock_user",1,1,1,1
"access_stock_move_scrap","stock.move.scrap","model_stock_move_scrap","stock.group_stock_user",1,1,1,1
"access_stock_move_split","stock.move.split","model_stock_move_split","stock.group_stock_user",1,1,1,1
"access_stock_move_split_lines","stock.move.split.lines","model_stock_move_split_lines","stock.group_stock_user",1,1,1,1
"access_stock_move_split_lines_exist","stock.move.split.lines.exist","model_stock_move_split_lines_exist","stock.group_stock_user",1,1,1,1
"access_stock_inventory_set_stock_zero","stock.inventory.set.stock.zero","model_stock_inventory_set_stock_zero","stock.group_stock_user",1,1,1,1
"access_stock_fill_inventory","stock.fill.inventory","model_stock_fill_inventory","stock.group_stock_user",1,1,1,1
"access_stock_inventory_line_split","stock.inventory.line.split","model_stock_inventory_line_split","stock.group_stock_user",1,1,1,1 "access_stock_inventory_line_split","stock.inventory.line.split","model_stock_inventory_line_split","stock.group_stock_user",1,1,1,1
"access_stock_invoice_onshipping","stock.invoice.onshipping","model_stock_invoice_onshipping","stock.group_stock_user",1,1,1,1
"access_stock_location_product","stock.location.product","model_stock_location_product","stock.group_stock_user",1,1,1,1
"access_stock_location_product_manager","stock.location.product manager","model_stock_location_product","stock.group_stock_manager",1,1,1,1
"access_stock_traceability_upstream","stock.traceability.upstream","model_stock_traceability_upstream","stock.group_stock_user",1,1,1,1
"access_stock_traceability_downstream","stock.traceability.downstream","model_stock_traceability_downstream","stock.group_stock_user",1,1,1,1
"access_stock_traceability_lot_upstream","stock.traceability.lot.upstream","model_stock_traceability_lot_upstream","stock.group_stock_user",1,1,1,1
"access_stock_traceability_lot_downstream","stock.traceability.lot.downstream","model_stock_traceability_lot_downstream","stock.group_stock_user",1,1,1,1
"access_stock_partial_picking",stock.partial.picking","model_stock_partial_picking",,1,1,1,1
"access_stock_partial_move","stock.partial.move","model_stock_partial_move",,1,1,1,1
"access_stock_inventory_merge","stock.inventory.merge","model_stock_inventory_merge","stock.group_stock_user",1,0,0,0
"access_stock_change_standard_price","stock.change.standard.price","model_stock_change_standard_price","stock.group_stock_user",1,0,0,0
"access_action_traceability","action.traceability","model_action_traceability","stock.group_stock_user",1,0,0,0
"access_stock_split_into","stock.split.into","model_stock_split_into","stock.group_stock_user",1,0,0,0
"access_stock_split_into_manager","stock.split.into","model_stock_split_into","stock.group_stock_manager",1,1,1,1
"access_report_stock_move","report.stock.move","model_report_stock_move","stock.group_stock_user",1,1,1,1 "access_report_stock_move","report.stock.move","model_report_stock_move","stock.group_stock_user",1,1,1,1
"access_report_stock_inventory","report.stock.inventory","model_report_stock_inventory","stock.group_stock_user",1,1,1,1 "access_report_stock_inventory","report.stock.inventory","model_report_stock_inventory","stock.group_stock_user",1,1,1,1
"access_stock_replacement","stock.replacement","model_stock_replacement","stock.group_stock_user",1,1,1,1 "access_stock_replacement","stock.replacement","model_stock_replacement","stock.group_stock_user",1,1,1,1

Can't render this file because it contains an unexpected character in line 40 and column 53.

View File

@ -1,7 +1,4 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_stock_planning","stock.planning","model_stock_planning","stock.group_stock_user",1,1,1,1 "access_stock_planning","stock.planning","model_stock_planning","stock.group_stock_user",1,1,1,1
"access_stock_period_create_lines","stock.period.createlines","model_stock_period_createlines","stock.group_stock_user",1,1,1,1
"access_stock_period","stock.period","model_stock_period","stock.group_stock_user",1,1,1,1 "access_stock_period","stock.period","model_stock_period","stock.group_stock_user",1,1,1,1
"access_stock_sale_forecast_createlines","stock.sale.forecast.createlines","model_stock_sale_forecast_createlines","stock.group_stock_user",1,1,1,1
"access_stock_sale_forecast","stock.sale.forecast","model_stock_sale_forecast","stock.group_stock_user",1,1,1,1 "access_stock_sale_forecast","stock.sale.forecast","model_stock_sale_forecast","stock.group_stock_user",1,1,1,1
"access_stock_planning_createlines","stock.planning.createlines","model_stock_planning_createlines","stock.group_stock_user",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_stock_planning stock.planning model_stock_planning stock.group_stock_user 1 1 1 1
access_stock_period_create_lines stock.period.createlines model_stock_period_createlines stock.group_stock_user 1 1 1 1
3 access_stock_period stock.period model_stock_period stock.group_stock_user 1 1 1 1
access_stock_sale_forecast_createlines stock.sale.forecast.createlines model_stock_sale_forecast_createlines stock.group_stock_user 1 1 1 1
4 access_stock_sale_forecast stock.sale.forecast model_stock_sale_forecast stock.group_stock_user 1 1 1 1
access_stock_planning_createlines stock.planning.createlines model_stock_planning_createlines stock.group_stock_user 1 1 1 1

View File

@ -13,10 +13,6 @@
"access_survey_response_user","survey.response","model_survey_response","group_survey_user",1,1,1,1 "access_survey_response_user","survey.response","model_survey_response","group_survey_user",1,1,1,1
"access_survey_response_answer_manager","survey.response.answer","model_survey_response_answer","group_survey_manager",1,1,1,1 "access_survey_response_answer_manager","survey.response.answer","model_survey_response_answer","group_survey_manager",1,1,1,1
"access_survey_response_answer_user","survey.response.answer","model_survey_response_answer","group_survey_user",1,1,1,1 "access_survey_response_answer_user","survey.response.answer","model_survey_response_answer","group_survey_user",1,1,1,1
"access_survey_name_wiz_manager","survey.name.wiz","model_survey_name_wiz","group_survey_manager",1,1,1,1
"access_survey_name_wiz_user","survey.name.wiz","model_survey_name_wiz","group_survey_user",1,0,0,0
"access_survey_question_wiz_manager","survey.question.wiz","model_survey_question_wiz","group_survey_manager",1,1,1,1
"access_survey_question_wiz_user","survey.question.wiz","model_survey_question_wiz","group_survey_user",1,0,0,0
"access_survey_history","survey.history","model_survey_history","group_survey_user",1,1,1,0 "access_survey_history","survey.history","model_survey_history","group_survey_user",1,1,1,0
"access_survey_question_column_heading","survey.question.column.heading","model_survey_question_column_heading","group_survey_manager",1,1,1,1 "access_survey_question_column_heading","survey.question.column.heading","model_survey_question_column_heading","group_survey_manager",1,1,1,1
"access_survey_question_column_heading","survey.question.column.heading","model_survey_question_column_heading","group_survey_user",1,0,0,0 "access_survey_question_column_heading","survey.question.column.heading","model_survey_question_column_heading","group_survey_user",1,0,0,0
@ -26,15 +22,3 @@
"access_survey_tbl_column_heading","survey.tbl.column.heading","model_survey_tbl_column_heading","group_survey_user",1,1,1,1 "access_survey_tbl_column_heading","survey.tbl.column.heading","model_survey_tbl_column_heading","group_survey_user",1,1,1,1
"access_survey_response_line","survey.response.line","model_survey_response_line","group_survey_manager",1,1,1,1 "access_survey_response_line","survey.response.line","model_survey_response_line","group_survey_manager",1,1,1,1
"access_survey_response_line","survey.response.line","model_survey_response_line","group_survey_user",1,1,1,1 "access_survey_response_line","survey.response.line","model_survey_response_line","group_survey_user",1,1,1,1
"access_survey_print_answer","survey.print.answer","model_survey_print_answer","group_survey_manager",1,1,1,1
"access_survey_print_answer","survey.print.answer","model_survey_print_answer","group_survey_user",1,1,1,1
"access_survey_send_invitation","survey.send.invitation","model_survey_send_invitation","group_survey_manager",1,1,1,1
"access_survey_send_invitation","survey.send.invitation","model_survey_send_invitation","group_survey_user",1,0,0,0
"access_survey_send_invitation_log","survey.send.invitation.log","model_survey_send_invitation_log","group_survey_manager",1,1,1,1
"access_survey_send_invitation_log","survey.send.invitation.log","model_survey_send_invitation_log","group_survey_user",1,0,0,0
"access_survey_print_statistics","survey.print.statistics","model_survey_print_statistics","group_survey_manager",1,1,1,1
"access_survey_print_statistics","survey.print.statistics","model_survey_print_statistics","group_survey_user",1,0,0,0
"access_survey_browse_answer","survey.browse.answer","model_survey_browse_answer","group_survey_manager",1,1,1,1
"access_survey_browse_answer","survey.browse.answer","model_survey_browse_answer","group_survey_user",1,0,0,0
"access_survey_print","survey.print","model_survey_print","group_survey_manager",1,1,1,1
"access_survey_print","survey.print","model_survey_print","group_survey_user",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
13 access_survey_response_user survey.response model_survey_response group_survey_user 1 1 1 1
14 access_survey_response_answer_manager survey.response.answer model_survey_response_answer group_survey_manager 1 1 1 1
15 access_survey_response_answer_user survey.response.answer model_survey_response_answer group_survey_user 1 1 1 1
access_survey_name_wiz_manager survey.name.wiz model_survey_name_wiz group_survey_manager 1 1 1 1
access_survey_name_wiz_user survey.name.wiz model_survey_name_wiz group_survey_user 1 0 0 0
access_survey_question_wiz_manager survey.question.wiz model_survey_question_wiz group_survey_manager 1 1 1 1
access_survey_question_wiz_user survey.question.wiz model_survey_question_wiz group_survey_user 1 0 0 0
16 access_survey_history survey.history model_survey_history group_survey_user 1 1 1 0
17 access_survey_question_column_heading survey.question.column.heading model_survey_question_column_heading group_survey_manager 1 1 1 1
18 access_survey_question_column_heading survey.question.column.heading model_survey_question_column_heading group_survey_user 1 0 0 0
22 access_survey_tbl_column_heading survey.tbl.column.heading model_survey_tbl_column_heading group_survey_user 1 1 1 1
23 access_survey_response_line survey.response.line model_survey_response_line group_survey_manager 1 1 1 1
24 access_survey_response_line survey.response.line model_survey_response_line group_survey_user 1 1 1 1
access_survey_print_answer survey.print.answer model_survey_print_answer group_survey_manager 1 1 1 1
access_survey_print_answer survey.print.answer model_survey_print_answer group_survey_user 1 1 1 1
access_survey_send_invitation survey.send.invitation model_survey_send_invitation group_survey_manager 1 1 1 1
access_survey_send_invitation survey.send.invitation model_survey_send_invitation group_survey_user 1 0 0 0
access_survey_send_invitation_log survey.send.invitation.log model_survey_send_invitation_log group_survey_manager 1 1 1 1
access_survey_send_invitation_log survey.send.invitation.log model_survey_send_invitation_log group_survey_user 1 0 0 0
access_survey_print_statistics survey.print.statistics model_survey_print_statistics group_survey_manager 1 1 1 1
access_survey_print_statistics survey.print.statistics model_survey_print_statistics group_survey_user 1 0 0 0
access_survey_browse_answer survey.browse.answer model_survey_browse_answer group_survey_manager 1 1 1 1
access_survey_browse_answer survey.browse.answer model_survey_browse_answer group_survey_user 1 0 0 0
access_survey_print survey.print model_survey_print group_survey_manager 1 1 1 1
access_survey_print survey.print model_survey_print group_survey_user 1 0 0 0

View File

@ -1,3 +1,2 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_tinythunderbird_partner","tinythunderbird.partner","model_tinythunderbird_partner",,1,1,1,1 "access_tinythunderbird_partner","tinythunderbird.partner","model_tinythunderbird_partner",,1,1,1,1
"access_thunderbird_installer","thunderbird.installer","model_thunderbird_installer","base.group_system",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_tinythunderbird_partner tinythunderbird.partner model_tinythunderbird_partner 1 1 1 1
access_thunderbird_installer thunderbird.installer model_thunderbird_installer base.group_system 1 1 1 1

View File

@ -5,7 +5,3 @@
"wiki_groups","wiki.groups","model_wiki_groups","base.group_system",1,1,1,1 "wiki_groups","wiki.groups","model_wiki_groups","base.group_system",1,1,1,1
"wiki_groups_link","wiki.groups.link","model_wiki_groups_link","base.group_system",1,1,1,1 "wiki_groups_link","wiki.groups.link","model_wiki_groups_link","base.group_system",1,1,1,1
"wiki_wiki_history","wiki.wiki.history","model_wiki_wiki_history","base.group_user",1,0,1,0 "wiki_wiki_history","wiki.wiki.history","model_wiki_wiki_history","base.group_user",1,0,1,0
"wiki_wizard_wiki_history_show_diff","wizard.wiki.history.show_diff","model_wizard_wiki_history_show_diff","base.group_user",1,1,1,1
"wiki_wiki_page_open","wiki.wiki.page.open","model_wiki_wiki_page_open","base.group_user",1,1,1,1
"wiki_create_menu","wiki.create.menu","model_wiki_create_menu","base.group_user",1,1,1,1
"wiki_make_index","wiki.make.index","model_wiki_make_index","base.group_user",1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
5 wiki_groups wiki.groups model_wiki_groups base.group_system 1 1 1 1
6 wiki_groups_link wiki.groups.link model_wiki_groups_link base.group_system 1 1 1 1
7 wiki_wiki_history wiki.wiki.history model_wiki_wiki_history base.group_user 1 0 1 0
wiki_wizard_wiki_history_show_diff wizard.wiki.history.show_diff model_wizard_wiki_history_show_diff base.group_user 1 1 1 1
wiki_wiki_page_open wiki.wiki.page.open model_wiki_wiki_page_open base.group_user 1 1 1 1
wiki_create_menu wiki.create.menu model_wiki_create_menu base.group_user 1 1 1 1
wiki_make_index wiki.make.index model_wiki_make_index base.group_user 1 1 1 1