소스 검색

[Backend] Distributions : problème mise à jour des prix facturés #836

refactoring
Guillaume Bourgeois 1 년 전
부모
커밋
bb3a785d36
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      backend/controllers/DistributionController.php

+ 4
- 1
backend/controllers/DistributionController.php 파일 보기

@@ -534,8 +534,11 @@ class DistributionController extends BackendController

if ($invoicePrice != $productOrder->price) {
$productOrder->invoice_price = $invoicePrice;
$productOrder->save();
}
else {
$productOrder->invoice_price = null;
}
$productOrder->save();
}
}
}

Loading…
취소
저장