I've purchase orders that even though shipment has been received and invoices received and payed the PO's aren't being marked as done.
Am I missing something, please?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I've purchase orders that even though shipment has been received and invoices received and payed the PO's aren't being marked as done.
Am I missing something, please?
Is this this bug:
Probably. Thank you, Ray.
I dont know is it best solution but for me helped. I changed one line on purshase.py
if purchase.invoiced_rate == 100.00: to if purchase.invoiced_rate > 0:
def _invoiced(self, cursor, user, ids, name, arg, context=None):
res = {}
for purchase in self.browse(cursor, user, ids, context=context):
invoiced = False
if purchase.invoiced_rate > 0:
invoiced = True
res[purchase.id] = invoiced
return res
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
importing Purchase Order shown as a RFQ
Rozwiązane
|
|
2
maj 25
|
2215 | |
|
3
gru 24
|
6351 | ||
|
1
lip 24
|
3111 | ||
Purchase Product Description Incorrect
Rozwiązane
|
|
1
cze 24
|
2164 | |
|
2
cze 24
|
3033 |
I've just exoeruence this in Odoo v8 SaaS, for which I could not find an available community module to reopen or cancel the purchase orders. Going back to launchpad from well over a year ago, this particular PO problem looks like a longtime bug that has yet to be resolved.