parent
46be46253f
commit
eeb75a95a1
@ -0,0 +1,29 @@ |
|||||||
|
package com.jianshui.platform.service; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: kk |
||||||
|
* @Description: 单据管理 |
||||||
|
* @DateTime: 2023/6/26 11:57 |
||||||
|
*/ |
||||||
|
public interface BillInfoAddPService { |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -1,32 +0,0 @@ |
|||||||
package com.jianshui.platform.service; |
|
||||||
|
|
||||||
|
|
||||||
import com.jianshui.invoice.domain.dto.HXResponse; |
|
||||||
import com.jianshui.platform.dto.InvoiceAdd.BillInfoPDTO; |
|
||||||
|
|
||||||
/** |
|
||||||
* @Author: kk |
|
||||||
* @Description: 单据管理 |
|
||||||
* @DateTime: 2023/6/26 11:57 |
|
||||||
*/ |
|
||||||
public interface BillInfoAddService { |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} |
|
@ -0,0 +1,30 @@ |
|||||||
|
package com.jianshui.platform.service.impl; |
||||||
|
|
||||||
|
import com.jianshui.invoice.mapper.BillInfoMapper; |
||||||
|
import com.jianshui.platform.service.BillInfoAddPService; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @Author: kk |
||||||
|
* @Description: 单据管理 |
||||||
|
* @DateTime: 2023/6/26 11:58 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@Slf4j |
||||||
|
public class BillInfoAddPServiceImpl implements BillInfoAddPService { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private static BillInfoMapper billInfoMapper; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -1,51 +0,0 @@ |
|||||||
package com.jianshui.platform.service.impl; |
|
||||||
|
|
||||||
import cn.hutool.core.bean.BeanUtil; |
|
||||||
import com.jianshui.common.core.domain.entity.Companyservice; |
|
||||||
import com.jianshui.common.exception.jianshui.JianshuiServiceException; |
|
||||||
import com.jianshui.common.utils.SecurityUtils; |
|
||||||
import com.jianshui.common.utils.ValidateUtils; |
|
||||||
import com.jianshui.invoice.domain.BillInfo; |
|
||||||
import com.jianshui.invoice.domain.dto.HXResponse; |
|
||||||
import com.jianshui.invoice.enums.ChannelSource; |
|
||||||
import com.jianshui.invoice.factory.IInvoiceServiceFactory; |
|
||||||
import com.jianshui.invoice.mapper.BillInfoMapper; |
|
||||||
import com.jianshui.invoice.mapper.InvoiceMapper; |
|
||||||
import com.jianshui.invoice.service.IInvoiceApiService; |
|
||||||
import com.jianshui.platform.dto.InvoiceAdd.BillInfoPDTO; |
|
||||||
import com.jianshui.platform.dto.InvoiceAdd.species.BillInfoSDGenInvoicePDTO; |
|
||||||
import com.jianshui.platform.dto.InvoiceAdd.species.BillInfoSDSpecialInvoicePDTO; |
|
||||||
import com.jianshui.platform.service.BillInfoAddService; |
|
||||||
import com.jianshui.platform.service.InvoiceAddService; |
|
||||||
import com.jianshui.platform.utils.InvoiceAllYhdjUtils; |
|
||||||
import com.jianshui.system.domain.InvoiceAllYhdj; |
|
||||||
import com.jianshui.system.mapper.CompanyserviceMapper; |
|
||||||
import com.jianshui.system.service.IServiceManageService; |
|
||||||
import lombok.extern.slf4j.Slf4j; |
|
||||||
import org.springframework.beans.factory.annotation.Autowired; |
|
||||||
import org.springframework.stereotype.Service; |
|
||||||
|
|
||||||
import java.util.Optional; |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* @Author: kk |
|
||||||
* @Description: 单据管理 |
|
||||||
* @DateTime: 2023/6/26 11:58 |
|
||||||
*/ |
|
||||||
@Service |
|
||||||
@Slf4j |
|
||||||
public class BillInfoAddServiceImpl implements BillInfoAddService { |
|
||||||
|
|
||||||
@Autowired |
|
||||||
private static BillInfoMapper billInfoMapper; |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} |
|
Loading…
Reference in new issue