Commit Graph

58732 Commits

Author SHA1 Message Date
Christophe Simonis 713b00d477 [MERGE] forward port of branch saas-1 up to revid 3740 chs@openerp.com-20130702141958-zxkppo4c6zvpo0uf
bzr revid: chs@openerp.com-20130702145352-dym8zvfkwzb3qiqa
2013-07-02 16:53:52 +02:00
Olivier Dony cf9d7aaa5f [MERGE] Forward-port of latest bugfixes from 7.0 up to rev 4007 (launchpad_translations_on_behalf_of_openerp-20130730045810-58du4wi80axs0t81)
bzr revid: dle@openerp.com-20130627115936-iw2x6yjejabkc8ys
bzr revid: chs@openerp.com-20130702141958-zxkppo4c6zvpo0uf
bzr revid: odo@openerp.com-20130731072914-0uk62hnao5x502hh
2013-07-31 09:29:14 +02:00
Launchpad Translations on behalf of openerp c46331a3ca Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130729055508-7yza7v2jdny1gear
bzr revid: launchpad_translations_on_behalf_of_openerp-20130730045810-58du4wi80axs0t81
bzr revid: launchpad_translations_on_behalf_of_openerp-20130806050509-v64stuiemu934s7t
bzr revid: launchpad_translations_on_behalf_of_openerp-20130809053600-ssuy8yhd6ve9cse6
bzr revid: launchpad_translations_on_behalf_of_openerp-20130810053806-gx2uwr6zoit4zow2
bzr revid: launchpad_translations_on_behalf_of_openerp-20130811050026-l3omk3m8v7f34dnu
bzr revid: launchpad_translations_on_behalf_of_openerp-20130810053803-dm8ugwnibrznai0t
bzr revid: launchpad_translations_on_behalf_of_openerp-20130811050015-lmxdgm6fks2fyzoe
bzr revid: launchpad_translations_on_behalf_of_openerp-20130812050650-ta4kndyaxthut4tv
2013-08-12 05:06:50 +00:00
Denis Ledoux 6c25b2df25 [FIX]auth_oauth: auth_oauth handle oauth error 3, auth_oauth_signup raise accessdenied instead of signuperror, auth_signup use literal_eval instead of safe_eval
bzr revid: dle@openerp.com-20130809145506-agzyvk8m1pr858jf
2013-08-09 16:55:06 +02:00
Martin Trigaux 7773de66fe [FIX]l10n_be: use float instead of string for amont in vat_intra reports
bzr revid: mat@openerp.com-20130809122237-sym8vi6a24h0p2fc
2013-08-09 14:22:37 +02:00
Launchpad Translations on behalf of openerp d471d9af62 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130809053556-39cuq6tszjt0su5v
2013-08-09 05:35:56 +00:00
Martin Trigaux 1f968d8a76 [FIX] board: keep group by in context when adding to dashboard
lp bug: https://launchpad.net/bugs/1187512 fixed

bzr revid: mat@openerp.com-20130808150040-ki91kbfie9ink8u0
2013-08-08 17:00:40 +02:00
Launchpad Translations on behalf of openerp 8938503a39 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130806050505-b7g4j329y0heazos
bzr revid: launchpad_translations_on_behalf_of_openerp-20130807050317-4fh5uqmr02dou5ei
bzr revid: launchpad_translations_on_behalf_of_openerp-20130808045927-gmb38spqpaa9lgoa
2013-08-08 04:59:27 +00:00
Martin Trigaux b0619887af [FIX] l10n_be_invoice_bba: add copy method to invoice to generate a new bba comunication when duplicating, courtesy of Peter Langenberg (Agaplan)
bzr revid: mat@openerp.com-20130805153713-os2c4d5bfwr0pgmk
2013-08-05 17:37:13 +02:00
Martin Trigaux 8c8567c197 [FIX] account: use dateformat instead of datetime for date objects
bzr revid: mat@openerp.com-20130805101538-jn8o05n13psmnp99
2013-08-05 12:15:38 +02:00
Launchpad Translations on behalf of openerp bb90e51a78 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130803061336-i8noij4hjz9nxoow
bzr revid: launchpad_translations_on_behalf_of_openerp-20130804053709-rxcnnh17adwk94b4
bzr revid: launchpad_translations_on_behalf_of_openerp-20130805063055-v6y7lrx7lcoemmk0
2013-08-05 06:30:55 +00:00
Martin Trigaux 44f7a82281 [FIX] account_voucher: evaluate move line account with correct precision
This bug may have generated incorrect account_voucher_line when validating a voucher with amount less than 1. This patch will avoid reproducing the problem on new lines but not fix already existing vouchers. To do so apply the following steps:

1. apply this patch
2. do a manual reconciliation of the account.move.lines with amount less than 1 (use the manual reconciliation menu to see every line, included 0-0 lines)
3. execute the following SQL query

DELETE FROM account_voucher_line WHERE id IN (SELECT l.id FROM account_voucher_line AS l JOIN account_voucher AS v ON (v.id = l.voucher_id) JOIN account_move_line AS ml ON (l.move_line_id = ml.id) WHERE l.amount = 0 AND v.state = 'draft' AND ml.debit = ml.credit AND ml.credit = 0);

that will remove account voucher lines from draft vouchers linked to an empty move lines

bzr revid: mat@openerp.com-20130802120311-oh64d47t8x6t1wf9
2013-08-02 14:03:11 +02:00
Launchpad Translations on behalf of openerp 110e74f46f Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130802055826-b3m62j0sjc05lbns
2013-08-02 05:58:26 +00:00
Denis Ledoux b6cd0ea820 [FIX]auth_crypt: was storing password when passsing by res.users create, like auth_signup
bzr revid: dle@openerp.com-20130801162704-fbvghil7yir8zm8c
2013-08-01 18:27:04 +02:00
Denis Ledoux f551350b80 [FIX]auth_crypt: check_credentials checking if there is a password stored, if not, not trying to crypt anything and raise
bzr revid: dle@openerp.com-20130801151539-z0bes7ylx5qwa8tw
2013-08-01 17:15:39 +02:00
Denis Ledoux 5895b17ca1 [FIX]stock: wizard stock change qty, object_reference return an integer and not a browse record
bzr revid: dle@openerp.com-20130801142119-3kt689udw6j9zofz
2013-08-01 16:21:19 +02:00
Peter Langenberg 58bdae20d5 [FIX] l10n_be_invoice_bba: we don't want to generate BBA communication for anything other than out_invoice
bzr revid: pl@agaplan.eu-20130731154838-pjygijihw5otkk4e
2013-07-31 17:48:38 +02:00
Denis Ledoux ef18962918 [FIX]auth_ldap: remove base_crypt warning from manifest
bzr revid: dle@openerp.com-20130731153129-8hmqrgsg3e9d533f
2013-07-31 17:31:29 +02:00
Denis Ledoux a9718bec29 [FIX]auth_ldap: now using check_credentials instead of check
bzr revid: dle@openerp.com-20130731152018-fln3urf0expd9ps7
2013-07-31 17:20:18 +02:00
Martin Trigaux 38bf262119 [IMP] stock: more fault tolerant usage of xml id
bzr revid: mat@openerp.com-20130731092732-9fa0xb66mo7uakb4
2013-07-31 11:27:32 +02:00
Launchpad Translations on behalf of openerp 49b1952180 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130731060956-vxbj0r9l9pzvfivu
2013-07-31 06:09:56 +00:00
Martin Trigaux ce11369083 [FIX] mrp: don't see produce button if don't have necessary quantity
lp bug: https://launchpad.net/bugs/1181168 fixed

bzr revid: mat@openerp.com-20130730150747-9yhd6xt0k7nhadbu
2013-07-30 17:07:47 +02:00
Olivier Dony cf666e2d78 [FIX] account: paypal url generation should not crash for draft invoices that have no number yet
bzr revid: odo@openerp.com-20130730091643-27iwpblnjgjc8a2j
2013-07-30 11:16:43 +02:00
Martin Trigaux 63b2e2c44c [FIX] base_calendar: don't compute reccuring events if reccurency checkbox is disabled
bzr revid: mat@openerp.com-20130730081409-d84sz1e1w2201yqr
2013-07-30 10:14:09 +02:00
Launchpad Translations on behalf of openerp bea114f93a Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130730045806-pkwhfwt808zjajg9
2013-07-30 04:58:06 +00:00
Martin Trigaux 2f07aac8b2 [FIX] stock: remove warning popup on update product quantity wizard and correctly verify access rights on stock.location
lp bug: https://launchpad.net/bugs/1200194 fixed

bzr revid: mat@openerp.com-20130729135844-jtanbteqtg52ztnu
2013-07-29 15:58:44 +02:00
Martin Trigaux ecc9c506a5 [IMP] stock: don't raise error on default values if removed default stock locations data
lp bug: https://launchpad.net/bugs/1178876 fixed

bzr revid: mat@openerp.com-20130729121120-7xh05hcmo8iwbyfk
2013-07-29 14:11:20 +02:00
Martin Trigaux 10cda48728 [IMP] stock: don't raise error on default values if removed default stock locations data
bzr revid: mat@openerp.com-20130729102923-xx55fmomv72qbji6
2013-07-29 12:29:23 +02:00
Martin Trigaux 3037b94205 [FIX] sale_crm: allow modifying the default sale's team on user preferences
bzr revid: mat@openerp.com-20130729075824-jcxwd1va8yav4rjh
2013-07-29 09:58:24 +02:00
Launchpad Translations on behalf of openerp 20a0428e6f Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130726054722-d69j4mwclp38job7
bzr revid: launchpad_translations_on_behalf_of_openerp-20130727052743-v62n9j5jvp11j2ji
bzr revid: launchpad_translations_on_behalf_of_openerp-20130728063405-ksa7gfbj9k4hajaj
bzr revid: launchpad_translations_on_behalf_of_openerp-20130729055426-094ilqmvjoocrzmm
bzr revid: launchpad_translations_on_behalf_of_openerp-20130727052813-u58hk431f664vao7
bzr revid: launchpad_translations_on_behalf_of_openerp-20130728063427-t032j0icp8pkksol
bzr revid: launchpad_translations_on_behalf_of_openerp-20130729055503-id0512tblbixh8to
2013-07-29 05:55:03 +00:00
Martin Trigaux fc8ec438a6 [FIX] l10n_be: Intracom VAT Declaration, fix amount precision, courtesy of Peter Langenberg
lp bug: https://launchpad.net/bugs/1157173 fixed

bzr revid: mat@openerp.com-20130726120439-ht316ko3hs2u3l76
2013-07-26 14:04:39 +02:00
Martin Trigaux d5edec2e51 [MERGE] various changes
report_webkit: show labels on form view
account: correctly choose fiscal year on aged partner balance report

bzr revid: mat@openerp.com-20130726113408-c8biwoivuqvkh06m
2013-07-26 13:34:08 +02:00
Thibault Delavallée a3a0d3dbbf [FIX] mail: res was not created if there are no email in email_list when sending emails
bzr revid: tde@openerp.com-20130726101008-whwcl1ssh2fsxhbw
2013-07-26 12:10:08 +02:00
Martin Trigaux 2ee6e30f02 [IMP] report_webkit: show labels on form view, courtesy of Yannick Vaucher (Camptocamp)
lp bug: https://launchpad.net/bugs/1077238 fixed

bzr revid: mat@openerp.com-20130726093030-3umg02phcinzvklv
2013-07-26 11:30:30 +02:00
Martin Trigaux 87810e762d [FIX] account: select corresponding fiscal year when changing company on aged partner balance report, courtesy of Dawn Richardson
lp bug: https://launchpad.net/bugs/1185275 fixed

bzr revid: mat@openerp.com-20130726092134-axwqdopf1ampozcn
2013-07-26 11:21:34 +02:00
Launchpad Translations on behalf of openerp c738228631 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130726054745-ld13e2t0mrr1684x
2013-07-26 05:47:45 +00:00
Martin Trigaux 457aceff18 [IMP] mrp: properly remove product lines and workorder lines when confirming a manufacturing order, avoid getting traceback if trying action on deleted record
bzr revid: mat@openerp.com-20130725150909-ujh5xk2q2escr6a7
2013-07-25 17:09:09 +02:00
Martin Trigaux bb2b020741 [FIX] stock: for a stock picking set date start and end date based on expected (date_exected) instead of creation date (date)
bzr revid: mat@openerp.com-20130725114423-btn4hj53czcjh0ky
2013-07-25 13:44:23 +02:00
Martin Trigaux 81dd0b77f0 [FIX] hr_timesheet_invoice: better invoice price management
- if force product, use its sale price
- if on a journal of type 'general' (eg: expenses) and has a product, use its sale price
- else (eg: expenses) use the total amount on analytic lines

bzr revid: mat@openerp.com-20130725100402-gk201bqvwo2g9137
2013-07-25 12:04:02 +02:00
Martin Trigaux 4ccaac2ed5 [FIX] project_issue: reset kanban_state when changing the stage to be consistent with project_task
bzr revid: mat@openerp.com-20130725085659-1otlnox3wmdl8ocz
2013-07-25 10:56:59 +02:00
Launchpad Translations on behalf of openerp 205be82943 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130725054417-yilro7a52nwsb91r
2013-07-25 05:44:17 +00:00
Martin Trigaux 98ed3943ae [FIX] account_invoice: due date is reset to current date when we have no payment term and due date is manually defined
lp bug: https://launchpad.net/bugs/1102078 fixed

bzr revid: mat@openerp.com-20130724123421-nrd143m3g1a0qa67
2013-07-24 14:34:21 +02:00
Martin Trigaux 6365f69b4d [FIX] hr_timesheet_invoice: use product price on invoice even when not forcing
bzr revid: mat@openerp.com-20130724115907-i61nvau0d5jd5jrc
2013-07-24 13:59:07 +02:00
niv-openerp 9a688f2464 [FIX] some crash in the view manager
lp bug: https://launchpad.net/bugs/1202120 fixed

bzr revid: nicolas.vanhoren@openerp.com-20130724114312-mksg94rr1afd90y4
2013-07-24 13:43:12 +02:00
Denis Ledoux 658c021df8 [FIX]project_issue: issues button on partner form
bzr revid: dle@openerp.com-20130724102507-8f18lu9c5vhup7vr
2013-07-24 12:25:07 +02:00
Martin Trigaux 30f07ee98d [FIX] account_voucher: better voucher payment screen
revert commit 9310 with incorrect writeoff amount
hide writeoff reconcilation fields when no price difference
hide analytic_id (Write-Off Analytic Account) when not with_writeoff

bzr revid: mat@openerp.com-20130724094023-fbd1hqwe9hdh28id
2013-07-24 11:40:23 +02:00
Launchpad Translations on behalf of openerp b03ad78d56 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130724055415-sqjvueu7c3kdcn04
2013-07-24 05:54:15 +00:00
Martin Trigaux 3b61eb8627 [FIX] account_voucher: writeoff amount on unreconciled amount instead of price to allow negative writeoff (eg: negative currency change rate difference) (opw #593977)
bzr revid: mat@openerp.com-20130723141734-8wtbyn4ubz8rwfj1
2013-07-23 16:17:34 +02:00
Launchpad Translations on behalf of openerp b69a97f2af Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130720062329-mtrdbu252gvcpm7v
bzr revid: launchpad_translations_on_behalf_of_openerp-20130722055939-dhitotmhlxni5rhv
bzr revid: launchpad_translations_on_behalf_of_openerp-20130723053256-3blj73xxu210ln3d
bzr revid: launchpad_translations_on_behalf_of_openerp-20130723053317-s9hfdou4czw2abjh
2013-07-23 05:33:17 +00:00
Martin Trigaux 0b6e7ea4d3 [MERGE] [IMP] report_webkit: better installation message for wkhtmltopdf, courtesy of Yannick Vaucher (Camptocamp)
lp bug: https://launchpad.net/bugs/1113418 fixed

bzr revid: mat@openerp.com-20130722153657-5i04kjvq51lcjro1
2013-07-22 17:36:57 +02:00
Martin Trigaux 2dba43bf8e [MERGE] l10n_ca: courtsey of Maxime Chambreuil (savoirfairelinux)
[FIX] Fiscal positions.
[IMP] Separate different rates of HST. Update taxes (BC is not harmonized, PE is).
[IMP] better module description

lp bug: https://launchpad.net/bugs/1192629 fixed
lp bug: https://launchpad.net/bugs/1189050 fixed

bzr revid: mat@openerp.com-20130722143605-gq531dd0bqisq3e0
2013-07-22 16:36:05 +02:00
Martin Trigaux 1edc9e6551 [FIX] document: apply security rules documented on doc/access_permissions.rst. (opw #592652)
bzr revid: mat@openerp.com-20130722133615-wniqec4k60ssw4ui
2013-07-22 15:36:15 +02:00
Martin Trigaux 8ffa0fec98 [FIX] better check
bzr revid: mat@openerp.com-20130722132715-r67xneyv85lbsung
2013-07-22 15:27:15 +02:00
Martin Trigaux 5480f2958e [FIX] same without record rules, python side
bzr revid: mat@openerp.com-20130722115106-b1uldamgbpisf84g
2013-07-22 13:51:06 +02:00
Martin Trigaux ca4cc04c68 [ADD] document: record rules to match the one defined in access_permissions.rst
bzr revid: mat@openerp.com-20130722093106-dglcb64ilp3zldae
2013-07-22 11:31:06 +02:00
Launchpad Translations on behalf of openerp f37c21ba83 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130722055953-xgh0975oe9735fut
2013-07-22 05:59:53 +00:00
Launchpad Translations on behalf of openerp 08bf51a608 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130719063647-ajybj58frejzmzi1
bzr revid: launchpad_translations_on_behalf_of_openerp-20130720062338-fgevfrm113ns9ohh
bzr revid: launchpad_translations_on_behalf_of_openerp-20130722055949-auzq29nv6b2f3o10
2013-07-22 05:59:49 +00:00
Paramjit Singh Sahota 73fecedc4b [FIX] web_calendar: do not generate invalid domain if views does not specify a "date_stop" field
lp bug: https://launchpad.net/bugs/1197323 fixed

bzr revid: chs@openerp.com-20130719092515-7yrvp0ifooa6rxae
2013-07-19 11:25:15 +02:00
Vidhin Mehta 21cc22b9e9 [IMP]check parent is exist or not.
lp bug: https://launchpad.net/bugs/1202120 fixed

bzr revid: vme@tinyerp.com-20130719090753-t1o4l3pyxd2t5kv9
2013-07-19 14:37:53 +05:30
Christophe Simonis bf29a2ebc7 [MERGE] forward port of branch 7.0 up to revid 9302 chs@openerp.com-20130718111616-apacuhc2qhquobtc
bzr revid: dle@openerp.com-20130627104833-b9zgtu8urj43f12b
bzr revid: mat@openerp.com-20130702135856-kmg7d8anw17nkbd8
bzr revid: chs@openerp.com-20130718115928-wpa84dqh8tcq31zt
2013-07-18 13:59:28 +02:00
Christophe Simonis 1e9789baf8 [FIX] base_report_designer: correct "Export To RML" on OSX
bzr revid: chs@openerp.com-20130718111616-apacuhc2qhquobtc
2013-07-18 13:16:16 +02:00
Launchpad Translations on behalf of openerp dc5b5228db Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130717072519-9772wyvh9z6e4g8n
bzr revid: launchpad_translations_on_behalf_of_openerp-20130718071434-7x6sozvlnl6qhb2i
bzr revid: launchpad_translations_on_behalf_of_openerp-20130717072525-qqiq08bh7teas3sh
bzr revid: launchpad_translations_on_behalf_of_openerp-20130718071444-zxeebb2ub7nv2zqq
2013-07-18 07:14:44 +00:00
Maxime Chambreuil 72989c1a9d [FIX] reconcile = False on tax accounts
bzr revid: maxime.chambreuil@savoirfairelinux.com-20130717125745-b8p0pn2govdq1qp8
2013-07-17 08:57:45 -04:00
niv-openerp 3885ee3330 [FIX] some more problems with werkzeug 0.9.1
bzr revid: nicolas.vanhoren@openerp.com-20130716131548-aa60tcfn3zwchqd0
2013-07-16 15:15:48 +02:00
Denis Ledoux f8480b69be [FIX]email_template: generate_email_for_composer, clean context before find or create partner, to avoid default values for partner
bzr revid: dle@openerp.com-20130716095928-z79ipwgjxw5ypg3y
2013-07-16 11:59:28 +02:00
niv-openerp b00689306c [FIX] problem with werkzeug 0.9.1 that makes the code crash when we generate a report
bzr revid: nicolas.vanhoren@openerp.com-20130715122835-4gtyu2xle8y7fls1
2013-07-15 14:28:35 +02:00
Launchpad Translations on behalf of openerp d1a4e0aef0 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130711062622-v4muic3uqckueux5
bzr revid: launchpad_translations_on_behalf_of_openerp-20130712063505-m63repwd0zokfibu
bzr revid: launchpad_translations_on_behalf_of_openerp-20130713063525-b30s09rh63t3zox4
bzr revid: launchpad_translations_on_behalf_of_openerp-20130714055943-xf6jvk2dpoemt6qx
bzr revid: launchpad_translations_on_behalf_of_openerp-20130715051357-59o0nkhplh3e58mi
bzr revid: launchpad_translations_on_behalf_of_openerp-20130704054706-ace1fcr1vtruoc4s
bzr revid: launchpad_translations_on_behalf_of_openerp-20130705061311-4735gtnj7xjmuprg
bzr revid: launchpad_translations_on_behalf_of_openerp-20130712063510-g2yq0kxqgrx9x1df
bzr revid: launchpad_translations_on_behalf_of_openerp-20130713063533-7mjj5a7226xhtob6
bzr revid: launchpad_translations_on_behalf_of_openerp-20130714055945-h6jn755mtdcubvei
bzr revid: launchpad_translations_on_behalf_of_openerp-20130715051400-rra06yzfd7zw4bt0
2013-07-15 05:14:00 +00:00
Dawn Richardson 53179028d5 [FIX] Ensures the fiscal year is correctly chosen based on the company of the selected chart of accounts within accounting reports. Particularly crucial for reports which do not allow the fiscal year to be manually selected (such as the aged partner balance, which is prone to simply throwing errors).
lp bug: https://launchpad.net/bugs/1185275 fixed

bzr revid: dawn@catalyst.net.nz-20130715025212-ncgog0hbixnci7qh
2013-07-15 14:52:12 +12:00
Rifakat 475d2c6dec [FIX] account: optimize code
bzr revid: rha@tinyerp.com-20130712065843-idr1urw86hf9zc8g
2013-07-12 12:28:43 +05:30
Maxime Chambreuil 315535fa23 [IMP] Update tax rate for Manitoba PST
http://www.gov.mb.ca/finance/taxation/bulletins/currentbudgetchanges.pdf

bzr revid: maxime.chambreuil@savoirfairelinux.com-20130711131028-jx2e14g9eb5chyvd
2013-07-11 09:10:28 -04:00
Quentin (OpenERP) 84a134c46d [FIX] account_anglo_saxon: backport of revision 8787 of trunk
bzr revid: qdp-launchpad@openerp.com-20130710215655-5ym1u4ecsmqdw30n
2013-07-10 23:56:55 +02:00
Hardik Ansodariya 31c60007a1 [FIXED] project_issue: Kanban state is not being reset when one change the state of issue (Maintenance case: 594481)
bzr revid: han@tinyerp.com-20130709063319-87w3rf3b9kl1u056
2013-07-09 12:03:19 +05:30
Foram Katharotiya (OpenERP) aa202d87ef [IMP] visible produce button on 'Ready to Produce' state in mo
bzr revid: fka@tinyerp.com-20130703065256-wn65bwb8xzovbfef
2013-07-03 12:22:56 +05:30
Launchpad Translations on behalf of openerp 034f7bdb14 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130703060137-kl7z1idur87nzjjm
bzr revid: launchpad_translations_on_behalf_of_openerp-20130704054701-nxvmb94gwr227aby
2013-07-04 05:47:01 +00:00
Martin Trigaux d2d72d8416 [MERGE] forward port of saas-1 up to revision 8749 (mat@openerp.com-20130702135856-kmg7d8anw17nkbd8)
bzr revid: mat@openerp.com-20130702144646-y1wqs5mz4rzoh50g
2013-07-02 16:46:46 +02:00
Martin Trigaux 7e4776f2f2 [FIX] pyeval: be more fault tolerant to avoid wrap null values
bzr revid: mat@openerp.com-20130702141600-4s7oan9yidjrlmcc
2013-07-02 16:16:00 +02:00
chs f15f706313 [FIX] monodb: correct behaviour in no-db-list mode (manual forward port of 7.0 rev 3991 mat@openerp.com-20130702122014-6l79a748lb946hkq)
bzr revid: mat@openerp.com-20130702122404-sngh0g283tuvj8ll
2013-07-02 14:24:04 +02:00
RGA(OpenERP) 0ef9e37899 [FIX] Drag & Drop of incomming shipments in calendar view don't write max/min date
bzr revid: rgaopenerp-20130702114049-nap90vsqbjekuf8r
2013-07-02 17:10:49 +05:30
Martin Trigaux 85d568184c [FIX] http: db_monodb returns a result when only one db is available
bzr revid: mat@openerp.com-20130702103331-2f2vkz12sp385ldt
2013-07-02 12:33:31 +02:00
Launchpad Translations on behalf of openerp b732bb34fe Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130630064129-cou489g4u7gq0ins
bzr revid: launchpad_translations_on_behalf_of_openerp-20130701053720-kg0cbfynk0eznz6q
bzr revid: launchpad_translations_on_behalf_of_openerp-20130702055948-6xe11z6qy0pxhfks
2013-07-02 05:59:48 +00:00
Paramjit Singh Sahota d17b018727 [MERGE] Sync with lp:openobject-addons.
bzr revid: psa@tinyerp.com-20130702051012-33aad6c3p2vgzm1h
2013-07-02 10:40:12 +05:30
Olivier Dony 9b6f5dca9a [FIX] procurement: background procurement scheduler should be working in batch mode, with one transaction per order
A programming error during an older refactoring lead to
the scheduler working with a single monolithic transaction.
This could cause unnecessary resource contention, plus
undesired rollback of all previous operations in the event
of an exception during scheduling.

bzr revid: odo@openerp.com-20130701163532-8bekn7sbb99ua08c
2013-07-01 18:35:32 +02:00
Martin Trigaux 00c1c134fc [FIX] hr_expense: fallback on domain if no analytic_account for line_ids
bzr revid: mat@openerp.com-20130702131456-plktanhtq9b0u246
2013-07-02 15:14:56 +02:00
chs 4039900383 [FIX] monodb: correct behaviour in no-db-list mode (again)
bzr revid: mat@openerp.com-20130702122014-6l79a748lb946hkq
2013-07-02 14:20:14 +02:00
Christophe Simonis d5b4996aab [FIX] web: only open reports in new window on iOS devices
bzr revid: chs@openerp.com-20130702093932-r0nl3b02fludgu9s
2013-07-02 11:39:32 +02:00
Amit Bhavsar (Open ERP) 98f39f9d22 [MERGE] merge with latest trunk
bzr revid: amb@tinyerp.com-20130701111430-t5qp9hm97rkmjpsp
2013-07-01 16:44:30 +05:30
Foram Katharotiya (OpenERP) 0b5a213906 [MERGE] with trunk
bzr revid: fka@tinyerp.com-20130701092811-95ydrph81zy1pvat
2013-07-01 14:58:11 +05:30
Turkesh Patel (Open ERP) 6bd65ef84d [MRG] merge with lp:openobject-addons
bzr revid: tpa@tinyerp.com-20130701091934-k9k82mhk7n25fs37
2013-07-01 14:49:34 +05:30
Paramjit Singh Sahota b1162e09bd [MERGE] Sync with lp:openobject-addons.
bzr revid: psa@tinyerp.com-20130701055016-el0ebw1ohd9d0j4l
2013-07-01 11:20:16 +05:30
Nimesh Contractor (OpenERP) 14988a5a91 [MERGE] with trunk.
bzr revid: nco@tinyerp.com-20130701052659-obvk8qh9bolsw7k7
2013-07-01 10:56:59 +05:30
Launchpad Translations on behalf of openerp 447895839f Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130630055614-i718kdmoni3huadm
bzr revid: launchpad_translations_on_behalf_of_openerp-20130701051425-zqxi4fg6t39pxx0m
2013-07-01 05:14:25 +00:00
Christophe Simonis e1ad4d49e9 [FIX] crm: copy() of partners must return id of new partner
bzr revid: chs@openerp.com-20130628174508-di66pnu139ora9j6
2013-06-28 19:45:08 +02:00
Paramjit Singh Sahota 39151ca2af [IMP] Improved code for the followers which are visually duplicated when you click on a follower's name and get back to the sales order form.
bzr revid: psa@tinyerp.com-20130628133712-tcfoaisr3o9wdv7x
2013-06-28 19:07:12 +05:30
Thibault Delavallée d707bdb075 [MERGE] Sync with trunk
bzr revid: tde@openerp.com-20130628131141-ehdgj1263k5e3991
2013-06-28 15:11:41 +02:00
Xavier Morel 074a521a58 [REM] disable 'actual rpc' test, PITA and should never have been implemented anyway
bzr revid: xmo@openerp.com-20130628124626-d3n5izyjqnimfz1o
2013-06-28 14:46:26 +02:00
Antony Lesuisse fc70550ca2 [IMP] move html module description and icon
bzr revid: al@openerp.com-20130628100441-swpanf2jwcojygh4
2013-06-28 12:04:41 +02:00
Christophe Matthieu be4ba6f7b1 [FIX] Calendar month view does not show events starting in previous month. bug-1163912
bzr revid: chm@openerp.com-20130628090706-ztqfodf5xxi2201j
2013-06-28 11:07:06 +02:00
Christophe Matthieu 3d6b52821d [FIX] checkbox position for boolean field in list editable. Remove padding on the field for a good resizing and position and add margin on input. Bug-1166716
bzr revid: chm@openerp.com-20130628081935-shtvd3eaczr2cecc
2013-06-28 10:19:35 +02:00
Launchpad Translations on behalf of openerp 60f945182a Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130628063230-vimvbe89j2208dpl
2013-06-28 06:32:30 +00:00
Launchpad Translations on behalf of openerp d15439f296 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130628054843-gc05hes8wwao8kbp
2013-06-28 05:48:43 +00:00
Launchpad Translations on behalf of openerp f789c5e032 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130628054239-1z209ij1b14s9p23
2013-06-28 05:42:39 +00:00
Nimesh Contractor (OpenERP) 95a9a403a4 [MERGE] with addons.
bzr revid: nco@tinyerp.com-20130628052246-xyfgxyrcrjfahi92
2013-06-28 10:52:46 +05:30
Paramjit Singh Sahota c772b61408 [MERGE] Sync with lp:openobject-addons.
bzr revid: psa@tinyerp.com-20130628051914-cdlh6gu330dz4nht
2013-06-28 10:49:14 +05:30
Paramjit Singh Sahota cc2632f9c7 [MERGE] Sync with lp:openobject-addons.
bzr revid: psa@tinyerp.com-20130628045057-iapbncjjao6tiew6
2013-06-28 10:20:57 +05:30
Denis Ledoux 53358465b3 [REF]google_docs to google_drive, using oauth authentication
bzr revid: dle@openerp.com-20130627160715-ok7q82cyivirzri1
2013-06-27 18:07:15 +02:00
Thibault Delavallée 589826e187 [IMP] hr_recruitment: button 'create employee' now a link next to the emp_id field.
bzr revid: tde@openerp.com-20130627154505-oe8wb62brm927knr
2013-06-27 17:45:05 +02:00
Thibault Delavallée 61962befb4 [MERGE] Sync with trunk
bzr revid: tde@openerp.com-20130627153210-wwgxylt4656xmojs
2013-06-27 17:32:10 +02:00
Denis Ledoux bf1163c99a [FIX]google_drive: resource_get func fields, ressource_id can have '_' in id, remove of refresh_token in data(useless), try except for various urllib calls
bzr revid: dle@openerp.com-20130627150145-4fruh3ysqoce7bcj
2013-06-27 17:01:45 +02:00
Thibault Delavallée e3c729e1a6 [CLEAN] Cleaned last commit.
bzr revid: tde@openerp.com-20130627145519-533br1ho1da3d4f0
2013-06-27 16:55:19 +02:00
Thibault Delavallée bf4ada34b4 [REF] mail_thread: message_track now uses browse records instead of read results.
Updated addons accordingly.
Updated tests to test corner cases using False / null browse records.

bzr revid: tde@openerp.com-20130627144647-swbj77i84vo9ii0v
2013-06-27 16:46:47 +02:00
Denis Ledoux fa228290af [FIX]google_drive: refresh token from authorization code not anymore in on change method, google base account not inheriting from base setting
bzr revid: dle@openerp.com-20130627143713-lgqgi0px7qb18rup
2013-06-27 16:37:13 +02:00
Martin Trigaux cbec5c909b [MERGE] [FIX] hr_timesheet_invoice: use invoice amount instead of product and product not mandatory
bzr revid: mat@openerp.com-20130627143712-t2d9h4pewuhs0lhb
2013-06-27 16:37:12 +02:00
Thibault Delavallée f35f2d01dc [FIX] project_timesheet: still tracking references to stage management.
bzr revid: tde@openerp.com-20130627133221-o2or8el0dlxf89cv
2013-06-27 15:32:21 +02:00
Thibault Delavallée e362775853 [FIX] project_timesheet: removed reference to state field of task
bzr revid: tde@openerp.com-20130627130950-wguigeottgr2dck4
2013-06-27 15:09:50 +02:00
Thibault Delavallée 079dceda03 [FIX] project_mrp: added close field on task.type; commented some tests to clean afterwards.
bzr revid: tde@openerp.com-20130627125306-mgai12779onkgyc2
2013-06-27 14:53:06 +02:00
Thibault Delavallée d39855e1dc [FIX] project: fixed various tests
bzr revid: tde@openerp.com-20130627120840-1k3xabner2q0b7hl
2013-06-27 14:08:40 +02:00
Thibault Delavallée c8b6f2f370 [REF] project_issue: removed reference to base_stage, removed some unnecessary defaults, removed now unnecessary tests.
bzr revid: tde@openerp.com-20130627110733-8zh0xooq71zz2g0j
2013-06-27 13:07:33 +02:00
Thibault Delavallée 2bd74561ad [FIX] hr_recruitment: removed get_default_email that was in most cases unnecessary
bzr revid: tde@openerp.com-20130627100922-upqi33ex4v601gng
2013-06-27 12:09:22 +02:00
Thibault Delavallée 944f9f7f0b [FIX] project_issue: fixed loop, added date_last_stage_update field
bzr revid: tde@openerp.com-20130627100535-romfzhxuvb5awls2
2013-06-27 12:05:35 +02:00
Thibault Delavallée 9dfa8563ef [REF] hr_recruitment: removed base_stage inheritance, state field. Updated views / reports. Still not updated subtypes.
bzr revid: tde@openerp.com-20130627094807-8vg21s2w0lqblrza
2013-06-27 11:48:07 +02:00
Turkesh Patel (Open ERP) 2cc979465b [MRG] merge with lp:openobject-addons
bzr revid: tpa@tinyerp.com-20130627092043-ha5na6bxkj434y0y
2013-06-27 14:50:43 +05:30
Christophe Matthieu bb92e7daf0 [FIX] checkbox position for boolean field in list editable. Remove padding on the field for a good resizing and position and add margin on input
bzr revid: chm@openerp.com-20130627091705-ry0689d3dg4izhn4
2013-06-27 11:17:05 +02:00
Thibault Delavallée 41ea3d6eaf [FIX] crm_todo: still fixing views
bzr revid: tde@openerp.com-20130627090430-zkz6auqcjoj5r95x
2013-06-27 11:04:30 +02:00
Thibault Delavallée 77f99af456 [FIX] crm_todo: fixed reference to state
bzr revid: tde@openerp.com-20130627090257-g6dk131mtbfj4jlx
2013-06-27 11:02:57 +02:00
Martin Trigaux c36a2dfb33 [MERGE] [FIX] l10n_ch: reStructuredText in description file, courtesy of Yannick Vaucher (Camptocamp)
lp bug: https://launchpad.net/bugs/1183248 fixed

bzr revid: mat@openerp.com-20130627075730-k5xe5k68qlv0wufm
2013-06-27 09:57:30 +02:00
Thibault Delavallée 4864807395 [FIX] project_*: various fixes in views.
bzr revid: tde@openerp.com-20130627075424-j9ggzi62b24yk3g7
2013-06-27 09:54:24 +02:00
Thibault Delavallée eccdc062ce [MERGE] Sync with trunk
bzr revid: tde@openerp.com-20130627073758-fqjrshbu1zn35v1r
2013-06-27 09:37:58 +02:00
Launchpad Translations on behalf of openerp 0cc9de33fa Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130627061934-xdytzx3ryrn54izu
2013-06-27 06:19:34 +00:00
Launchpad Translations on behalf of openerp 75771769d2 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130627053640-vgvz6r1d7ck2lvvp
2013-06-27 05:36:40 +00:00
Maxime Chambreuil 2fc0bad963 [FIX] Wrong account type
bzr revid: maxime.chambreuil@savoirfairelinux.com-20130626214244-8qtjsphulr3ss0rh
2013-06-26 17:42:44 -04:00
Denis Ledoux 1d85a0648c [FIX]google_drive,google_base_account: back to httpllib
bzr revid: dle@openerp.com-20130626170035-rd4rzil801vbzxro
2013-06-26 19:00:35 +02:00
Thibault Delavallée 658079a4a9 [REF] addons: _track now uses browse records, not read dictionaries.
bzr revid: tde@openerp.com-20130626155802-mkquyzdrbp3zgg6b
2013-06-26 17:58:02 +02:00
Thibault Delavallée a497545cfd [REF] project_issue: removed state concept, updated views + reports + tracking.
bzr revid: tde@openerp.com-20130626155217-333zsa7hj8wjckcn
2013-06-26 17:52:17 +02:00
Denis Ledoux fab8c0682f [IMP]google_drive: ressource_id with regex
bzr revid: dle@openerp.com-20130626150719-ry3wdngld3wfmdrt
2013-06-26 17:07:19 +02:00
Denis Ledoux afa6ea8e4f [IMP]google_drive: cleanup
bzr revid: dle@openerp.com-20130626145213-37to2q3q9jh4lnsg
2013-06-26 16:52:13 +02:00
Thibault Delavallée 362aabce1a [FIX] project_long_term: fixed reference to task.state
bzr revid: tde@openerp.com-20130626143559-mxg8k5m8fbtkf06u
2013-06-26 16:35:59 +02:00
Thibault Delavallée 991f907dec [FIX] project_gtd: some fixes and improvements in task related views
bzr revid: tde@openerp.com-20130626143129-zio6ied20h7nnjct
2013-06-26 16:31:29 +02:00
Thibault Delavallée 669c5caedb [FIX] project_gtd: fixed reference to state field of task
bzr revid: tde@openerp.com-20130626142628-30ti78hg5xh0kue0
2013-06-26 16:26:28 +02:00
Thibault Delavallée 9e17dd58d8 [FIX] project: fixed various report views + some filters.
bzr revid: tde@openerp.com-20130626142242-aztr40zazsl20eif
2013-06-26 16:22:42 +02:00
Denis Ledoux f694c37b83 tmp
bzr revid: dle@openerp.com-20130626133552-gtfhzvxsi1oj3pdm
2013-06-26 15:35:52 +02:00
Thibault Delavallée 8fbfc997ae [REF] project: stage/status refactoring
Removed concept of state on project.task (and propagated report)
Removed python inheritance towards base_stage (specific code will be re-added)

bzr revid: tde@openerp.com-20130626132519-988nfq8pw8h8c8e8
2013-06-26 15:25:19 +02:00
Paramjit Singh Sahota cc05ab11df [IMP] Little Improvement.
bzr revid: psa@tinyerp.com-20130626104722-jpzcu0gnbbggitv8
2013-06-26 16:17:22 +05:30
Thibault Delavallée f95572d649 [FIX] project: removed old code that was messing with followers intorduced at revision 8435.
bzr revid: tde@openerp.com-20130626103756-kbbrp87gn2h5160h
2013-06-26 12:37:56 +02:00
Denis Ledoux 66520d9e8e [FLAKE8]
bzr revid: dle@openerp.com-20130626095736-0ni7i86wckc6coo5
2013-06-26 11:57:36 +02:00
Denis Ledoux 2da193d242 [FIX]base_setup,google_drive: res_config view correction for module google drive
bzr revid: dle@openerp.com-20130626095005-wx9x79pmqg8o2de7
2013-06-26 11:50:05 +02:00
Martin Trigaux 4910b5e654 [FIX] point_of_sale: don't group move lines if debit and credit
lp bug: https://launchpad.net/bugs/1127114 fixed

bzr revid: mat@openerp.com-20130626093412-or5k3eznjsxbvgu3
2013-06-26 11:34:12 +02:00
Denis Ledoux c74517990f [RENAME]google_docs => google_drive
bzr revid: dle@openerp.com-20130626093019-krwt5eamagmd5amu
2013-06-26 11:30:19 +02:00
Paramjit Singh Sahota 74bbd696f7 [MERGE] Sync with lp:openobject-addons.
bzr revid: psa@tinyerp.com-20130626065359-z17dk91q9c0rgfaw
2013-06-26 12:23:59 +05:30
Launchpad Translations on behalf of openerp fc8ca396d6 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20130625055814-0xhzq55bhk2yalpd
bzr revid: launchpad_translations_on_behalf_of_openerp-20130626061855-up0d9p61pblz40xa
bzr revid: launchpad_translations_on_behalf_of_openerp-20130625055818-kmfgjvq2jfrhd3zr
bzr revid: launchpad_translations_on_behalf_of_openerp-20130626061858-aacxz9wf3f2e4b0v
2013-06-26 06:18:58 +00:00
Foram Katharotiya (OpenERP) 7ac182ca17 [MERGE] with trunk
bzr revid: fka@tinyerp.com-20130626045953-197h7zmd7lv2dlyp
2013-06-26 10:29:53 +05:30