更改最小包装量脚本

Posted xyzabc0004

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改最小包装量脚本相关的知识,希望对你有一定的参考价值。

declare
  ln_plantid     number;
  ln_itemid      number;
  ln_checkResult number;
  lv_uom         varchar(50);
  ln_isExist     number;

begin
  for cur in (select * from xxx x) loop
  
    begin
      select p.plant_id
        into ln_plantid
        from hcm_plant p
       where p.plant_code = cur.attr1;
    exception
      when others then
        continue;
        dbms_output.put_line(取工厂ID出错!);
    end;
  
    begin
      select i.item_id, i.primary_uom
        into ln_itemid, lv_uom
        from hcm_item i
       where i.item_code = cur.attr2
         and i.plant_id = ln_plantid;
    exception
      when others then
        continue;
        dbms_output.put_line(取物料ID出错! || cur.attr2);
    end;
  
    select count(1)
      into ln_isExist
      from hcm_item_control T
     WHERE T.PLANT_ID = ln_plantid
       and t.item_id = ln_itemid;
  
    if ln_isExist > 0 then
      update hcm_item_control t
         set t.cid            = hcm_item_control_cid_s.nextval,
             t.min_supply_qty = to_number(cur.attr3)
       where t.item_id = ln_itemid
         and t.plant_id = ln_plantid;
      dbms_output.put_line(--------------------物料在库存表里面已经存在!);
    else
    
      /*insert into HME_ITEM_ONHAND_QUANTITIES
      (plant_id,
       Item_Id,
       Warehouse_Code,
       Locator_Code,
       Loct_Onhand,
       Lot_Number,
         Uom_Code,
         Server_Id)
      values
        (ln_plantid,
         ln_itemid,
         cur.warehouse,
         cur.locator,
         cur.qty,
         cur.lotnumber,
         lv_uom,
         2);*/
    
      dbms_output.put_line(---------------------------------不存在);
    
    end if;
  end loop;
end;

 

以上是关于更改最小包装量脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何组合绑定片段而不将它们包装在 XML 文字中

如何包装所有片段(不在里面)or) with?

显示/隐藏片段并以编程方式更改可见性属性

线段树详解

PIG 脚本、Hive 查询和相应 MapReduce 代码的包装代码

更改由AngularJs从Chrome内容脚本动态创建的包装选择的值