跳至内容
Odoo 菜单
  • 登录
  • 免费试用
  • 应用程序
    财务
    • 会计
    • 发票
    • 费用
    • 电子表格 (BI)
    • 文档
    • 电子签名
    销售
    • 客户关系管理
    • 销售
    • POS 销售点管理-零售
    • POS 销售点管理 - 餐厅
    • 订阅
    • 租赁
    网站
    • 网站设计
    • 电子商务
    • 博客
    • 论坛
    • 在线客服
    • 在线学习
    供应链
    • 库存
    • 制造
    • 产品生命周期
    • 采购
    • 维护保养
    • 品控
    人力资源
    • 员工
    • 招聘
    • 休假
    • 评价
    • 内部推荐
    • 车队
    营销
    • 社媒营销
    • 电邮营销
    • 短信营销
    • 近期活动
    • 营销自动化
    • 网上调查
    服务
    • 项目管理
    • 工时单
    • 现场服务
    • 服务台
    • 排期
    • 预约
    生产力
    • 讨论
    • 批核
    • IoT物联网
    • VoIP
    • 知识库
    • WhatsApp
    第三方应用软件 Odoo 定制 Odoo云端平台
  • 行业
    零售
    • 书店
    • 服装店
    • 家具店
    • 食品杂货店
    • 五金店
    • 玩具店
    餐饮与酒店服务
    • 酒吧及酒馆
    • 餐厅
    • 快餐
    • 民宿
    • 饮品分销商
    • 酒店
    房地产
    • 房地产代理
    • 建筑师事务所
    • 建造业
    • 地产管理
    • 园艺
    • 业主协会
    咨询
    • 会计师事务所
    • Odoo合作伙伴
    • 市场推广公司
    • 律师事务所
    • 人才招聘
    • 审核 & 认证
    制造
    • 纺织
    • 金属
    • 家具
    • 食品
    • 啤酒厂
    • 企业礼品
    保健与健身
    • 体育俱乐部
    • 眼镜店
    • 健身中心
    • 健康从业者
    • 药房
    • 发型屋
    商贸服务
    • 维修人员
    • IT 硬件及支持
    • 太阳能系统
    • 鞋匠
    • 清洁服务
    • 暖通空调服务
    其他
    • 非营利组织
    • 环境机构
    • 广告牌租赁
    • 摄影服务
    • 自行车租赁
    • 软件经销商
    浏览所有行业
  • 社区
    学习
    • 教学视频
    • 文档
    • 认证
    • 培训
    • 博客
    • 播客
    赋能教育
    • 教育计划
    • Scale Up! 商业游戏
    • 参观Odoo
    获取软件
    • 下载
    • 版本对比
    • 发布
    合作
    • Github
    • 论坛
    • 近期活动
    • 翻译
    • 成为合作伙伴
    • 合作伙伴服务
    • 注册您的会计事务所
    获取服务
    • 寻找合作伙伴
    • 查找会计服务
    • 预约顾问咨询
    • 安装及推行服务
    • 客户参考
    • 支持
    • 升级
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    获取演示
  • 定价
  • 技术支持

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • 客户关系管理
  • e-Commerce
  • 会计
  • 库存
  • PoS
  • 项目
  • MRP
All apps
只限注册用戶才可与社群互动。
所有帖文 人 徽章
标签 (查看所有)
odoo accounting v14 pos v15
关于此论坛区
只限注册用戶才可与社群互动。
所有帖文 人 徽章
标签 (查看所有)
odoo accounting v14 pos v15
关于此论坛区
帮助

When i try to print a custom report i get a AttributeError: object has no attribute '_ids'

订阅

此帖文有活动时,接收通知

此问题已终结
error
1 回复
9376 查看
形象
Erhuvwu Akpobaro

I have a custom report , with a print button(red) , however when i click the print button i get this error :

           File "/opt/odoo/community/addons/camden-market/cm_sales_receipt/cm_sales_receipt.py", line 89, in print_receipt assert len(self) == 1, 'This option should only be used for a single id at a time.' File "/opt/odoo/odoo/openerp/models.py", line 5332, in __len__ return len(self._ids) AttributeError: 'cm.sales.receipt' object has no attribute '_ids'

Also i have another normal print button which when i click print my report but it is just an empty file.

 

 

My class :

class cm_sales_receipt(osv.osv):
    _name = "cm.sales.receipt"
    _description = "Camden Market Sales Receipt"
    _auto = False
    _columns = {
        'paymentref':fields.char('PaymentRef'),
        'date':fields.date('Date'),
        'receipt_number':fields.char('Receipt Number'),
        'customer':fields.char('Customer',size=128),
        'unit':fields.char('Unit',size=128),
        'company':fields.char('Name',size=128,required=True),
        'invoicing_company':fields.char('Invoicing Company', size=128,required=True),
        'street':fields.char('Street',size=128,required=True),
        'street2':fields.char('Street2',size=128,required=True),
        'zip':fields.char('Zip',size=10,required=True),
        'state':fields.char('State',size=128,required=True),
        'city':fields.char('City',size=128,required=True),
        'email':fields.char('Email',size=128),
        'fax':fields.integer('Fax'),
        'phone':fields.integer('State'),
        'paid_amount':fields.float('Paid_Amount'),

    }

Here below is the code used  to print the report (note function is indented so part of above class :

 def print_receipt(self, cr, uid, ids, context=None):
        """
        This function prints the Property Rental Sales receipt
        """
        assert len(self) == 1, 'This option should only be used for a single id at a time.'
        #self.sent = True
        return self.pool['report'].get_action(cr, uid, ids, 'cm_sales_receipt.report_salesreceipt', context=context)

 

extract from view which has print button (note: print button displays correctly in module:

 <!-- Property Rental Sales Receipt Form View -->
        <record model="ir.ui.view" id="view_cm_sales_receipt_form">
            <field name="name">cm.sales.receipt.form</field>
            <field name="model">cm.sales.receipt</field>
            <field name="arch" type="xml">
                <form string=" Sales Receipt" version="8.0">
                <header>
                    <button name="print_receipt" string="Print Receipt" type="object" class="oe_highlight" groups="base.group_user"/>
                </header>
                                <sheet>
                                <group>
                                        <group>
                                               <field name="invoicing_company"/>
                           <field name="customer"/>
                                               <field name="paymentref"/>
                           <field name="receipt_number"/>
                           <field name="company"/>
                                               <field name="paid_amount"/>
                                    </group>
                                        </group>
                                        </sheet>
                </form>
            </field>
        </record>

 

 

here is the report xml file :

<openerp>
    <data>
        <report
            string="Sales Rental Receipt"
            id="action_cm_report_sales_receipt"
            model="cm.sales.receipt"
            report_type="qweb-pdf"
            name="cm_sales_receipt.report_cm_salesreceipt"
            file="cm_sales_receipt.report_cm_salesreceipt"
            attachment_use="True"
            attachment="(object.state in ('open','paid')) and ('RCPT'+(object.number or '').replace('/','')+'.pdf')"
        />
    </data>
</openerp

 

 

  • module installs correctly
  • ((custom)print button displays correctly but once clicked i recieve an  error
  • when i click the normal print button once clicked it prints  an empty report.

1) it seems the _ids cannot be found in this case , is there an indication of where in the code is '_ids' is not being passed through .

 

 

0
形象
丢弃
形象
Emipro Technologies Pvt. Ltd.
最佳答案

Hi,

you have used _auto = False means odoo will not create table of this model.

So, you do not get the id of this model because model is not available.

There may be the possibilities that you have create SQL VIEW into init() method with same name as model. In your case VIEW name is "cm_sales_receipt". Then you have to change at the line  assert len(ids) == 1  instead of assert len(self) == 1 .

I hope you will resolve your issue.

0
形象
丢弃
Erhuvwu Akpobaro
编写者

Thank you the problem is solved , the print button prints a document now , although now its just a white plain document but i guess that is down to the way im calling the data.

Erhuvwu Akpobaro
编写者

I get a error when i try to call the views in my xml : error log: InternalError: current transaction is aborted, commands ignored until end of transaction block model: class cm_sales_receipt(osv.osv): _name = "cm.sales.receipt" _description = "Camden Market Sales Receipt" _auto = False _columns = { 'paymentref':fields.char('PaymentRef'), 'date':fields.date('Date'), 'receipt_number':fields.char('Receipt Number'), 'customer':fields.char('Customer',size=128), 'unit':fields.char('Unit',size=128), 'company':fields.char('Name',size=128,required=True), 'invoicing_company':fields.char('Invoicing Company', size=128,required=True), 'street':fields.char('Street',size=128,required=True), 'street2':fields.char('Street2',size=128,required=True), 'zip':fields.char('Zip',size=10,required=True), 'state':fields.char('State',size=128,required=True), 'city':fields.char('City',size=128,required=True), 'email':fields.char('Email',size=128), 'fax':fields.char('Fax'), 'phone':fields.char('Phone'), 'paid_amount':fields.float('Paid_Amount'), } _order = 'date desc, paid_amount desc' def init(self, cr): tools.sql.drop_view_if_exists(cr, 'cm_sales_receipt') cr.execute(""" create or replace view cm_sales_receipt as ( select min(c.id) as id, a.name as customer, c.number as receipt_number, c.reference as PaymentRef, (select e.name from res_company e where c.company_id = e.id) as company, (select f.name from res_company f where a.invcompany_id = f.id) as invoicing_company, (select s.street from res_partner s where s.id = (select w.partner_id from res_company w where id = a.invcompany_id)) as street, (select s.street2 from res_partner s where s.id = (select w.partner_id from res_company w where id = a.invcompany_id)) as street2, (select s.zip from res_partner s where s.id = (select w.partner_id from res_company w where id = a.invcompany_id)) as zip, (select t.name from res_country_state t where t.id = (select s.state_id from res_partner s where s.id = (select w.partner_id from res_company w where id = a.invcompany_id))) as state, (select s.city from res_partner s where s.id = (select w.partner_id from res_company w where id = a.invcompany_id)) as city, (select s.email from res_partner s where a.invcompany_id = s.id) as email, (select s.fax from res_partner s where a.invcompany_id = s.id) as fax, (select s.phone from res_partner s where a.invcompany_id = s.id) as phone, c.amount as paid_amount, c.date as date from account_analytic_account a, account_voucher c where a.partner_id = c.partner_id group by c.id, a.name, c.number, c.reference, c.amount, c.company_id, a.invcompany_id, c.date ) """) def print_receipt(self, cr, uid, ids, context=None): """ This function prints the Property Rental Sales receipt """ assert len(ids) == 1, 'This option should only be used for a single id at a time.' #self.sent = True context = dict(context or {}, active_ids=ids) return self.pool['report'].get_action(cr, uid, ids, 'cm_sales_receipt.report_salesreceipt', context=context) report view:

喜欢讨论吗?不要只阅读,加入进来!

立即创建账户,享受专属功能,与我们的精彩社区互动!

注册
相关帖文 回复 查看 活动
?"Your country might be blocked by our hosting provider" error when I create new website
error
形象
0
11月 25
592
Payment Page Return Error with Razorpay on Mobile Devices
error
形象
0
9月 25
1259
Error after installing "purchase" app in Odoo version 18
error
形象
形象
1
12月 24
7020
error schema for TourStep Error
error
形象
0
11月 24
2643
Can't modify manifest version of custom module [Odoo.sh]
error
形象
形象
形象
2
7月 24
5382
社区
  • 教学视频
  • 文档
  • 论坛
开源
  • 下载
  • Github
  • Runbot
  • 翻译
服务
  • Odoo.sh 托管
  • 支持
  • 升级
  • 自定义开发服务
  • 教育
  • 查找会计服务
  • 寻找合作伙伴
  • 成为合作伙伴
关于我们
  • 我们的公司
  • 品牌资产
  • 联系我们
  • 招聘
  • 近期活动
  • 播客
  • 博客
  • 客户
  • 法律 • 隐私
  • 安全
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo致力于为企业管理提供高效智能的开源解决方案,是全球业内高速成长的软件服务商之一,逾七百五十万用户选择Odoo进行数字化升级。通过一系列全业务链覆盖、高度集成、简单易用的商业应用,助力企业实现信息化改革、降本增效并释放公司增长潜力。

Odoo独特的价值在于是一款非常容易使用又完全集成的应用。

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now