| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import javax.annotation.Resource; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | |
| | | { |
| | | return invoiceBillDetailMapper.deleteInvoiceBillDetailById(id); |
| | | } |
| | | |
| | | /** |
| | | * 根据发票管理ID删除发票业务商品明细 |
| | | * |
| | | * @param invoiceManageId 发票管理ID |
| | | * @return 结果 |
| | | */ |
| | | @Override |
| | | public int deleteInvoiceBillDetailByInvoiceManageId(Integer invoiceManageId) |
| | | { |
| | | |
| | | return invoiceBillDetailMapper.delete(new QueryWrapper<InvoiceBillDetail>() |
| | | .eq("invoice_manage_id", invoiceManageId)); |
| | | } |
| | | } |