出库制单人打印修改

This commit is contained in:
秦鸿展
2026-05-07 16:06:01 +08:00
parent 4c32d4032e
commit 51df232625
2 changed files with 7 additions and 3 deletions
@@ -12,7 +12,7 @@ import org.springframework.scheduling.annotation.EnableAsync;
@SpringBootApplication(scanBasePackages = {"com.mhd", "com.mhd.bi"})
@EnableDiscoveryClient
@EnableFeignClients(basePackages = {"com.mhd"})
@EnableFeignClients(basePackages = {"com.mhd","com.mhd.bi.infrastructure.feign"})
@MapperScan("com.mhd.bi.domain.**.mapper")
@Import({SetFeildValueAspect.class, CommonService.class})
@EnableAsync
@@ -344,7 +344,8 @@
<select id="queryOutStockNoticePrint" resultMap="StockOutOrderResult">
SELECT a.notice_number,
SELECT a.out_order_id,
a.notice_number,
a.out_order_number,
a.business_order_no,
a.supply_chain_number,
@@ -354,7 +355,10 @@
a.document_creator,
a.document_date,
a.warehouse_name,
a.remark
a.remark,
a.create_by,
a.create_by_name,
a.create_time
FROM stock_out_order a
WHERE a.del_flag = 1
AND a.out_order_id = #{outOrderId}