通宇推送nc;
This commit is contained in:
@@ -37,6 +37,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="isInvoice" column="is_invoice" />
|
||||
<result property="invoiceMakeTime" column="invoice_make_time" />
|
||||
<result property="applyNumber" column="apply_number" />
|
||||
<result property="taxAmount" column="tax_amount" />
|
||||
<result property="taxFreeFee" column="tax_free_fee" />
|
||||
<result property="accountInformation" column="account_information" />
|
||||
</resultMap>
|
||||
|
||||
|
||||
@@ -359,4 +362,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
#{taxFreeFee}
|
||||
)
|
||||
</insert>
|
||||
<select id="getInvoiceItemName" parameterType="java.lang.String" resultType="java.lang.String">
|
||||
select SUBJECT_NAME from "NGWL_TEST_SYSTEM".EXPENSE_ACCOUNT where status = 1 and SUBJECT_CODE = #{invoiceItemId} limit 1
|
||||
</select>
|
||||
|
||||
<select id="getCustomerCodeNc" parameterType="java.lang.String" resultType="java.lang.String">
|
||||
SELECT CUSTOMER_NC_CODE FROM NGWL_TEST_USER."USER_SHIPPER" where del_flag = 1 and SHIPPER_ID = #{actualInvoiceCustomerId} limit 1
|
||||
</select>
|
||||
|
||||
<select id="getDocumentPreparerNcCode" parameterType="java.lang.String" resultType="java.lang.String">
|
||||
SELECT DOCUMENT_PREPARER_NC_CODE FROM NGWL_TEST_USER."USER" where del_flag = 1 and user_id = #{salesmanId} limit 1
|
||||
</select>
|
||||
|
||||
<select id="getSettlementCurrencyNcCode" parameterType="java.lang.String" resultType="java.lang.String">
|
||||
SELECT NC_SYSTEM_CODE FROM NGWL_TEST_WLHY."TMS_SETTLEMENT_EXCHANGE_RATE" where IS_DELETE = '0' and ENGLISH_NAME = #{settlementCurrency} limit 1
|
||||
</select>
|
||||
</mapper>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.linke.finance.domain.reconciliationItem.repository.mapper.ReconciliationItemMapper">
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user