Commit Graph

405 Commits

Author SHA1 Message Date
Numerigraphe - Lionel Sausin 779fa653c1 [IMP] Added missing vim mode lines
lp bug: https://launchpad.net/bugs/524279 fixed

bzr revid: ls@numerigraphe.fr-20111122085138-x6u2lcl6vrpyybp9
2011-11-22 09:51:38 +01:00
Fabien Pinckaers c34db7986c [IMP] board view, new style
bzr revid: fp@tinyerp.com-20111116191917-2ggzox9ewvg9ciru
2011-11-16 20:19:17 +01:00
ssu 5a0a46cfa8 [IMP]procurement_&_stock : views of both are modified by board and column
bzr revid: ssu@ssu-desktop-20111115100928-hlvft1mh5fw0mrkn
2011-11-15 15:39:28 +05:30
Fabien Pinckaers ecc200a14f merge coverage purchase
bzr revid: fp@tinyerp.com-20111113160732-7ic5t0igzh0jw2pm
2011-11-13 17:07:32 +01:00
Fabien Pinckaers 6cbf19d815 [Merge] es_MX from Vauxoo
bzr revid: fp@tinyerp.com-20111111144930-5o37idpxdvyhtfri
2011-11-11 15:49:30 +01:00
Fabien Pinckaers 77a228421e merge: digital precision product uom
bzr revid: fp@tinyerp.com-20111111135906-kljtmr0r5tb59ia5
2011-11-11 14:59:06 +01:00
DBR (OpenERP) 38aa5ab1b8 [Merge]with: lp:openobject-addons
bzr revid: dbr@tinyerp.com-20111110092719-bw74ofhw2717xxfo
2011-11-10 14:57:19 +05:30
Antony Lesuisse 35c1459e2e [FIX] procurement product uom prefix
bzr revid: al@openerp.com-20111108232206-kvf2wgh44cltgpo1
2011-11-09 00:22:06 +01:00
Fabien Pinckaers 12c3743fb8 fix
bzr revid: fp@tinyerp.com-20111108213314-fhpcr940alkilsad
2011-11-08 22:33:14 +01:00
Launchpad Translations on behalf of openerp 6f77ce98c7 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111105055805-1lmgpe8dot0mqkd3
bzr revid: launchpad_translations_on_behalf_of_openerp-20111105060437-gd0ilsg6cdytkvq2
2011-11-05 06:04:37 +00:00
Bogdan Stanciu e19e1fe100 [FIX] some product_qty fields are set with hardcoded decimal precision, and some without. I added dp on all occurrences of product_qty.
lp bug: https://launchpad.net/bugs/884179 fixed

bzr revid: bogdanovidiu.stanciu@gmail.com-20111031113830-drdqvvrz032nrzh4
2011-10-31 12:38:30 +01:00
Quentin (OpenERP) 8490a55722 [IMP] procurement: faster computation by the scheduler. Original idea from Omar (Pexego)
bzr revid: qdp-launchpad@openerp.com-20111027144815-l2m1jmkfpubh8g1q
2011-10-27 16:48:15 +02:00
Harry (OpenERP) 5cdac204cd [MERGE] merged parent branch
bzr revid: hmo@tinyerp.com-20111020073513-3np4krmflvtwqhuk
2011-10-20 13:05:13 +05:30
Harry (OpenERP) b8229bd2eb [IMP] procurement: move run_scheduler method into schedulers.py file
bzr revid: hmo@tinyerp.com-20111020072723-zx2k4mngl57n0a28
2011-10-20 12:57:23 +05:30
Launchpad Translations on behalf of openerp e3ffcd94d6 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111019044609-vzsrc1a6nn17ahbo
bzr revid: launchpad_translations_on_behalf_of_openerp-20111019055343-7s4rmkn8lpxvyt4n
bzr revid: launchpad_translations_on_behalf_of_openerp-20111019060521-3smagczfoys4j5wl
2011-10-19 06:05:21 +00:00
Quentin (OpenERP) 00c0894d91 [MERGE] lp:802322
bzr revid: qdp-launchpad@openerp.com-20111018084234-ele9nnaowd83nrsv
2011-10-18 10:42:34 +02:00
Quentin (OpenERP) 460979f440 [FIX] procurement: compute scheduler was sometimes using an already closed cursor
lp bug: https://launchpad.net/bugs/865956 fixed

bzr revid: qdp-launchpad@openerp.com-20111018074422-1trt4gazqm7t27l9
2011-10-18 09:44:22 +02:00
Israel Fermin Montilla 52b23d7040 [ADD] added es_MX.po translation files for each module
bzr revid: israel@openerp.com.ve-20111007201144-kap9ou7w8g92ai02
2011-10-07 16:11:44 -04:00
Israel Fermin Montilla 9b189d5a90 [ADD] added the es_VE.po translation files for each module
bzr revid: israel@openerp.com.ve-20111007193500-i7k8h9t28nhxioap
2011-10-07 15:35:00 -04:00
Stephane Wirtel 1ba826a4ea [REF] Rename the categories
bzr revid: stw@openerp.com-20110928141258-9hfn5rfhboar2e5z
2011-09-28 16:12:58 +02:00
Fabien Pinckaers 3497fb3bd8 merge
bzr revid: fp@tinyerp.com-20110924081405-tvmst7wzluwmhiir
2011-09-24 10:14:05 +02:00
Olivier Dony 253eaa462d [FIX] fix useless and invalid casts in domain fields
The ORM will automatically append 00:00:00 to a date
literal that is being compared with a timestamp field
with operators '>' or '>=', and 23:59:59 if compared
with operators '<' or '<='.
So a trivial domain for 'Today' is:
[('tstamp_field','>=',current_date),('tstamp_field','<=',current_date)]
taking advantage of the current_date helper that
is defined as the current date in YYYY-MM-DD format.

bzr revid: odo@openerp.com-20110924005547-pvgblte6r14so7mw
2011-09-24 02:55:47 +02:00
Antony Lesuisse ccc56996dd [MERGE] trunk-search_views or instead of and in groups
bzr revid: al@openerp.com-20110923172247-pj5ii3pxisiyco6k
2011-09-23 19:22:47 +02:00
Kuldeep Joshi (OpenERP) 0fab306a07 [IMP] merge
bzr revid: kjo@tinyerp.com-20110923131133-tzeypu8fta0ygiqx
2011-09-23 18:41:33 +05:30
Mayur Maheshwari (OpenERP) 0db5bfc87c [MERGE]: Merge with lp:openobject-addons
bzr revid: mma@tinyerp.com-20110922104629-mwupktl4kh6wbp56
2011-09-22 16:16:29 +05:30
Fabien Pinckaers 3b91aa0c29 merge
lp bug: https://launchpad.net/bugs/783135 fixed

bzr revid: fp@tinyerp.com-20110921071748-6oazxot1jv12jrp1
2011-09-21 09:17:48 +02:00
ron@tinyerp.com 3ac0b6a7b9 [IMP]Procurment: Fixed:when scheduler is run by admin all new PO of other company/warehouse is having wrong company (of admin) instead of respective
bzr revid: ron@tinyerp.com-20110920090222-np5er3i3q9onay07
2011-09-20 14:32:22 +05:30
Kuldeep Joshi (OpenERP) 9b83780846 [IMP]change in procurement order search view
bzr revid: kjo@tinyerp.com-20110919115447-83eh30c35dfv08qr
2011-09-19 17:24:47 +05:30
Launchpad Translations on behalf of openerp bed48f5183 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110919044121-yyjx7ztcrkddy2tp
2011-09-19 04:41:21 +00:00
Fabien Pinckaers 05d6d35cc8 [Merge]
bzr revid: fp@tinyerp.com-20110917110317-34apz3spz1h9azjl
2011-09-17 13:03:17 +02:00
ron@tinyerp.com 5b7af7eb60 [IMP]procurement, purchase: Improved PEP standard
bzr revid: ron@tinyerp.com-20110916132442-lp0kaaik6bubyj2q
2011-09-16 18:54:42 +05:30
ron@tinyerp.com 191952b5b8 [IMP]procurement: Removed active field conditon from product search query, Added sorting by order of read query, removed unnecessary len used
bzr revid: ron@tinyerp.com-20110916130150-zd0x5fvhpy6808ws
2011-09-16 18:31:50 +05:30
ron@tinyerp.com 70e83c0d9c [IMP]procurment: Added context on search method
bzr revid: ron@tinyerp.com-20110915084300-5algmu80v5n7472i
2011-09-15 14:13:00 +05:30
ron@tinyerp.com 4ac423a87a [IMP]procurment, purchase, stock: Improved stock demo data, added limit and offset in search query, improved
query if company_id not avail, also improved code of make_po() function

bzr revid: ron@tinyerp.com-20110915083333-ab8p3kp8lu1fvq53
2011-09-15 14:03:33 +05:30
ron@tinyerp.com 8023c73755 [MERGE]merged lp:openobject-addons
bzr revid: ron@tinyerp.com-20110915064354-2tuay8p30voov8g2
2011-09-15 12:13:54 +05:30
Xavier Morel 178fec5c64 [FIX] str 'in' str (singletons missing tuple-building comma), in @colors attributes. Replace by string equality
bzr revid: xmo@openerp.com-20110911135025-v9yct8pnjfj21tyj
2011-09-11 15:50:25 +02:00
Launchpad Translations on behalf of openerp 752df5acbd Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110905055933-cld0r3vv3jmiu5bx
bzr revid: launchpad_translations_on_behalf_of_openerp-20110906044018-ajk9u7zfqoiatufs
2011-09-06 04:40:18 +00:00
Xavier Morel b0a1441722 [IMP] remove date widget on datetime fields in search view
bzr revid: xmo@openerp.com-20110824135835-ooqqw87301n6mxja
2011-08-24 15:58:35 +02:00
Mayur Maheshwari (OpenERP) 6195684bf0 [MERGE]Merge with openobject-addons
bzr revid: mma@tinyerp.com-20110823100049-w8ur10wapzm2xzf7
2011-08-23 15:30:49 +05:30
Launchpad Translations on behalf of openerp 6aeed3c0d9 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110805044024-q7ugk62igzbg3qjo
2011-08-05 04:40:24 +00:00
Mayur Maheshwari (OpenERP) b168c32243 [IMP]stock_location:Improvement is done in yml
bzr revid: mma@tinyerp.com-20110804131705-k43ti5qxu3fo84gb
2011-08-04 18:47:05 +05:30
Launchpad Translations on behalf of openerp be1a659658 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110803043726-ofn4l3px2ooldl00
bzr revid: launchpad_translations_on_behalf_of_openerp-20110804043456-fnef8uwgur5od0en
2011-08-04 04:34:56 +00:00
Launchpad Translations on behalf of openerp 78491dfe17 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110715045140-vrbatydl7fa97wok
bzr revid: launchpad_translations_on_behalf_of_openerp-20110716045705-9z1giql3prjl7zdd
2011-07-16 04:57:05 +00:00
ron@tinyerp.com f059576ba8 [IMP]procurment:Fixed=>changed the all select queries which bypassed the record rules in procurment.py and schedular.py,and change the output location configuaration with company_id=False because of that it will be access by child company
bzr revid: ron@tinyerp.com-20110705061750-7g73nancsfijk0re
2011-07-05 11:47:50 +05:30
Olivier Dony 06fb14130a [IMP] removed method=True params from all fields.function
Server revision 3495 odo@openerp.com-20110701232328-flgxulxva70vnyxr
removed the need for passing method=True to function fields,
so this is the equivalent addons fix, removing it everywhere.
Please be careful from now on, and do not pass it anymore!

bzr revid: odo@openerp.com-20110701234124-a61zl0idvdfz3hyb
2011-07-02 01:41:24 +02:00
ron@tinyerp.com 4aa687cf3f [FIX]purchase,procurement:Fixed=>Generate Sale order via Non admin User Po generated with wrong warehouse and company ,For information Traceback Generated after run the ORDERPOINT it is a sequence problem and it has been fixed in lp:787052 :
lp bug: https://launchpad.net/bugs/802322 fixed

bzr revid: ron@tinyerp.com-20110629051800-u71iztvvtbgsyzuq
2011-06-29 10:48:00 +05:30
Launchpad Translations on behalf of openerp 154ee1ca4d Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110621043725-4i5mlfx0gnvi6ih8
2011-06-21 04:37:25 +00:00
ron@tinyerp.com fecd5e29f4 [IMP]procurement:improvements in lines breack code
bzr revid: ron@tinyerp.com-20110606103604-gh7o9jpm5lfnc3ay
2011-06-06 16:06:04 +05:30
ron@tinyerp.com bcb551f338 [IMP]procurement:fixed=>Lines breaks in Traslation string
bzr revid: ron@tinyerp.com-20110606101233-o3hi56uin99gdj60
2011-06-06 15:42:33 +05:30
ron@tinyerp.com 4887184977 [IMP]procurement:Improvement in Traslation string
bzr revid: ron@tinyerp.com-20110602120455-lgadptlti782btgm
2011-06-02 17:34:55 +05:30