Commit 351dcb52 authored by clone's avatar clone

bug

parent c4e54513
......@@ -870,8 +870,9 @@ class OrderLogService
//税费
$taxesModel = new OTaxes();
$fieldTaxes = "bargain_id,fee,total_fee,father_id,operation_date,agent_id,agent_name,scale";
$taxes = $taxesModel->getBargainTaxes($params["bargain_id"], $fieldTaxes);
foreach ($taxes as $items){
$taxesArr = $taxesModel->getBargainTaxes($params["bargain_id"], $fieldTaxes);
$taxes = array();
foreach ($taxesArr as $items){
$taxes[$items["operation_date"]][] = $items;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment