|
|
@@ -369,14 +369,14 @@ class ProductService extends AlibabaAgentBaseService
|
|
369
|
369
|
// ================================================================
|
|
370
|
370
|
|
|
371
|
371
|
/**
|
|
372
|
|
- * 对价格进行加价处理(加价20%)
|
|
|
372
|
+ * 对价格进行加价处理(加价30%)
|
|
373
|
373
|
*
|
|
374
|
374
|
* @param float $price 原价
|
|
375
|
375
|
* @return float 加价后的价格
|
|
376
|
376
|
*/
|
|
377
|
377
|
protected function applyMarkup(float $price): float
|
|
378
|
378
|
{
|
|
379
|
|
- return round($price * 1.2, 2);
|
|
|
379
|
+ return round($price * 1.3, 2);
|
|
380
|
380
|
}
|
|
381
|
381
|
|
|
382
|
382
|
// ================================================================
|