refactor(mapper): 移除 speculative_trading_name 字段映射
- 从 ProcessRouteItemMapper.xml 中移除 speculative_trading_name 查询字段
- 从 ProductModelMapper.xml 中移除 speculative_trading_name 结果映射
- 从 SalesLedgerSchedulingMapper.xml 中移除 speculative_trading_name 查询字段
- 从 SalesLedgerWorkMapper.xml 中移除 speculative_trading_name 查询字段
| | |
| | | <result column="product_id" property="productId" /> |
| | | <result column="model" property="model" /> |
| | | <result column="unit" property="unit" /> |
| | | <result column="speculative_trading_name" property="speculativeTradingName" /> |
| | | <result column="tenant_id" property="tenantId" /> |
| | | <result column="product_name" property="productName" /> |
| | | <result column="product_id" property="productId" /> |
| | |
| | | select pri.*, |
| | | pr.description , |
| | | pp.name as process_name, |
| | | pm.speculative_trading_name, |
| | | pm.product_id, |
| | | pm.model, |
| | | p.product_name, |
| | |
| | | T2.quantity, |
| | | T2.product_category, |
| | | T2.specification_model, |
| | | T2.speculative_trading_name, |
| | | T2.unit |
| | | FROM |
| | | sales_ledger_product T2 |
| | |
| | | T2.status, |
| | | T2.scheduling_user_id, |
| | | T2.scheduling_user_name, |
| | | T2.speculative_trading_name, |
| | | T2.scheduling_date, |
| | | ifNull(T2.scheduling_num,0) AS schedulingNum, |
| | | ifNull(T2.finished_num,0) AS successNum, |
| | |
| | | t3.product_category, |
| | | t3.specification_model, |
| | | t3.unit, |
| | | t2.speculative_trading_name, |
| | | t4.production_line |
| | | FROM |
| | | sales_ledger_work t4 |