-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
handle BOM in --list-file, found by chris0e3, #502
- Loading branch information
Showing
6 changed files
with
156 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Điếm LOC/P_EDI_Book.sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
USE | ||
GO | ||
/****** Object: StoredProcedure [dbo].[P_EDI_Book] Script Date: 2020/05/22 11:41:27 ******/ | ||
SET ANSI_NULLS ON | ||
GO | ||
SET QUOTED_IDENTIFIER ON | ||
GO | ||
|
||
|
||
--================================================= | ||
|
||
--------------------------------------------------- | ||
-- | ||
--------------------------------------------------- | ||
|
||
-- <下り> | ||
-- | ||
,@ext_day int = -5 --2017-02-28 更新 | ||
-- ,@ext_day int = -1 --2016-08-17 更新 | ||
,@ext_time datetime = '00:00:00' | ||
|
||
AS | ||
--================================================= | ||
-- 開始 | ||
--================================================= | ||
SP_MAIN: | ||
SET NOCOUNT ON | ||
|
||
--============================================= | ||
-- なんとなく共通処理 | ||
--============================================= | ||
|
||
-- 必要なローカル変数定義 | ||
Declare @tran_ct int -- トランザクションカウント | ||
|
||
Declare @FETCH_STATUS int -- @@FETCH_STATUSワーク | ||
|
||
--================================================= | ||
-- パラメタチェック | ||
--================================================= | ||
|
||
Declare @a_tax_rate_type char(1) -- 税端数処理区分 | ||
-- ▼▼▼ 2013/11/21 add | ||
Declare @a_tonets_v_up_flag char(1) -- トーハンTONET=V上り実装フラグ | ||
Declare @a_tonets_v_dw_flag char(1) -- トーハンTONET=V下り実装フラグ | ||
-- ▲▲▲ 2013/11/21 add | ||
|
||
--================================================= | ||
-- 共通処理 | ||
--================================================= | ||
|
||
-- 下り用処理カウンタ | ||
Declare @count_all int -- 処理対象 | ||
|
||
|
||
-- サーバ名・データベース名セット | ||
Declare @server_name varchar(100) | ||
|
||
End | ||
|
||
-- ▼▼▼ 2013/11/21 add | ||
-- 上り在庫変動処理(TONETS-V:T1) | ||
If @edi_type = '56U' Begin | ||
|
||
End | ||
-- ▲▲▲ 2013/11/21 add | ||
|
||
-- 【上り未登録商品マスタ(エコール)】上り未登録商品マスタのクライアント処理 -- 2014/01/20 add | ||
If @edi_type = '60U' Begin | ||
|
||
-- ▼▼▼ 2014/01/28 add | ||
-- 【JEUGIA基幹連動】上り売上処理 | ||
If @edi_type = '62U' Begin | ||
|
||
-- ▲▲▲ 2014/01/28 add | ||
|
||
-- | ||
|
||
--================================================= | ||
-- SP終了 | ||
--================================================= | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
# github.com/AlDanial/cloc | ||
header : | ||
cloc_url : github.com/AlDanial/cloc | ||
cloc_version : 1.87 | ||
elapsed_seconds : 0.00855422019958496 | ||
n_files : 1 | ||
n_lines : 83 | ||
files_per_second : 116.90136291424 | ||
lines_per_second : 9702.81312188188 | ||
report_file : ../../../outputs/issues/502/results.yaml | ||
'SQL' : | ||
nFiles: 1 | ||
blank: 24 | ||
comment: 36 | ||
code: 23 | ||
SUM: | ||
blank: 24 | ||
comment: 36 | ||
code: 23 | ||
nFiles: 1 |