소스 검색

cambiar coste por variante en vez de template

deisy 5 년 전
부모
커밋
f5d43a8235
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      purchase.py

+ 2 - 2
purchase.py

@@ -13,7 +13,7 @@ class account_invoice(models.Model):
             if product:
                 template = self.env['product.template'].browse(product.product_tmpl_id.id)
                 if(template.price_change == 'purchase'):
-                    template.write({'standard_price': item.price_unit, 'last_purchase_date': date.today()})
+                    product.write({'standard_price': item.price_unit, 'last_purchase_date': date.today()})
                 else:
-                    template.write({'last_purchase_date': date.today()})
+                    product.write({'last_purchase_date': date.today()})
         return res