...
|
...
|
@@ -41,16 +41,16 @@ class YHMOrders_Models_Complain_Client { |
|
|
/**
|
|
|
* 添加投诉
|
|
|
* @param int $order_code
|
|
|
* @param int $user_type
|
|
|
* @param int $uid
|
|
|
* @param int $user_type
|
|
|
* @param string $content
|
|
|
* @param string $image_path
|
|
|
*/
|
|
|
static function setComplain($order_code, $user_type, $uid, $content, $image_path,$pid = 0) {
|
|
|
static function setComplain($order_code, $uid, $user_type, $content, $image_path,$pid = 0) {
|
|
|
if ((int) $order_code < 1 || (int) $uid < 1) {
|
|
|
return 0;
|
|
|
}
|
|
|
return self::dao()->setComplain( $order_code, (int) $uid, $user_type, $content, $image_path, $pid);
|
|
|
return self::dao()->setComplain( $order_code, $uid, $user_type, $content, $image_path, $pid);
|
|
|
}
|
|
|
/*
|
|
|
* 获取投诉信息
|
...
|
...
|
|