Skip to content
Matt Taylor edited this page Mar 10, 2016 · 7 revisions

Only one purchase UoM per product

The purchase unit of measure should be an attribute of product supplier, not of the product.

https://github.com/odoo/odoo/issues/9192

Rounding is broken on unit conversions

1 foot = 12.01 inch

It seems we looked at this before. It had the wrong order of operations. It should be scaled, then rounded, not the other way around.

https://github.com/odoo/odoo/pull/8183

Autopost Created Moves option removed

It doesn't exist anymore. It appears that journal entries all autopost. There is a button no the journal entry to reverse the entry. Or, use the account_cancel module.

Journal entry date != actual stock move date

This problem applies to purchase orders and manufacturing orders. The order_date from the PO (date_planned from the MO) is carried through to the journal entry date. The following issue (for sales orders) is similar, although it may describe the problem inaccurately (move.date vs move.date_expected).

https://github.com/odoo/odoo/issues/4894

form default dates are wrong

Actually gets the last restart date of the service.

For example: date_order field on purchase.order calls fields.Datetime.now(). The purchase order actually gets an older date than that.

date_order = fields.Datetime('Order Date', required=True, states=READONLY_STATES, select=True, copy=False, default=fields.Datetime.now(),

No warning for product with no orderpoint

https://github.com/odoo/odoo/issues/3137

Wrong distribution on PO line qty_received

qty_received distributed wrong with multi PO lines for the same product

https://github.com/asphaltzipper/azi-odoo-modules/issues/4