Browse Source

teac生态

董荣正 1 month ago
parent
commit
f079bfbd90
1 changed files with 6 additions and 3 deletions
  1. 6 3
      application/common/model/LedgerTeacEcolyChangeModel.php

+ 6 - 3
application/common/model/LedgerTeacEcolyChangeModel.php

@@ -13,7 +13,8 @@ class LedgerTeacEcolyChangeModel extends Model
     //0 TeaC·生态发展转入
     const TransferIn       = 0;
     const Sell             = 1;
-    
+    const GiftPay          = 2; //赠送支付
+    const GiftReceipt      = 3; //赠送收款
     /*
      * 支付状态
      * 0未支付 100支付中 200支付成功 400支付失败
@@ -21,7 +22,8 @@ class LedgerTeacEcolyChangeModel extends Model
     public $pay_status = [
         '-1'                   => '全部',
         self::TransferIn       => 'TeaC·生态发展划转',
-       
+       self::GiftPay          => '赠送支付',
+        self::GiftReceipt      => '赠送收款',
     
     ];
 
@@ -30,7 +32,8 @@ class LedgerTeacEcolyChangeModel extends Model
     {
         return [
             self::TransferIn    => __('TeaC·生态发展划转'),
-
+             self::GiftPay      => __('赠送支付'),
+            self::GiftReceipt  => __('赠送收款'),
          
         ];
     }