Как l oop внутри l oop для отображения в CSV от XML - PullRequest
0 голосов
/ 10 января 2020
<?xml version="1.0"?>
<tXML>
  <Header>
    <Source>1</Source>
    <Action_Type>Update</Action_Type>
    <Sequence_Number>0</Sequence_Number>
    <Batch_ID>4</Batch_ID>
    <Reference_ID>043</Reference_ID>
    <User_ID>S</User_ID>
    <Password>password</Password>
    <Message_Type></Message_Type>
    <Company_ID>J1</Company_ID>
    <Msg_Locale>English (United States)</Msg_Locale>
    <Msg_Time_Zone>Eastern Standard Time</Msg_Time_Zone>
    <Version></Version>
    <Internal_Reference_ID></Internal_Reference_ID>
    <Internal_Date_Time_Stamp></Internal_Date_Time_Stamp>
    <External_Reference_ID></External_Reference_ID>
    <External_Date_Time_Stamp></External_Date_Time_Stamp>
  </Header>
  <Message>
    <DistributionOrder>
      <LineItem>
        <DoLineNbr>1</DoLineNbr>
        <ItemName>135465</ItemName>
        <Description>A</Description>
        <UpdateActionType></UpdateActionType>
        <PackageType></PackageType>
        <DoLineStatus>Released</DoLineStatus>
        <InventoryAttributes>
          <InventoryType>F</InventoryType>
          <ProductStatus></ProductStatus>
          <BatchNbr></BatchNbr>
          <CountryOfOrigin></CountryOfOrigin>
          <ItemAttribute1>R</ItemAttribute1>
          <ItemAttribute2></ItemAttribute2>
          <ItemAttribute3></ItemAttribute3>
          <ItemAttribute4></ItemAttribute4>
          <ItemAttribute5></ItemAttribute5>
        </InventoryAttributes>
        <Comment>
          <NoteType>MB</NoteType>
          <NoteCode>20</NoteCode>
          <CommentText>[JPY_ _Mens_ _ _ _ _ _ _ _ _ _ _ ]</CommentText>
          <Visibility>0</Visibility>
        </Comment>
        <Comment>
          <NoteType>MB</NoteType>
          <NoteCode>13</NoteCode>
          <CommentText>[ _00016000.00000_.00000_.00000_ _ _ _ _ _ _ _ ]</CommentText>
          <Visibility>0</Visibility>
        </Comment>
        <Comment>
          <NoteType>SC</NoteType>
          <NoteCode>02</NoteCode>
          <CommentText>[ _ _ _ _R]</CommentText>
          <Visibility>0</Visibility>
        </Comment>
      </LineItem>
      <LineItem>
        <DoLineNbr>2</DoLineNbr>
        <ItemName>4550155140404</ItemName>
        <Description>AS LAMBSWOOL VNECK</Description>
        <UpdateActionType></UpdateActionType>
        <PackageType></PackageType>
        <DoLineStatus>Released</DoLineStatus>
        <InventoryAttributes>
          <InventoryType>F</InventoryType>
          <ProductStatus></ProductStatus>
          <BatchNbr></BatchNbr>
          <CountryOfOrigin></CountryOfOrigin>
          <ItemAttribute1>R</ItemAttribute1>
          <ItemAttribute2></ItemAttribute2>
          <ItemAttribute3></ItemAttribute3>
          <ItemAttribute4></ItemAttribute4>
          <ItemAttribute5></ItemAttribute5>
        </InventoryAttributes>
        <Comment>
          <NoteType>MB</NoteType>
          <NoteCode>20</NoteCode>
          <CommentText>[JPY_ _Mens_ _ _ _ _ _ _ _ _ _ _ ]</CommentText>
          <Visibility>0</Visibility>
        </Comment>
        <Comment>
          <NoteType>MB</NoteType>
          <NoteCode>13</NoteCode>
          <CommentText>[ _00016000.00000_.00000_.00000_ _ _ _ _ _ _ _ ]</CommentText>
          <Visibility>0</Visibility>
        </Comment>
        <Comment>
          <NoteType>SC</NoteType>
          <NoteCode>02</NoteCode>
          <CommentText>[ _ _ _ _R]</CommentText>
          <Visibility>0</Visibility>
        </Comment>
        </LineItem>
    </DistributionOrder>
  </Message>
</tXML>

Мой код выглядит следующим образом

%dw 2.0
output application/csv header = false , separator = "|" , quoteValues = false
---
payload.tXML.Message.*DistributionOrder map ((DistributionOrder , indexofDistributionOrder) ->  {
    column_1: "000000001",
    column_2: "0",
    column_3: "0",
    column_4: (LineItem.LineProcessInfo.LineRefTextField2 splitBy "_")[0] replace "[" with "" default "",
    column_5: (LineItem.LineProcessInfo.LineRefTextField2 splitBy "_")[1] replace "[" with "" default "",
    column_6: ????
    column_7: "",
    column_8: "",
    column_9: "",
    column_10: "",
})

Так что в приведенном выше коде я зацикливаюсь для каждой позиции, чтобы получить поля, но внутри каждой позиции я должен l oop для каждого комментария и для каждого комментария мне нужно поместить его в другую строку. Например, выходные данные должны выглядеть следующим образом, как вы видите в примере, если у позиции 2 есть 3 секции комментариев, у меня есть 3 строки для 3 комментариев.

00000002|0001333006|20191220|34621|SAPTOMIF4|CommentText1|||6500055464123|252||J1||||MW09449| 
00000002|0001333006|20191220|34621|SAPTOMIF4|CommentText2|||6500055464123|252||J1||||MW09449| 
00000002|0001333006|20191220|34621|SAPTOMIF4|CommentText3|||6500055464123|252||J1||||MW09449|  
000000003|0001333006|20191220|34621|SAPTOMIF6|CommentText1|||6500055654123|4542||J1||||MW09449|
000000003|0001333006|20191220|34621|SAPTOMIF6|CommentText2|||6500055654123|4542||J1||||MW09449|
000000003|0001333006|20191220|34621|SAPTOMIF6|CommentText3|||6500055654123|4542||J1||||MW09449|
000000004|0001333006|20191220|34621|SAPTOMIF6||||65000545664123|35463||J1||||MW09449| 

1 Ответ

0 голосов
/ 10 января 2020

Вы можете попытаться выполнить карту на карте. Однако вам нужно сгладить результирующий объект, если вы хотите, чтобы он был записан как csv, так как это приведет к массиву в массиве.

См. Пример кода ниже:

%dw 2.0
output application/csv header = false , separator = "|" , quoteValues = false

var payload = read("<tXML>
      <Header>
        <Source>1</Source>
        <Action_Type>Update</Action_Type>
        <Sequence_Number>0</Sequence_Number>
        <Batch_ID>4</Batch_ID>
        <Reference_ID>043</Reference_ID>
        <User_ID>S</User_ID>
        <Password>password</Password>
        <Message_Type></Message_Type>
        <Company_ID>J1</Company_ID>
        <Msg_Locale>English (United States)</Msg_Locale>
        <Msg_Time_Zone>Eastern Standard Time</Msg_Time_Zone>
        <Version></Version>
        <Internal_Reference_ID></Internal_Reference_ID>
        <Internal_Date_Time_Stamp></Internal_Date_Time_Stamp>
        <External_Reference_ID></External_Reference_ID>
        <External_Date_Time_Stamp></External_Date_Time_Stamp>
      </Header>
      <Message>
        <DistributionOrder>
          <LineItem>
            <DoLineNbr>1</DoLineNbr>
            <ItemName>135465</ItemName>
            <Description>A</Description>
            <UpdateActionType></UpdateActionType>
            <PackageType></PackageType>
            <DoLineStatus>Released</DoLineStatus>
            <InventoryAttributes>
              <InventoryType>F</InventoryType>
              <ProductStatus></ProductStatus>
              <BatchNbr></BatchNbr>
              <CountryOfOrigin></CountryOfOrigin>
              <ItemAttribute1>R</ItemAttribute1>
              <ItemAttribute2></ItemAttribute2>
              <ItemAttribute3></ItemAttribute3>
              <ItemAttribute4></ItemAttribute4>
              <ItemAttribute5></ItemAttribute5>
            </InventoryAttributes>
            <Comment>
              <NoteType>MB</NoteType>
              <NoteCode>20</NoteCode>
              <CommentText>[JPY_ _Mens_ _ _ _ _ _ _ _ _ _ _ ]</CommentText>
              <Visibility>0</Visibility>
            </Comment>
            <Comment>
              <NoteType>MB</NoteType>
              <NoteCode>13</NoteCode>
              <CommentText>[ _00016000.00000_.00000_.00000_ _ _ _ _ _ _ _ ]</CommentText>
              <Visibility>0</Visibility>
            </Comment>
            <Comment>
              <NoteType>SC</NoteType>
              <NoteCode>02</NoteCode>
              <CommentText>[ _ _ _ _R]</CommentText>
              <Visibility>0</Visibility>
            </Comment>
          </LineItem>
          <LineItem>
            <DoLineNbr>2</DoLineNbr>
            <ItemName>4550155140404</ItemName>
            <Description>AS LAMBSWOOL VNECK</Description>
            <UpdateActionType></UpdateActionType>
            <PackageType></PackageType>
            <DoLineStatus>Released</DoLineStatus>
            <InventoryAttributes>
              <InventoryType>F</InventoryType>
              <ProductStatus></ProductStatus>
              <BatchNbr></BatchNbr>
              <CountryOfOrigin></CountryOfOrigin>
              <ItemAttribute1>R</ItemAttribute1>
              <ItemAttribute2></ItemAttribute2>
              <ItemAttribute3></ItemAttribute3>
              <ItemAttribute4></ItemAttribute4>
              <ItemAttribute5></ItemAttribute5>
            </InventoryAttributes>
            <Comment>
              <NoteType>MB</NoteType>
              <NoteCode>20</NoteCode>
              <CommentText>[JPY_ _Mens_ _ _ _ _ _ _ _ _ _ _ ]</CommentText>
              <Visibility>0</Visibility>
            </Comment>
            <Comment>
              <NoteType>MB</NoteType>
              <NoteCode>13</NoteCode>
              <CommentText>[ _00016000.00000_.00000_.00000_ _ _ _ _ _ _ _ ]</CommentText>
              <Visibility>0</Visibility>
            </Comment>
            <Comment>
              <NoteType>SC</NoteType>
              <NoteCode>02</NoteCode>
              <CommentText>[ _ _ _ _R]</CommentText>
              <Visibility>0</Visibility>
            </Comment>
            </LineItem>
        </DistributionOrder>
      </Message>
    </tXML>", "application/xml")
---

flatten(payload.tXML.Message.DistributionOrder.*LineItem map (LineItem) -> 
    LineItem.*Comment map (Comment) ->
    {
        column_1: "000000001", 
        column_2: "0", 
        column_3: "0", 
        column_4: (LineItem.LineProcessInfo.LineRefTextField2 splitBy "_")[0] replace "[" with "" default "", 
        column_5: (LineItem.LineProcessInfo.LineRefTextField2 splitBy "_")[1] replace "[" with "" default "", 
        column_6: Comment.CommentText, 
        column_7: "", 
        column_8: "", 
        column_9: "", 
        column_10: ""
    })

Это приведет к

000000001|0|0|||[JPY_ _Mens_ _ _ _ _ _ _ _ _ _ _ ]||||
000000001|0|0|||[ _00016000.00000_.00000_.00000_ _ _ _ _ _ _ _ ]||||
000000001|0|0|||[ _ _ _ _R]||||
000000001|0|0|||[JPY_ _Mens_ _ _ _ _ _ _ _ _ _ _ ]||||
000000001|0|0|||[ _00016000.00000_.00000_.00000_ _ _ _ _ _ _ _ ]||||
000000001|0|0|||[ _ _ _ _R]||||
...