客户维护销售订单

This commit is contained in:
“wanyongkang”
2024-03-22 11:17:35 +08:00
parent d1d8d34657
commit 33853e839f
3 changed files with 357 additions and 3 deletions

View File

@@ -35,4 +35,12 @@ class FollowRecord extends Model
];
return $this->field('user_id,follow_status')->where($where)->fetchAll();
}
//获取营业销售信息
public function getSellInfo($where1 = [], $where2 = '') {
return $this->field('product_type,sell_money,sell_type')
->where($where1)
->where($where2)
->fetchAll();
}
}