pl1_stock_io_ledger_detail.sql 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. truncate table dbt_list_type1;
  2. truncate table dbt_list_sum;
  3. drop procedure if exists pl1_stock_io_ledger_detail;
  4. DELIMITER //
  5. create procedure pl1_stock_io_ledger_detail( _listToken varchar(21), _sdate varchar(8), _edate varchar(8),
  6. _s1 varchar(32), _e1 varchar(32), _s2 varchar(32), _e2 varchar(32),
  7. _s3 varchar(32), _e3 varchar(32), _s4 varchar(32), _e4 varchar(32),
  8. _having varchar(386), _orderby varchar(64),
  9. _branch int, _storage int, _member_company_id int, _lt_filter int)
  10. BEGIN
  11. Declare _sbal_date varchar(8);
  12. Declare _ebal_date varchar(8);
  13. Declare _first_bal decimal(20,4);
  14. Declare _first_bad_bal decimal(20,4);
  15. Declare _first_bal_caption varchar(20);
  16. -- Declare _first_id int;
  17. -- Declare _last_id int;
  18. Declare _line_id int;
  19. Declare _line_badstk_status varchar(1);
  20. Declare _line_in decimal(20,4) default "0.0000";
  21. Declare _line_out decimal(20,4) default "0.0000";
  22. Declare _line_bal decimal(20,4) default "0.0000";
  23. Declare _line_bad_bal decimal(20,4) default "0.0000";
  24. Declare _in_sum decimal(20,4) default "0.0000";
  25. Declare _out_sum decimal(20,4) default "0.0000";
  26. Declare _company_name varchar(64);
  27. Declare _item_code varchar(21);
  28. Declare _item_sub_name varchar(128);
  29. Declare _not_found boolean;
  30. Declare _line_cur cursor for -- c5:badstk_status
  31. select t_id, c5, d2, d3 from dbt_list_type1 where list_token = _listToken
  32. order by order_by asc;
  33. Declare continue handler for
  34. not found set _not_found = true;
  35. if _is_first_date(_sdate) then
  36. set _sbal_date = '19000101';
  37. set _ebal_date = '19000101';
  38. else
  39. set _sbal_date = _sdate;
  40. set _ebal_date = _edate;
  41. end if;
  42. -- insert for begin_bals
  43. select begin_bal_qty, bad_begin_bal_qty
  44. into _first_bal, _first_bad_bal
  45. from dbr_bal_item
  46. where yyyy_mm = substring(_sdate, 1, 6) and storage_id = _storage and item_id = _lt_filter;
  47. insert into dbt_list_type1 ( created_on, list_token, c3, d4, d5, order_by)
  48. values ( unix_timestamp(), _listToken, '이월재고', _first_bal, _first_bad_bal, '19000101');
  49. -- insert for stock_io
  50. insert into dbt_list_type1 ( created_on, list_token,
  51. c1, c2, c3, c4, c5,
  52. d1, d2, d3, order_by)
  53. select unix_timestamp(), _listToken,
  54. io_date, deal_name, concat(slip_no,' / ', stk.seq_no ), company_name, if(stk.bad_in_qty+stk.bad_out_qty = 0, '0', '1'),
  55. io_prc, stk.in_qty, stk.out_qty, concat( io_date, '-', slip_no, '-', seq_no)
  56. from dbr_stock_io as stk
  57. where io_date between _sdate and _edate and storage_id = _storage and stk.item_id = _lt_filter;
  58. -- compute line_bal
  59. set _line_bal = _first_bal;
  60. set _line_bad_bal = _first_bad_bal;
  61. open _line_cur;
  62. loop1: loop
  63. fetch _line_cur into _line_id, _line_badstk_status, _line_in, _line_out;
  64. if _not_found then leave loop1; end if;
  65. set _in_sum = _in_sum + ifnull(_line_in,0);
  66. set _out_sum = _out_sum + ifnull(_line_out,0);
  67. if _line_badstk_status = '0' then
  68. set _line_bal = ifnull(_line_bal,0) + ifnull(_line_in,0) - ifnull(_line_out,0);
  69. else
  70. set _line_bad_bal = ifnull(_line_bad_bal,0) + ifnull(_line_in,0) - ifnull(_line_out,0);
  71. end if;
  72. update dbt_list_type1 set d4 = _line_bal, d5 = _line_bad_bal where t_id = _line_id;
  73. end loop loop1;
  74. close _line_cur;
  75. -- write list_sum
  76. select item_code, concat(item_name,' / ',sub_name ) into _item_code, _item_sub_name from dbr_item where id = _lt_filter;
  77. insert into dbt_list_sum
  78. ( created_on, list_token, c1, c2, c3, c4, d1, d2, d3, d4)
  79. values (unix_timestamp(), _listToken, _item_code, _item_sub_name, _sdate, _edate,
  80. _first_bal, _in_sum, _out_sum, _line_bal);
  81. END;
  82. //
  83. DELIMITER ;