wupengfei 2 년 전
부모
커밋
affba1ee2e
2개의 변경된 파일19개의 추가작업 그리고 16개의 파일을 삭제
  1. 4 12
      .idea/workspace.xml
  2. 15 4
      application/api/controller/CloudWallet.php

+ 4 - 12
.idea/workspace.xml

@@ -2,6 +2,7 @@
 <project version="4">
   <component name="ChangeListManager">
     <list default="true" id="39916099-6c76-4a34-b5a2-40f5b4c0c928" name="Default Changelist" comment="">
+      <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/application/api/controller/CloudWallet.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/CloudWallet.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
@@ -218,7 +219,7 @@
       <workItem from="1665621143495" duration="2513000" />
       <workItem from="1665708328289" duration="8744000" />
       <workItem from="1665794611802" duration="1412000" />
-      <workItem from="1665967743750" duration="6408000" />
+      <workItem from="1665967743750" duration="7102000" />
     </task>
     <task id="LOCAL-00001" summary=".">
       <created>1663731279977</created>
@@ -258,10 +259,10 @@
       <screen x="0" y="0" width="2560" height="1400" />
     </state>
     <state x="1242" y="398" key="CommitChangelistDialog2/0.0.2560.1400@0.0.2560.1400" timestamp="1663731298581" />
-    <state x="113" y="131" width="2188" height="1150" key="DiffContextDialog" timestamp="1665971423773">
+    <state x="113" y="131" width="2188" height="1150" key="DiffContextDialog" timestamp="1665986269684">
       <screen x="0" y="0" width="2560" height="1400" />
     </state>
-    <state x="113" y="131" width="2188" height="1150" key="DiffContextDialog/0.0.2560.1400@0.0.2560.1400" timestamp="1665971423773" />
+    <state x="113" y="131" width="2188" height="1150" key="DiffContextDialog/0.0.2560.1400@0.0.2560.1400" timestamp="1665986269684" />
     <state x="1125" y="483" key="FileChooserDialogImpl" timestamp="1665476140468">
       <screen x="0" y="0" width="2560" height="1400" />
     </state>
@@ -303,15 +304,6 @@
           </properties>
           <option name="timeStamp" value="1" />
         </line-breakpoint>
-        <line-breakpoint enabled="true" type="php-line-method">
-          <url>file://$PROJECT_DIR$/application/api/controller/CloudWallet.php</url>
-          <line>279</line>
-          <properties>
-            <option name="className" value="\app\api\controller\CloudWallet" />
-            <option name="methodName" value="getAcctInfo" />
-          </properties>
-          <option name="timeStamp" value="2" />
-        </line-breakpoint>
       </breakpoints>
     </breakpoint-manager>
   </component>

+ 15 - 4
application/api/controller/CloudWallet.php

@@ -356,8 +356,18 @@ class CloudWallet extends Base
 
      * @return name:ret_code type:string default:0 desc:0000:成功,其他异常
      * @return name:ret_msg type:string default:0 desc:请求结果描述
-     * @return name:random_key type:string default:0 desc:随机因子key,有效期30分钟
-     * @return name:random_value type:string default:0 desc:随机因子值,有效期30分钟
+     * @return name:page_no type:int default:0 desc:当前页
+     * @return name:total_page type:int default:0 desc:总页数
+     * @return name:total_in_amt type:float default:0 desc:入账总金额,表示当前查询条件下的入账总金额,单位:元
+     * @return name:total_out_amt type:float default:0 desc:出账总金额,表示当前查询条件下的出账总金额,单位:元
+     * @return name:total_num type:int default:0 desc:总条数
+     * @return name:acctbal_list type:array default:0 desc:列表
+     * @return name:acctbal_list.txn_time type:string default:0 desc:商户系统交易时间
+     * @return name:acctbal_list.amt type:float default:0 desc:交易后余额。单位:元
+     * @return name:acctbal_list.memo type:string default:0 desc:资金流水备注
+     * @return name:acctbal_list.txn_type type:string default:0 desc:交易类型[用户充值:USER_TOPUP,手续费收取:SERVICE_FEE,普通消费:GENERAL_CONSUME,手续费应收应付核销:CAPITAL_CANCEL]
+     * @return name:acctbal_list.flag_dc type:string default:0 desc:账户出入账标识[DEBIT:出账 CREDIT:入账]
+     * @return name:acctbal_list.jno_cli type:string default:0 desc:商户订单号。资金流水对应的商户交易单号,一条商户订单号可能对应多条资金流水
      */
     public function getAcctSerial()
     {
@@ -371,14 +381,15 @@ class CloudWallet extends Base
             'timestamp' => $current,
             'oid_partner' => OID_PARTNER,
             'user_id' => $this->prefix.$user_id,
+            'user_type' => 'INNERUSER',
             'acct_type' => $acct_type,
-            'date_start' => date("YmdHis",strtotime('-365 days')),
+            'date_start' => date("YmdHis",strtotime('-180 days')),
             'date_end' => $current,
             'flag_dc' => $flag_dc,
             'page_no' => $page_no,
             'page_size' => $page_size,
         ];
-        var_dump($params);
+        //  var_dump($params);
         $url =  $url = $this->cloud_url['acctserial'][$this->env];
         $result = LLianPayClient::sendRequest($url, json_encode($params,JSON_UNESCAPED_UNICODE));
         $this->success('ok',json_decode($result,true));