0

テーブルの合計列を合計することを目的としたこのSQLステートメントがあります。

p_id   p_name     atc_code         tax_amt   base_amt    date
2300  |A student |WC158 - EWT 1%  |133.93   |13392.86   |2015-07-01
2300  |A student |WC158 - EWT 1%  |62.50    |6250.00    |2015-07-01
901   |B student |WC158 - EWT 1%  |8.31     |830.58     |2015-06-09
2831  |C student |WC160 - EWT 2%  |2736.84  |136842.11  |2015-06-04
905   |D student |WC158 - EWT 1%  |31.25    |3125.00    |2015-06-16
905   |D student |WC158 - EWT 1%  |31.25    |3125.00    |2015-06-29
905   |D student |WC158 - EWT 1%  |31.25    |3125.00    |2015-06-29
905   |D student |WC158 - EWT 1%  |26.79    |2678.57    |2015-06-16
959   |G student |WC158 - EWT 1%  |114.29   |11428.57   |2015-01-10
959   |G student |WC158 - EWT 1%  |478.90   |47890.18   |2015-01-20
2424  |L student |WC158 - EWT 1%  |45.54    |4553.58    |2015-03-03

こんな発言もしています。

...
cr.execute('''insert into student_resource_report_line(partner_id,seq,base_amount,tax_amount,percent,atc_code,nature,create_date,write_date)
        select es.partner_id as partner_id,
            (case when es.name like '%WC158%' then 1
                when es.name like '%WC160%' then 2
                when es.name like '%WC010%' then 3
                when es.name like '%WC140%' then 4
                else 0 end) as seq,
            sum(es.base_amt) as base_amount,
            sum(es.tax_amt) as tax_amount,
            (case when es.name like '%EWT 1%%' then '1.00'
                when es.name like '%EWT 2%%' then '2.00'
                when es.name like '%EWT 3%%' then '3.00'
                when es.name like '%EWT 4%%' then '4.00'
                when es.name like '%EWT 5%%' then '5.00'
                when es.name like '%EWT 6%%' then '6.00'
                when es.name like '%EWT 7%%' then '7.00'
                when es.name like '%EWT 8%%' then '8.00'
                when es.name like '%EWT 9%%' then '9.00'
                when es.name like '%EWT 10%%' then '10.00'
                else null end) as percent,
            (case when es.name like '%WC158%' then 'WC158'
                when es.name like '%WC160%' then 'WC160'
                when es.name like '%WC010%' then 'WC010'
                when es.name like '%WC140%' then 'WC140'
                else null end) as atc_code,
            (case when es.name like '%WC158%' then 'NOTEBOOK'
                when es.name like '%WC160%' then 'BACKPACK'
                when es.name like '%WC010%' then 'COLOR'
                when es.name like '%WC140%' then 'BOOKS' else null end) as nature,
            (now()) as create_date,(now()) as write_date
        from ewt_source es where es.date between ? and ? 
        group by es.partner_id,es.name''',(ewt.date_from,ewt.date_to)) 

ここで、ewt.date_fromおよびewt.date_toはユーザーからの入力です。私が理解できないのは、実行中 (このメソッドがビューで呼び出されたとき)、「IndexError: タプル インデックスが範囲外です」というエラーが発生することです。これは私がログでいつも見たもので、クエリが悪いとも言われました。

group by es.partner_id,es.name''',(ewt.date_from,ewt.date_to))
File "/opt/openerp/server-7/openerp/sql_db.py", line 161, in wrapper
       return f(self, *args, **kwargs)
File "/opt/openerp/server-7/openerp/sql_db.py", line 226, in execute
   res = self._obj.execute(query, params)
IndexError: tuple index out of range

誰がどこで間違いを犯したかを指摘できますか? それは本当に私の頭を回転させます。

4

3 に答える 3

1

このイライラするエラーが発生しました。したがって、次のようなクエリの問題が発生する可能性があります:-

1)likeステートメントを作成するときは、2 つのパーセント記号があることを確認してください。つまりlike %%WC158%%、これ%WC158%は実行時に変換されます。

2)たとえば、あなたが持っている

es.date between ? and ? 
                    group by es.partner_id,es.name'''

あなたのコードで%s代わりに使用してみてください?

3)コードにこの部分があります

''',(ewt.date_from,ewt.date_to))'''

最後に余分なコンマがあることを確認してください

,(ewt.date_from,ewt.date_to,))

cur.execute("INSERT INTO foo VALUES (%s)", "bar") # 間違い

cur.execute("INSERT INTO foo VALUES (%s)", ("bar")) # 間違い

cur.execute("INSERT INTO foo VALUES (%s)", ("bar",)) # 正しい

cur.execute("INSERT INTO foo VALUES (%s)", ["bar"]) # 正しい

ソース

于 2016-07-12T21:57:34.203 に答える
0

「?」を置き換えてみてください。openerp sql-s でも使用される '%s' を使用します。

そして、SQLを次のようにフォーマットしてみてください:

cr.execute('SELECT id FROM account_move_line \
           WHERE state = %s \
           AND company_id in (%s) \
           ORDER BY id DESC ',\
           ('valid', company_ids))

またはおそらく:

self.cr.execute("SELECT sum(debit-credit) " \
                "FROM account_move_line AS l " \
                "JOIN account_move am ON (am.id = l.move_id)" \
                "WHERE l.account_id IN %s" \
                "AND am.state IN %s",
                ( tuple(self.account_ids), tuple(move_state), ))

それが仲間に役立つことを願っています!

于 2015-08-20T14:35:23.033 に答える