Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="AbnTest">
   <head>
          <script src="https://code.jquery.com/jquery.min.js"></script>
      <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
      <script src="//code.jquery.com/jquery-1.10.2.js"></script>
      <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
      
      <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
      <script src="https://rawgit.com/angular/bower-angular/master/angular.min.js"></script>
      <!--/-->
      <!-- Bootstrap 2 or Bootstrap 3 ?-->
      <!---->
      <link rel = "stylesheet" href = "//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
      <!---->
      <!-- Angular 1.1.5 or 1.2.12 ?-->
      <!---->
      <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ng-grid/2.0.11/ng-grid.debug.js"></script>
      <link rel="stylesheet" href="../dist/abn_tree.css">
     
      <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/ng-grid/2.0.11/ng-grid.css" />
      <script src="http://nickperkinslondon.github.io/angular-bootstrap-nav-tree/dist/abn_tree_directive.js"></script> 
     <!-- js for this test page:-->
      <script src="test_page.js"></script>
    
   </head>
   <body ng-controller="AbnTestController" style="margin:20px">
               <button ng-click="try_changing_the_tree_data()" class="btn btn-default btn-sm">Submit File</button>      
           <p>
            <table width="100%" style="height: 100%;" cellpadding="10" cellspacing="0" border="0">
               <tr>
                  <!-- ============ LEFT COLUMN (MENU) ============== -->
                  <td width="250px" style="vertical-align:top" bgcolor="whitesmoke">
                     <div style="width:250px;background:whitesmoke;border:1px solid lightgray;border-radius:5px;">
                        <abn-tree ng-click="visible.grid = true" tree-data="my_data" tree-control="my_tree" on-select="my_tree_handler(branch)" expand-level="2"></abn-tree>
                     </div>
                  </td>
                  <!-- ============ RIGHT COLUMN (CONTENT) ============== -->
                  <td width="80%" valign="top" bgcolor="#d2d8c7">
                
                    <div style="vertical-align:top;">
                        <div ng-repeat="rule in rules">
                           <div ng-show="visible.grid == true"  class="gridStyle" ng-grid="rule.grid" ></div>
                    
                        </div>
                      
                        <div id="results"></div>
                     </div>
                  </td>
               </tr>
            </table>
            </p>
   </body>
</html>
 
/* 
   abn-tree.css
   style for the angular-bootstrap-nav-tree
   for both Bootstrap 2 and Bootstrap 3
*/
/* ------------------------------------------
AngularJS Animations...
The first selector is for Angular 1.1.5
The second selector is for Angular 1.2.0
*/
.abn-tree-animate-enter,
li.abn-tree-row.ng-enter {
  transition: 200ms linear all;
  position: relative;
  display: block;
  opacity: 0;
  max-height:0px;
}
.abn-tree-animate-enter.abn-tree-animate-enter-active,
li.abn-tree-row.ng-enter-active{
  opacity: 1;
  max-height:30px;
}
.abn-tree-animate-leave,
li.abn-tree-row.ng-leave {
  transition: 200ms linear all;
  position: relative;
  display: block;
  height:30px;
  max-height: 30px;
  opacity: 1;
}
.abn-tree-animate-leave.abn-tree-animate-leave-active,
li.abn-tree-row.ng-leave-active {  
  height: 0px;
  max-height:0px;
  opacity: 0;
}
/* 
------------------------------------------
Angular 1.2.0 Animation 
*/
.abn-tree-animate.ng-enter{
}
.abn-tree-animate.ng-enter{
}
/*
   end animation stuff
-----------------------------------------
   begin normal css stuff
*/
ul.abn-tree li.abn-tree-row {  
  padding: 0px;
  margin:0px;
}
ul.abn-tree li.abn-tree-row a {
  padding: 3px 10px;
}
ul.abn-tree i.indented {
  padding: 2px;
}
.abn-tree {
  cursor: pointer;
}
ul.nav.abn-tree .level-1 .indented {
  position: relative;
  left: 0px;
}
ul.nav.abn-tree .level-2 .indented {
  position: relative;
  left: 20px;
}
ul.nav.abn-tree .level-3 .indented {
  position: relative;
  left: 40px;
}
ul.nav.abn-tree .level-4 .indented {
  position: relative;
  left: 60px;
}
ul.nav.abn-tree .level-5 .indented {
  position: relative;
  left: 80px;
}
ul.nav.abn-tree .level-6 .indented {
  position: relative;
  left: 100px;
}
ul.nav.nav-list.abn-tree .level-7 .indented {
  position: relative;
  left: 120px;
}
ul.nav.nav-list.abn-tree .level-8 .indented {
  position: relative;
  left: 140px;
}
ul.nav.nav-list.abn-tree .level-9 .indented {
  position: relative;
  left: 160px;
}
/* Grid Formatting */
.gridStyle {
    border: 1px solid rgb(212,212,212);
    width: 100%; 
    height: 500px;
}
 
(function() {
  /* JSON Data Sources Start Here: header_data is for header.*/
        var header_data_ = [[{"label":"NewNetworkServiceProvider","value":"8051"},{"label":"PurchaseOrderNumber","value":"Header for record 1"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8052"},{"label":"PurchaseOrderNumber","value":"Header for record 2"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8053"},{"label":"PurchaseOrderNumber","value":"Header for record 3"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8054"},{"label":"PurchaseOrderNumber","value":"Header for record 4"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}]];
      
      //This one is for manual confirmations
       var cfm_header_data_ = [[{"label":"NewNetworkServiceProvider","value":"8051"},{"label":"PurchaseOrderNumber","value":"Confirmation Header for record 1"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8052"},{"label":"PurchaseOrderNumber","value":"Confirmation Header for record 2"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8053"},{"label":"PurchaseOrderNumber","value":"Confirmation Header for record 3"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8054"},{"label":"PurchaseOrderNumber","value":"Confirmation Header for record 4"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}]];
      
      //this one is for details grid
        var detail_data_ = [[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"Detail 1"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"Detail 2"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"Detail 3"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"Detail 4"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}]];
      //this one is for the details in manual confirmations
      var cfm_detail_data_ = [[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"Confirmation Detail 1"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"Confirmation Detail 2"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"Confirmation Detail 3"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"Confirmation Detail 4"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}]];
      //errors in manual confirmation
       var cfm_error_data_ = [[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"error Detail 1"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"error Detail 2"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"error Detail 3"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}],[{"label":"NewNetworkServiceProvider","value":"8060"},{"label":"PurchaseOrderNumber","value":"error Detail 4"},{"label":"Version","value":"01"},{"label":"RecordType","value":"001"}]];
        //This is the RAW json data used to build the nav tree*/
        /*BUILDING A TREE*/
        var json_data = [{"ServiceRequests":[{"Header":{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400004BELLON","Version":"01","RecordType":"001","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","AccountNumber":"4161111111","AccountTelephoneNumber":"","OldNetworkServiceProvider":"548H","ResellerName":"","ServiceDetailQuantity":"0001","ServiceRecordQuantitiy":1,"DateTimeSent":"201506230954","DesiredDueDate":"20150625","DesiredDueDateAppointmentTime":"","ProjectId":"","CoordinatedHotCutover":"","RequestType":"B","NumberPortabilityDirectionIndicator":"","SupplementalOrderNumber":"","ExpeditedFlag":"","NewLocalServiceProvider":"8051","AdditionalEngineeringRequired":"","AdditionalLabourAccepted":"","SpecialConstructionAuthorization":"","AgencyAuthorizationDate":"20150623","DemarcationPoint":"","MainTerminationRoom":"","DisputeIndicator":"","TypeOfService":"","DispatchIndicator":"","LoopType":"","RelatedPurchaseOrderNumber":"","CarrierIdentificationCode":"","CustomerOrderingSPName":"BELL CANADA","BillingName":"BELL CANADA","SecondBillingName":"CSG/TLCT","BillingStreet":"250 YONGE STREET","BillingFloor":"12","BillingRoom":"","BillingCity":"TORONTO","BillingProvince":"ON","BillingPostalCode":"M5B 2I7","BillingContact":"","BillingContactPhone":"","ContactInitiatorId":"LISE FORTIER","ContactInitiatorPhone":"5148700036","ContactInitiatorEmail":"","ContactInitiatorFax":"","ContactInitiatorStreetAddress":"100 BOROUGH DRIVE","ContactInitiatorFloor":"MN","ContactInitiatorRoomMailStop":"","ContactInitiatorCity":"SCARBOROUGH","ContactInitiatorProvince":"ON","ContactInitiatorPostalCode":"M1P 4W2","ContactImplementation":"","ContactImplementationPhone":"","ContactImplmentationPager":"","ContactAlternateImplementation":"","ContactAlternateImplementationPhone":"","ContactAlternateImplementationPager":"","DesignEngineeringContact":"","DesignContactPhone":"","DesignContactFax":"","DesignContactEmail":"","DesignContactStreetAddress":"","DesignContactFloor":"","DesignContactRoomMailStop":"","DesignContactCity":"","DesignContactProvince":"","DesignContactPostalCode":"","OrderingServiceProviderNotes":"","EndUserName":"TEST 4","Password":"","EquipmentSerialNumberMobileId":"","ServiceAddressHousePrefix":"","ServiceAddressHouseNumber":"301","ServiceAddressHouseNumberSuffix":"","ServiceAddressStreetDirectional":"W","ServiceAddressStreetName":"FRONT","ServiceAddressThouroughfare":"ST","ServiceAddressStreetSuffix":"","ServiceAddressStreetDescriptiveLocation":"","Floor":"","Room":"","Building":"","City":"TORONTO","ProvinceOrState":"ON","PostalCodeOrZip":"M5C2T6","LocalContact":"","TelephoneNumber":"","EndUserMovingIndicator":"","OldServiceHouseAddressNumber":"","OldServiceAddress":"","OldCity":"","OldProvince":"","AccessInformation":"","InsideWireOptions":"","InsideWireBillingAccountNumber":"","InsideWireContact":"","InsideWireTelephoneNumber":"","FinalBillInformationIndicator":"","EndUserBillName":"","EndUserSecondaryBillName":"","EndUserBillingStreetAddress":"","EndUserBillingFloor":"","EndUserBillingRoom":"","EndUserBillingCity":"","EndUserBillingProvinceOrState":"","EndUserBillingPostalCodeOrZip":"","EndUserBillingContact":"","EndUSerBillingContactTelephoneNumber":"","EndUserBillingNonCivicAddress":"","LocalServiceRequestRemarks":"TEST 4","EndUserRemarks":"","ServiceDefinitionRemarks":"","Filler":""},"Details":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400004BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0002","LineActivity":"A","ExistingAccountNumber":"229411900","ExistingAccountTelephoneNumber":"","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""}]},{"Header":{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400003BELLON","Version":"01","RecordType":"001","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","AccountNumber":"4161111111","AccountTelephoneNumber":"","OldNetworkServiceProvider":"548H","ResellerName":"","ServiceDetailQuantity":"0003","ServiceRecordQuantitiy":3,"DateTimeSent":"201506230952","DesiredDueDate":"20150630","DesiredDueDateAppointmentTime":"","ProjectId":"","CoordinatedHotCutover":"","RequestType":"B","NumberPortabilityDirectionIndicator":"D","SupplementalOrderNumber":"","ExpeditedFlag":"","NewLocalServiceProvider":"8051","AdditionalEngineeringRequired":"","AdditionalLabourAccepted":"","SpecialConstructionAuthorization":"","AgencyAuthorizationDate":"20150603","DemarcationPoint":"","MainTerminationRoom":"","DisputeIndicator":"","TypeOfService":"","DispatchIndicator":"","LoopType":"","RelatedPurchaseOrderNumber":"","CarrierIdentificationCode":"","CustomerOrderingSPName":"BELL CANADA","BillingName":"BELL CANADA","SecondBillingName":"CSG/TLCT","BillingStreet":"250 YONGE STREET","BillingFloor":"12","BillingRoom":"","BillingCity":"TORONTO","BillingProvince":"ON","BillingPostalCode":"M5B 2I7","BillingContact":"","BillingContactPhone":"","ContactInitiatorId":"LISE FORTIER","ContactInitiatorPhone":"5148700036","ContactInitiatorEmail":"","ContactInitiatorFax":"","ContactInitiatorStreetAddress":"100 BOROUGH DRIVE","ContactInitiatorFloor":"MN","ContactInitiatorRoomMailStop":"","ContactInitiatorCity":"SCARBOROUGH","ContactInitiatorProvince":"ON","ContactInitiatorPostalCode":"M1P 4W2","ContactImplementation":"","ContactImplementationPhone":"","ContactImplmentationPager":"","ContactAlternateImplementation":"","ContactAlternateImplementationPhone":"","ContactAlternateImplementationPager":"","DesignEngineeringContact":"","DesignContactPhone":"","DesignContactFax":"","DesignContactEmail":"","DesignContactStreetAddress":"","DesignContactFloor":"","DesignContactRoomMailStop":"","DesignContactCity":"","DesignContactProvince":"","DesignContactPostalCode":"","OrderingServiceProviderNotes":"","EndUserName":"TEST 3","Password":"","EquipmentSerialNumberMobileId":"","ServiceAddressHousePrefix":"","ServiceAddressHouseNumber":"301","ServiceAddressHouseNumberSuffix":"","ServiceAddressStreetDirectional":"W","ServiceAddressStreetName":"FRONT","ServiceAddressThouroughfare":"ST","ServiceAddressStreetSuffix":"","ServiceAddressStreetDescriptiveLocation":"","Floor":"","Room":"","Building":"","City":"TORONTO","ProvinceOrState":"ON","PostalCodeOrZip":"M5C2T6","LocalContact":"","TelephoneNumber":"","EndUserMovingIndicator":"N","OldServiceHouseAddressNumber":"","OldServiceAddress":"","OldCity":"","OldProvince":"","AccessInformation":"","InsideWireOptions":"","InsideWireBillingAccountNumber":"","InsideWireContact":"","InsideWireTelephoneNumber":"","FinalBillInformationIndicator":"","EndUserBillName":"","EndUserSecondaryBillName":"","EndUserBillingStreetAddress":"","EndUserBillingFloor":"","EndUserBillingRoom":"","EndUserBillingCity":"","EndUserBillingProvinceOrState":"","EndUserBillingPostalCodeOrZip":"","EndUserBillingContact":"","EndUSerBillingContactTelephoneNumber":"","EndUserBillingNonCivicAddress":"","LocalServiceRequestRemarks":"TEST 3","EndUserRemarks":"","ServiceDefinitionRemarks":"","Filler":""},"Details":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400003BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0001","LineActivity":"P","ExistingAccountNumber":"","ExistingAccountTelephoneNumber":"","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"4162153456","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"4162153456","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""},{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400003BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0002","LineActivity":"A","ExistingAccountNumber":"","ExistingAccountTelephoneNumber":"4162153456","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""},{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400003BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0003","LineActivity":"B","ExistingAccountNumber":"","ExistingAccountTelephoneNumber":"4162153456","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""}]},{"Header":{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400002BELLON","Version":"01","RecordType":"001","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","AccountNumber":"4161111111","AccountTelephoneNumber":"","OldNetworkServiceProvider":"548H","ResellerName":"","ServiceDetailQuantity":"0003","ServiceRecordQuantitiy":3,"DateTimeSent":"201506230950","DesiredDueDate":"20150629","DesiredDueDateAppointmentTime":"","ProjectId":"","CoordinatedHotCutover":"","RequestType":"B","NumberPortabilityDirectionIndicator":"D","SupplementalOrderNumber":"","ExpeditedFlag":"","NewLocalServiceProvider":"8051","AdditionalEngineeringRequired":"","AdditionalLabourAccepted":"","SpecialConstructionAuthorization":"","AgencyAuthorizationDate":"20150623","DemarcationPoint":"","MainTerminationRoom":"","DisputeIndicator":"","TypeOfService":"","DispatchIndicator":"","LoopType":"","RelatedPurchaseOrderNumber":"","CarrierIdentificationCode":"","CustomerOrderingSPName":"BELL CANADA","BillingName":"BELL CANADA","SecondBillingName":"CSG/TLCT","BillingStreet":"250 YONGE STREET","BillingFloor":"12","BillingRoom":"","BillingCity":"TORONTO","BillingProvince":"ON","BillingPostalCode":"M5B 2I7","BillingContact":"","BillingContactPhone":"","ContactInitiatorId":"LISE FORTIER","ContactInitiatorPhone":"5148700036","ContactInitiatorEmail":"","ContactInitiatorFax":"","ContactInitiatorStreetAddress":"100 BOROUGH DRIVE","ContactInitiatorFloor":"MN","ContactInitiatorRoomMailStop":"","ContactInitiatorCity":"SCARBOROUGH","ContactInitiatorProvince":"ON","ContactInitiatorPostalCode":"M1P 4W2","ContactImplementation":"","ContactImplementationPhone":"","ContactImplmentationPager":"","ContactAlternateImplementation":"","ContactAlternateImplementationPhone":"","ContactAlternateImplementationPager":"","DesignEngineeringContact":"","DesignContactPhone":"","DesignContactFax":"","DesignContactEmail":"","DesignContactStreetAddress":"","DesignContactFloor":"","DesignContactRoomMailStop":"","DesignContactCity":"","DesignContactProvince":"","DesignContactPostalCode":"","OrderingServiceProviderNotes":"","EndUserName":"TEST 2","Password":"","EquipmentSerialNumberMobileId":"","ServiceAddressHousePrefix":"","ServiceAddressHouseNumber":"301","ServiceAddressHouseNumberSuffix":"","ServiceAddressStreetDirectional":"W","ServiceAddressStreetName":"FRONT","ServiceAddressThouroughfare":"ST","ServiceAddressStreetSuffix":"","ServiceAddressStreetDescriptiveLocation":"","Floor":"","Room":"","Building":"","City":"TORONTO","ProvinceOrState":"ON","PostalCodeOrZip":"M5C2T6","LocalContact":"","TelephoneNumber":"","EndUserMovingIndicator":"N","OldServiceHouseAddressNumber":"","OldServiceAddress":"","OldCity":"","OldProvince":"","AccessInformation":"","InsideWireOptions":"","InsideWireBillingAccountNumber":"","InsideWireContact":"","InsideWireTelephoneNumber":"","FinalBillInformationIndicator":"","EndUserBillName":"","EndUserSecondaryBillName":"","EndUserBillingStreetAddress":"","EndUserBillingFloor":"","EndUserBillingRoom":"","EndUserBillingCity":"","EndUserBillingProvinceOrState":"","EndUserBillingPostalCodeOrZip":"","EndUserBillingContact":"","EndUSerBillingContactTelephoneNumber":"","EndUserBillingNonCivicAddress":"","LocalServiceRequestRemarks":"TEST 2","EndUserRemarks":"","ServiceDefinitionRemarks":"","Filler":""},"Details":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400002BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0001","LineActivity":"P","ExistingAccountNumber":"","ExistingAccountTelephoneNumber":"","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"4162153456","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"4162153456","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""},{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400002BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0002","LineActivity":"A","ExistingAccountNumber":"229411900","ExistingAccountTelephoneNumber":"","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""},{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400002BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0003","LineActivity":"B","ExistingAccountNumber":"229411900","ExistingAccountTelephoneNumber":"","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""}]},{"Header":{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400001BELLON","Version":"01","RecordType":"001","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","AccountNumber":"4161111111","AccountTelephoneNumber":"","OldNetworkServiceProvider":"548H","ResellerName":"","ServiceDetailQuantity":"0003","ServiceRecordQuantitiy":3,"DateTimeSent":"201506230948","DesiredDueDate":"20150629","DesiredDueDateAppointmentTime":"","ProjectId":"","CoordinatedHotCutover":"","RequestType":"B","NumberPortabilityDirectionIndicator":"D","SupplementalOrderNumber":"","ExpeditedFlag":"","NewLocalServiceProvider":"8051","AdditionalEngineeringRequired":"","AdditionalLabourAccepted":"","SpecialConstructionAuthorization":"","AgencyAuthorizationDate":"20150623","DemarcationPoint":"","MainTerminationRoom":"","DisputeIndicator":"","TypeOfService":"","DispatchIndicator":"","LoopType":"","RelatedPurchaseOrderNumber":"","CarrierIdentificationCode":"","CustomerOrderingSPName":"BELL CANADA","BillingName":"BELL CANADA","SecondBillingName":"CSG/TLCT","BillingStreet":"250 YONGE STREET","BillingFloor":"12","BillingRoom":"","BillingCity":"TORONTO","BillingProvince":"ON","BillingPostalCode":"M5B 2I7","BillingContact":"","BillingContactPhone":"","ContactInitiatorId":"LISE FORTIER","ContactInitiatorPhone":"5148700036","ContactInitiatorEmail":"","ContactInitiatorFax":"","ContactInitiatorStreetAddress":"100 BOROUGH DRIVE","ContactInitiatorFloor":"MN","ContactInitiatorRoomMailStop":"","ContactInitiatorCity":"SCARBOROUGH","ContactInitiatorProvince":"ON","ContactInitiatorPostalCode":"M1P 4W2","ContactImplementation":"","ContactImplementationPhone":"","ContactImplmentationPager":"","ContactAlternateImplementation":"","ContactAlternateImplementationPhone":"","ContactAlternateImplementationPager":"","DesignEngineeringContact":"","DesignContactPhone":"","DesignContactFax":"","DesignContactEmail":"","DesignContactStreetAddress":"","DesignContactFloor":"","DesignContactRoomMailStop":"","DesignContactCity":"","DesignContactProvince":"","DesignContactPostalCode":"","OrderingServiceProviderNotes":"","EndUserName":"TEST 1","Password":"","EquipmentSerialNumberMobileId":"","ServiceAddressHousePrefix":"","ServiceAddressHouseNumber":"301","ServiceAddressHouseNumberSuffix":"","ServiceAddressStreetDirectional":"W","ServiceAddressStreetName":"FRONT","ServiceAddressThouroughfare":"ST","ServiceAddressStreetSuffix":"","ServiceAddressStreetDescriptiveLocation":"","Floor":"","Room":"","Building":"","City":"TORONTO","ProvinceOrState":"ON","PostalCodeOrZip":"M5C2T6","LocalContact":"","TelephoneNumber":"","EndUserMovingIndicator":"N","OldServiceHouseAddressNumber":"","OldServiceAddress":"","OldCity":"","OldProvince":"","AccessInformation":"","InsideWireOptions":"","InsideWireBillingAccountNumber":"","InsideWireContact":"","InsideWireTelephoneNumber":"","FinalBillInformationIndicator":"","EndUserBillName":"","EndUserSecondaryBillName":"","EndUserBillingStreetAddress":"","EndUserBillingFloor":"","EndUserBillingRoom":"","EndUserBillingCity":"","EndUserBillingProvinceOrState":"","EndUserBillingPostalCodeOrZip":"","EndUserBillingContact":"","EndUSerBillingContactTelephoneNumber":"","EndUserBillingNonCivicAddress":"","LocalServiceRequestRemarks":"TEST 1","EndUserRemarks":"","ServiceDefinitionRemarks":"","Filler":""},"Details":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400001BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0001","LineActivity":"P","ExistingAccountNumber":"","ExistingAccountTelephoneNumber":"","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"4162153456","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"4162153456","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""},{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400001BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0002","LineActivity":"A","ExistingAccountNumber":"","ExistingAccountTelephoneNumber":"4162153456","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""},{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400001BELLON","VersionString":"01","RecordType":"005","ServiceRecordType":5,"ProvisioningSPVersion":"","LocalServiceRequestNumber":"","ReferenceNumber":"0003","LineActivity":"B","ExistingAccountNumber":"","ExistingAccountTelephoneNumber":"4162153456","OrderingSpTerminalLocation":"","CustomerCircuitReference":"","ExchangeCompanyCircuitIdentifier":"","SignalingIndicator":"","CableIdentification":"","Shelf":"","Slot":"","RelayRack":"","ChannelOrPair":"","HighVoltage":"","LoopMakeUp":"","DialTone":"","InsideWireJackCode":"","InsideWireJackQuantity":"00","PortedTelephoneNumberIdentifier":"","PortedTelephoneNumberRange":"","DisconnectedTelephoneNumberIdentifier":"","DisconnectedTelephoneNumberRange":"","TerminalNumberIdentifier":"","TransferOfCallsOptionIndicator":"","TransferOfCallsToNumber":"","TransferOfCallsPeriod":"","DigitalSubscriberLine":"","OrderingSpTelephoneNumber":"","LineSharingIndicator":"","OldExchangeCompanyCircuitIdentifier":"","OldCableIdentification":"","OldShelf":"","OldSlot":"","OldRelayRack":"","OldChannelPair":"","Filler":""}]}],"ConfirmationTemplates":[{"Header":{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400004BELLON","ConfirmedVersion":"01","RecordType":"101","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"AccountNumber":"4161111111","AccountTelephoneNumber":null,"OldNetworkServiceProvider":"548H","ProvisioningSpSupplementType":null,"ConfirmationDetailQuantity":"0","ConfirmationRecordQuantity":0,"ErrorQuantity":"0","ErrorRecordQuantity":0,"OldLocalServiceProvider":null,"TypeOfService":null,"ConfirmationDateAndTimeSent":null,"ConfirmationType":null,"DueDate":null,"AppointmentTimeConfirmed":null,"ProjectIdentification":null,"CoordinatedHotCutover":null,"ExpediteFlag":null,"EffectiveBillDate":null,"DisputeIndicator":null,"InitiatorIDentification":null,"ProviderContactRepresentative":null,"TelephoneNumber":null,"DesignContect":null,"NetworkProviderDesignContact":null,"NetworkProviderDesignContactTelephoneNumber":null,"Remarks":null,"Filler":null},"Details":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400004BELLON","ConfirmedVersion":"01","RecordType":"105","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"ConfirmedReferenceNumber":null,"LineActivity":null,"OrderingSpTerminalLocation":null,"CustomerCircuitReference":null,"ExchangeCompanyCircuitIdentifier":null,"SignalingIndicator":null,"CableIdentification":null,"Shelf":null,"Slot":null,"RelayRack":null,"ChannelOrPair":null,"InsideWireJackCode":null,"ConfirmedInsideWireJackQuantity":null,"FieldWorkIndicator":null,"LoopAvailabilityIndicator":null,"PortedTelephoneNumberIdentifier":null,"PortedTelephoneNumberRange":null,"DisconnectedTelephoneNumberIdentifier":null,"DisconnectedTelephoneNumberRange":null,"TerminalNumberIdentifier":null,"TransferOfCallsOptionIndicator":null,"TransferOfCallsToNumber":null,"TransferOfCallsPeriod":null,"LoopOrderNumber":null,"NumberPortabilityOrderNumber":null,"DisconnectOrderNumber":null,"Filler":null}],"Errors":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400004BELLON","RejectVersion":"01","RecordType":"999","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"RejectReferenceNumber":null,"FormName":null,"FieldAbbreviation":null,"RejectCode":null,"RejectRemarks":null,"Filler":null}]},{"Header":{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400003BELLON","ConfirmedVersion":"01","RecordType":"101","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"AccountNumber":"4161111111","AccountTelephoneNumber":null,"OldNetworkServiceProvider":"548H","ProvisioningSpSupplementType":null,"ConfirmationDetailQuantity":"0","ConfirmationRecordQuantity":0,"ErrorQuantity":"0","ErrorRecordQuantity":0,"OldLocalServiceProvider":null,"TypeOfService":null,"ConfirmationDateAndTimeSent":null,"ConfirmationType":null,"DueDate":null,"AppointmentTimeConfirmed":null,"ProjectIdentification":null,"CoordinatedHotCutover":null,"ExpediteFlag":null,"EffectiveBillDate":null,"DisputeIndicator":null,"InitiatorIDentification":null,"ProviderContactRepresentative":null,"TelephoneNumber":null,"DesignContect":null,"NetworkProviderDesignContact":null,"NetworkProviderDesignContactTelephoneNumber":null,"Remarks":null,"Filler":null},"Details":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400003BELLON","ConfirmedVersion":"01","RecordType":"105","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"ConfirmedReferenceNumber":null,"LineActivity":null,"OrderingSpTerminalLocation":null,"CustomerCircuitReference":null,"ExchangeCompanyCircuitIdentifier":null,"SignalingIndicator":null,"CableIdentification":null,"Shelf":null,"Slot":null,"RelayRack":null,"ChannelOrPair":null,"InsideWireJackCode":null,"ConfirmedInsideWireJackQuantity":null,"FieldWorkIndicator":null,"LoopAvailabilityIndicator":null,"PortedTelephoneNumberIdentifier":null,"PortedTelephoneNumberRange":null,"DisconnectedTelephoneNumberIdentifier":null,"DisconnectedTelephoneNumberRange":null,"TerminalNumberIdentifier":null,"TransferOfCallsOptionIndicator":null,"TransferOfCallsToNumber":null,"TransferOfCallsPeriod":null,"LoopOrderNumber":null,"NumberPortabilityOrderNumber":null,"DisconnectOrderNumber":null,"Filler":null}],"Errors":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400003BELLON","RejectVersion":"01","RecordType":"999","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"RejectReferenceNumber":null,"FormName":null,"FieldAbbreviation":null,"RejectCode":null,"RejectRemarks":null,"Filler":null}]},{"Header":{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400002BELLON","ConfirmedVersion":"01","RecordType":"101","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"AccountNumber":"4161111111","AccountTelephoneNumber":null,"OldNetworkServiceProvider":"548H","ProvisioningSpSupplementType":null,"ConfirmationDetailQuantity":"0","ConfirmationRecordQuantity":0,"ErrorQuantity":"0","ErrorRecordQuantity":0,"OldLocalServiceProvider":null,"TypeOfService":null,"ConfirmationDateAndTimeSent":null,"ConfirmationType":null,"DueDate":null,"AppointmentTimeConfirmed":null,"ProjectIdentification":null,"CoordinatedHotCutover":null,"ExpediteFlag":null,"EffectiveBillDate":null,"DisputeIndicator":null,"InitiatorIDentification":null,"ProviderContactRepresentative":null,"TelephoneNumber":null,"DesignContect":null,"NetworkProviderDesignContact":null,"NetworkProviderDesignContactTelephoneNumber":null,"Remarks":null,"Filler":null},"Details":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400002BELLON","ConfirmedVersion":"01","RecordType":"105","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"ConfirmedReferenceNumber":null,"LineActivity":null,"OrderingSpTerminalLocation":null,"CustomerCircuitReference":null,"ExchangeCompanyCircuitIdentifier":null,"SignalingIndicator":null,"CableIdentification":null,"Shelf":null,"Slot":null,"RelayRack":null,"ChannelOrPair":null,"InsideWireJackCode":null,"ConfirmedInsideWireJackQuantity":null,"FieldWorkIndicator":null,"LoopAvailabilityIndicator":null,"PortedTelephoneNumberIdentifier":null,"PortedTelephoneNumberRange":null,"DisconnectedTelephoneNumberIdentifier":null,"DisconnectedTelephoneNumberRange":null,"TerminalNumberIdentifier":null,"TransferOfCallsOptionIndicator":null,"TransferOfCallsToNumber":null,"TransferOfCallsPeriod":null,"LoopOrderNumber":null,"NumberPortabilityOrderNumber":null,"DisconnectOrderNumber":null,"Filler":null}],"Errors":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400002BELLON","RejectVersion":"01","RecordType":"999","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"RejectReferenceNumber":null,"FormName":null,"FieldAbbreviation":null,"RejectCode":null,"RejectRemarks":null,"Filler":null}]},{"Header":{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400001BELLON","ConfirmedVersion":"01","RecordType":"101","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"AccountNumber":"4161111111","AccountTelephoneNumber":null,"OldNetworkServiceProvider":"548H","ProvisioningSpSupplementType":null,"ConfirmationDetailQuantity":"0","ConfirmationRecordQuantity":0,"ErrorQuantity":"0","ErrorRecordQuantity":0,"OldLocalServiceProvider":null,"TypeOfService":null,"ConfirmationDateAndTimeSent":null,"ConfirmationType":null,"DueDate":null,"AppointmentTimeConfirmed":null,"ProjectIdentification":null,"CoordinatedHotCutover":null,"ExpediteFlag":null,"EffectiveBillDate":null,"DisputeIndicator":null,"InitiatorIDentification":null,"ProviderContactRepresentative":null,"TelephoneNumber":null,"DesignContect":null,"NetworkProviderDesignContact":null,"NetworkProviderDesignContactTelephoneNumber":null,"Remarks":null,"Filler":null},"Details":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400001BELLON","ConfirmedVersion":"01","RecordType":"105","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"ConfirmedReferenceNumber":null,"LineActivity":null,"OrderingSpTerminalLocation":null,"CustomerCircuitReference":null,"ExchangeCompanyCircuitIdentifier":null,"SignalingIndicator":null,"CableIdentification":null,"Shelf":null,"Slot":null,"RelayRack":null,"ChannelOrPair":null,"InsideWireJackCode":null,"ConfirmedInsideWireJackQuantity":null,"FieldWorkIndicator":null,"LoopAvailabilityIndicator":null,"PortedTelephoneNumberIdentifier":null,"PortedTelephoneNumberRange":null,"DisconnectedTelephoneNumberIdentifier":null,"DisconnectedTelephoneNumberRange":null,"TerminalNumberIdentifier":null,"TransferOfCallsOptionIndicator":null,"TransferOfCallsToNumber":null,"TransferOfCallsPeriod":null,"LoopOrderNumber":null,"NumberPortabilityOrderNumber":null,"DisconnectOrderNumber":null,"Filler":null}],"Errors":[{"NewNetworkServiceProvider":"8051","PurchaseOrderNumber":"1517400001BELLON","RejectVersion":"01","RecordType":"999","ServiceRecordType":0,"ProvisioningSPVersion":"","LocalServiceRequestNumber":null,"RejectReferenceNumber":null,"FormName":null,"FieldAbbreviation":null,"RejectCode":null,"RejectRemarks":null,"Filler":null}]}],"ServiceConfirmations":[],"DataItemFileName":null}];
      
      //END JSON DATA
      
      
      
    var app, deps;
    deps = ['angularBootstrapNavTree'];
    if (angular.version.full.indexOf("1.2") >= 0) {
        deps.push('ngAnimate');
    }
    deps.push('ngGrid');
    app = angular.module('AbnTest', deps);
    /*The controller */
    app.controller('AbnTestController', function($scope, $timeout) {
      
      var apple_selected, treedata_avm, treedata_cfm;
    
        //noprotect
 /*Function that builds the grid*/
        createGrids = function(ds) {
            $scope.rules = [];
            $timeout(function() {
                $scope.rules.push({
                    grid: {
                        data: JSON.stringify(ds),
                        enableCellSelection: true,
                        enableRowSelection: false,
                        enableCellEditOnFocus: true,              
                        columnDefs: [{
                            field: 'label',
                            displayName: 'Label',
                            enableCellEdit: false
                          
                        }, {
                            field: 'value',
                            displayName: 'Value',
                            editableCellTemplate: '<input type="text" ng-class=""colt" + col.index" ng-input="COL_FIELD" ng-model="COL_FIELD" data-placeholder="-- Select One --" />',
                            enableCellEdit: true
                        }]
                    },
                    //gridBranch: {
                    //  branch: branch
                      //    idx: branch.data.data_grid_index,
                    //    name: branch.data.data_grid_type
                   // }
                });
                  // console.info($scope.rules);
            }, 0);
        };
      /*This builds the nav tree*/
      
        var tree = [];
        var conftree = [];
        for (var i = 0; i < json_data.length; i++) {
            for (j in json_data[i]) {
                if (j == "ServiceConfirmations" || j == "ServiceRequests") {
                    var tempObject = {};
                    tempObject.label = j;
                    tempObject.children = [];
                    for (var k = 0; k < json_data[i][j].length; k++) {
                        var tempObject2 = {};
                        tempObject2.label = 'Record ' + (k + 1);
                        tempObject2.children = [];
                        for (var l in json_data[i][j][k]) {
                            var tempObject3 = {};
                            if (l != "Details") {
                                tempObject3.label = l;
                                tempObject3.data = {
                                    data_source: header_data_[k],                  
                                    data_grid_type: 'header',
                                    data_grid_index: k,
                                    visible: {
                                          grid: false
                                        }
                                
                                };
                                tempObject2.children.push(tempObject3);    
                              createGrids(header_data_[k]);
                              
                            } else {
                                for (var m = 0; m < json_data[i][j][k][l].length; m++) {
                                    tempObject3 = {};
                                    tempObject3.label = l + " " + (m + 1);
                                    tempObject3.data = {
                                        gridId: 'grid_d['+m+']', 
                                        data_source: detail_data_[m],
                                        //data_source: 'detail_data[' + m + ']',
                                        //  data_can_contain_anything: true
                                        data_grid_type: 'detail',
                                        data_grid_index: k,
                                        visible: {
                                          grid: false
                                        }
                                    };
                                    tempObject2.children.push(tempObject3);
                                    createGrids(detail_data_[k]);
                                }
                            }
                        }
                        tempObject.children.push(tempObject2);
                      
                      
                    }
                    tree.push(tempObject);
                    //debugger;
                }               
            }
        }
        /* END TREE BUILDING */
      
        console.log(tree);
     
        treedata_avm = tree;
        $scope.my_tree = tree = {};
  
        $scope.my_data = treedata_avm;
                   
        $scope.visible = {
                   grid: false
                   };
      
        /*Function where a user clicks on a branch*/
        $scope.my_tree_handler = function(branch) {
      //   console.log(branch.data.visible.grid);
//branch.data.visible.grid = true;
         //   createGridsFromBranch(branch);
         
        };
              
      /*Function that builds the grid*/
   $scope.rules = [];
          createGridsFromBranch = function(branch) {
            $scope.rules = [];
            $timeout(function() {
                $scope.rules.push({
                    grid: {
                        data: JSON.stringify(branch.data.data_source),
                        enableCellSelection: true,
                        enableRowSelection: false,
                        enableCellEditOnFocus: true,              
                        columnDefs: [{
                            field: 'label',
                            displayName: 'Label',
                           enableCellEdit: false
                          
                        }, {
                            field: 'value',
                            displayName: 'Value',
                            editableCellTemplate: '<input type="text" ng-class=""colt" + col.index" ng-input="COL_FIELD" ng-model="COL_FIELD" data-placeholder="-- Select One --" />',
                            enableCellEdit: true
                        }]
                    },
                    //gridBranch: {
                    //  branch: branch
                      //    idx: branch.data.data_grid_index,
                    //    name: branch.data.data_grid_type
                   // }
                });
                   console.info($scope.rules);
            }, 0);
        };
     
    });
}).call(this);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
savvylukepro
0viewers