template-data.xml 3.26 KB
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:beans="http://www.springframework.org/schema/beans"
       xmlns:util="http://www.springframework.org/schema/util"
       xsi:schemaLocation="
                http://www.springframework.org/schema/beans http://localhost:8080/schema/www.springframework.org/schema/beans/spring-beans.xsd
                http://www.springframework.org/schema/util http://localhost:8080/schema/www.springframework.org/schema/util/spring-util.xsd
             ">
    <util:map id="selectType" map-class="java.util.LinkedHashMap">
        <beans:entry key="MANUAL"              value="总账-手工凭证" />
        <beans:entry key="CAPITAL_TRANSFER"    value="总账-资金调拨" />
        <beans:entry key="AP_INVOICE"          value="应付-发票" />
        <beans:entry key="AP_PAYMENT"          value="应付-付款单" />
        <beans:entry key="AP_RECONCILE"        value="应付-核销单" />
        <beans:entry key="AR_INVOICE"          value="应收-发票" />
        <beans:entry key="AR_RECEIPT"          value="应收-收款单" />
        <beans:entry key="AR_RECONCILE"        value="应收-核销单" />
        <beans:entry key="RM_SETTLEMENT"       value="零售-结算" />
        <beans:entry key="RM_CASH_DEPOSIT"     value="零售-现金缴款" />
        <beans:entry key="RM_DAILY_EXPENSE"    value="零售-门店费用" />
        <beans:entry key="RM_DAILY_PURCHASE"   value="零售-日常采购单" />
        <beans:entry key="INV_PUR_RECEIPT"     value="库存-采购收货" />
        <beans:entry key="INV_PUR_RETURN"      value="库存-采购退货" />
        <beans:entry key="INV_SALE_RECEIPT"    value="库存-销售收货" />
        <beans:entry key="INV_SALE_RETURN"     value="库存-销售退货" />
        <beans:entry key="INV_ADJUSTMENT"      value="库存-库存调整" />
        <beans:entry key="INV_TRANSFER"         value="库存-库存转移" />
        <beans:entry key="COST_UPDATE"         value="库存-成本调整" />
        <beans:entry key="INV_SHIFT"           value="库存-库存调拨" />
        <beans:entry key="FA_CREATED"          value="固定资产-录入" />
        <beans:entry key="FA_DEPRECIATION"     value="固定资产-折旧" />
        <beans:entry key="FA_ADJUSTMENT"       value="固定资产-调整" />
        <beans:entry key="FA_DISPOSAL"         value="固定资产-报废" />
        <beans:entry key="SETTLE"               value="总账-结账" />
    </util:map>
    <util:map id="selectSubType" map-class="java.util.LinkedHashMap">
        <beans:entry key="ACCOUNTING"              value="记" />
        <beans:entry key="RECEIPT"           value="收" />
        <beans:entry key="PAYMENT"          value="付" />
        <beans:entry key="TRANSFER"          value="转" />
    </util:map>

    <util:map id="selectCurrencyCode" map-class="java.util.LinkedHashMap">
        <beans:entry key="CNY"              value="人民币" />
    </util:map>

    <util:map id="selectApproveResult" map-class="java.util.LinkedHashMap">
        <beans:entry key="AGREED"              value="同意" />
        <beans:entry key="DISAGREED"           value="否决" />
    </util:map>
</beans>