fubin 2 лет назад
Родитель
Сommit
c64a06140a
1 измененных файлов с 45 добавлено и 12 удалено
  1. 45 12
      src/main/java/com/dk/common/infrastructure/constant/Constant.java

+ 45 - 12
src/main/java/com/dk/common/infrastructure/constant/Constant.java

@@ -1474,9 +1474,9 @@ public class Constant {
     }
 
     /**
-     * @desc   : 冻结状态
      * @author : 宋扬
-     * @date   : 2024/3/16 17:17
+     * @desc : 冻结状态
+     * @date : 2024/3/16 17:17
      */
     public enum FreezeStatusType {
         //全部冻结
@@ -1806,14 +1806,19 @@ public class Constant {
         OUTBOUND("出库", "t_psi_outbound"),
         INTOBOUND("入库", "t_psi_inbound"),
         OTHER_OUTBOUND("其他出库", "t_psi_outbound"),
-        SALE_ORDER("销售出库", "t_psi_outbound" ),
-        SALE_RETURN("销退出库", "t_psi_outbound" ),
-        INVENTORY_LOSS("盘亏出库", "t_psi_outbound" ),
-        OTHER_INBOUND("其他入库", "t_psi_inbound" ),
-        PURCHASE_ORDER("采购入库", "t_psi_inbound" ),
-        PURCHASE_RETURN("采退入库", "t_psi_inbound" ),
-        INVENTORY_PROFIT("盘盈入库", "t_psi_inbound" ),
-        MOVE("库位移动", "t_psi_transfer" );
+        SALE_ORDER("销售出库", "t_psi_outbound"),
+        SALE_RETURN("销退出库", "t_psi_outbound"),
+        INVENTORY_LOSS("盘亏出库", "t_psi_outbound"),
+        OTHER_INBOUND("其他入库", "t_psi_inbound"),
+        PURCHASE_ORDER("采购入库", "t_psi_inbound"),
+        PURCHASE_RETURN("采退入库", "t_psi_inbound"),
+        INVENTORY_PROFIT("盘盈入库", "t_psi_inbound"),
+        MOVE("库位移动", "t_psi_transfer"),
+        ORDER("销售订单", "t_psi_order"),
+        REC_PAY_ITEM("收付款单明细", "t_mac_rec_pay_item"),
+        OTHER_RECEIVABLE("其他收入单", "t_mac_other_receivable"),
+        OTHER_PAYABLE("其他支出单", "t_mac_other_payable"),
+        ;
         //endregion
         //单据类型名称
         private String value;
@@ -1891,6 +1896,7 @@ public class Constant {
             this.flag = flag;
         }
     }
+
     /**
      * @author : 寇珊珊
      * @desc : 库存接收类型系统参数
@@ -1913,6 +1919,7 @@ public class Constant {
             this.flag = flag;
         }
     }
+
     /**
      * @author : 寇珊珊
      * @desc : 自动办理参数
@@ -1937,9 +1944,9 @@ public class Constant {
     }
 
     /**
-     * @desc   : 盘点状态
      * @author : 宋扬
-     * @date   : 2024/3/28 10:33
+     * @desc : 盘点状态
+     * @date : 2024/3/28 10:33
      */
     public enum CheckkStatus {
         //暂存
@@ -1963,4 +1970,30 @@ public class Constant {
             this.name = name;
         }
     }
+
+    /**
+     * @author : 付斌
+     * @desc :收款类型
+     * @date : 2024-03-15 13:42
+     */
+    public enum RpType {
+        SHOU_KUAN("收付款类型-收款"),
+        TUI_SHOU_KUAN("收付款类型-退收款"),
+        FU_KUAN("收付款类型-付款"),
+        TUI_FU_KUAN("收付款类型-退付款");
+
+        private String name;
+
+        public String getName() {
+            return name;
+        }
+
+        public void setName(String name) {
+            this.name = name;
+        }
+
+        RpType(String name) {
+            this.name = name;
+        }
+    }
 }