• 库存事务处理现有量检查


     --检查现有量
        CURSOR c_lot_number(l_organization_id   NUMBER,
                            p_inventory_item_id IN NUMBER) IS
          SELECT mln.lot_number, mln.expiration_date
            FROM mtl_lot_numbers mln
           WHERE mln.inventory_item_id = p_inventory_item_id
                -- AND mln.status_id = 1 --有效合格批次
             AND mln.organization_id = l_organization_id; --需要添加合格字段
      FOR rec_loc IN c_lot_number(l_organization_id   => rec_header.organization_id,
                                        p_inventory_item_id => rec_line.inventory_item_id) LOOP
            
              inv_quantity_tree_pub.query_quantities(p_api_version_number => 1.0,
                                                     
                                                     p_init_msg_lst => NULL,
                                                     
                                                     x_return_status => l_return_status,
                                                     
                                                     x_msg_count => l_msg_count,
                                                     
                                                     x_msg_data => l_msg_data,
                                                     
                                                     p_organization_id => rec_header.organization_id, --仓库ID
                                                     
                                                     p_inventory_item_id => rec_line.inventory_item_id, --物料ID
                                                     
                                                     p_tree_mode => 3,
                                                     
                                                     p_is_revision_control => FALSE,
                                                     
                                                     p_is_lot_control => TRUE,
                                                     
                                                     p_is_serial_control => FALSE,
                                                     
                                                     p_revision => NULL,
                                                     
                                                     p_lot_number => rec_loc.lot_number,
                                                     
                                                     p_lot_expiration_date => rec_loc.expiration_date,
                                                     
                                                     p_subinventory_code => rec_header.subinventory_code, --子库code
                                                     
                                                     p_locator_id => NULL, --rec_loc.locator_id,
                                                     
                                                     p_cost_group_id => NULL,
                                                     
                                                     p_onhand_source => inv_quantity_tree_pvt.g_all_subs,
                                                     
                                                     x_qoh => l_qoh, --现有量
                                                     
                                                     x_rqoh => l_atp_qty,
                                                     
                                                     x_qr => l_qr,
                                                     
                                                     x_qs => l_qs,
                                                     
                                                     x_att => l_att,
                                                     
                                                     x_atr => l_atr);
    end loop;


     

  • 相关阅读:
    2. 商城项目完整购物链路 lq
    如何看源码? lq
    事务的了解 lq
    1. 商城业务架构分析 lq
    并发的基础知识 lq
    mysql 索引 lq
    mysqlinnodb了解 lq
    IE6.0、IE7.0 与FireFox CSS兼容的解决方法
    CSS:html/css教程:背景图片的定位问题详解
    IE6 BUG
  • 原文地址:https://www.cnblogs.com/wanghang/p/6299526.html
Copyright © 2020-2023  润新知