diff --git a/src/BusinessCardManagement.java b/src/BusinessCardManagement.java index 9e063f2..a6e4385 100644 --- a/src/BusinessCardManagement.java +++ b/src/BusinessCardManagement.java @@ -1,7 +1,25 @@ -import javax.swing.*; -import java.util.*; +import java.io.File; +import java.io.IOException; +import java.net.URISyntaxException; +import java.nio.charset.Charset; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.swing.JFileChooser; +import javax.swing.JOptionPane; +import javax.swing.JPanel; +import javax.swing.filechooser.FileNameExtensionFilter; public class BusinessCardManagement { + + public final Charset CHARSET = java.nio.charset.Charset.forName("Shift_JIS"); + private Screen screen; private ScreenTemplates screenTemplates; private W4ca84254d30c423ab8e449171a5b5123 w4ca84254d30c423ab8e449171a5b5123; @@ -21,6 +39,7 @@ this.result = result; this.companyList = companyList; this.w2d109ad3739d4744a1874ac179fc38b9 = w2d109ad3739d4744a1874ac179fc38b9; + load(); } public Map> getValue() { Map> value = new HashMap<>(); @@ -115,12 +134,171 @@ this.widget.updateDataFromBusinessCardManagement2(scId, wid, this.getValue(), w4ca84254d30c423ab8e449171a5b5123, searchScreen); } + + final int COMPANY_NAME_INDEX = 0; + final int PERSON_NAME_INDEX = 1; + final int POSITION_INDEX = 2; + final int ADDRESS_INDEX = 4; + final int TELL_INDEX = 5; public void imports(String curScreen, String wid, int state) { + if (state != 0) { + return; + } JPanel mainPanel = screen.getPresenter().getMainPanel(); + JFileChooser fileChooser = new JFileChooser(); + FileNameExtensionFilter filter = new FileNameExtensionFilter("CSVファイル(*.csv)", "csv"); + fileChooser.setFileFilter(filter); + int result = fileChooser.showOpenDialog(mainPanel); + if (result == JFileChooser.APPROVE_OPTION) { + File selectedFile = fileChooser.getSelectedFile(); + Map>> businessCardData = new HashMap<>(); + try { + List lines = Files.readAllLines(selectedFile.toPath(), CHARSET); + for (int i = 1; i < lines.size(); i++) { + String line = lines.get(i); + String[] value = line.split(",", -1); + String companyName = value[0]; + if (! businessCardData.containsKey(companyName)) { + businessCardData.put(companyName, new ArrayList<>()); + } + businessCardData.get(companyName).add(Arrays.asList(value)); + } + for (var companyName : businessCardData.keySet()) { + String address = businessCardData.get(companyName).get(0).get(ADDRESS_INDEX); + String[] names = new String[4]; + String[] positions = new String[4]; + String[] tells = new String[4]; + for (int i = 0; i < Math.min(businessCardData.get(companyName).size(), 4); i++) { + List data = businessCardData.get(companyName).get(i); + names[i] = data.get(PERSON_NAME_INDEX); + positions[i] = data.get(POSITION_INDEX); + tells[i] = data.get(TELL_INDEX); + } + BusinessCardManagementElement bussinessCard + = new BusinessCardManagementElement("", "", "", address, "", "", "", "", "", names[0], positions[0], tells[0], "", names[1], positions[1], tells[1], "",names[2], positions[2], tells[2], "",names[3], positions[3], tells[3], ""); + value.put(companyName, bussinessCard); + } +// screen.getPresenter().setTable(curScreen, w2d109ad3739d4744a1874ac179fc38b9.getValue(), getValue()); + } catch (IOException e) { + e.printStackTrace(); + JOptionPane.showMessageDialog(mainPanel, "ファイルの読み込みに失敗しました。"); + } + } } + public void load() { + try { + Path path = getCSVFilePath(); + if (Files.notExists(path)) { + return; + } + List lines = Files.readAllLines(path, CHARSET); + for (String line : lines) { + String[] values = line.split(",", -1); + + BusinessCardManagementElement businessCard = new BusinessCardManagementElement( + values[1], + values[2], + values[3], + values[4], + values[5], + values[6], + values[7], + values[8], + values[9], + values[10], + values[11], + values[12], + values[13], + values[14], + values[15], + values[16], + values[17], + values[18], + values[19], + values[20], + values[21], + values[22], + values[23], + values[24], + values[25] + ); + value.put(values[0], businessCard); + } +// screen.getPresenter().setTable(curScreen, w2d109ad3739d4744a1874ac179fc38b9.getValue(), getValue()); + } catch (URISyntaxException | IOException e) { + // TODO 自動生成された catch ブロック + e.printStackTrace(); + } + } + + public void save(String curScreen, String wid, int state) { + if (state != 0) { + return; + } JPanel mainPanel = screen.getPresenter().getMainPanel(); + Path path; + try { + path = getCSVFilePath(); + StringBuilder sb = new StringBuilder(); + if (Files.notExists(path)) { + Files.createFile(path); + } + for (String key : value.keySet()) { + BusinessCardManagementElement businessCard = value.get(key); + String[] values = { + key, + businessCard.getRepresentative(), + businessCard.getPosition(), + businessCard.getEstablishment(), + businessCard.getAddress1(), + businessCard.getAddress2(), + businessCard.getBusinessDescription2(), + businessCard.getBusinessDescription1(), + businessCard.getCompanyOverview(), + businessCard.getURL(), + businessCard.getContactPerson1(), + businessCard.getPosition1(), + businessCard.getTel1(), + businessCard.getEmail1(), + businessCard.getContactPerson2(), + businessCard.getPosition2(), + businessCard.getTel2(), + businessCard.getEmail2(), + businessCard.getContactPerson3(), + businessCard.getPosition3(), + businessCard.getTel3(), + businessCard.getEmail3(), + businessCard.getContactPerson4(), + businessCard.getPosition4(), + businessCard.getTel4(), + businessCard.getEmail4() + }; + for (String value : values) { + if (value != null) { + sb.append(escapeCsv(value)); + } + sb.append(","); + } + sb.deleteCharAt(sb.length() - 1); + sb.append('\n'); + } + sb.deleteCharAt(sb.length() - 1); + System.out.println(sb.toString()); + Files.write(path, sb.toString().getBytes(CHARSET)); + } catch (URISyntaxException | IOException e) { + e.printStackTrace(); + JOptionPane.showMessageDialog(mainPanel, "ファイルの保存に失敗しました。"); + } + } + + private String escapeCsv(String value) { + if (value.contains(",") || value.contains("\"") || value.contains("\n")) { + value = value.replace("\"", "\"\""); + return "\"" + value + "\""; + } + return value; } public void delete(String curScreen, String wid, int state, String tableWid, String key) { @@ -129,4 +307,12 @@ this.screenTemplates.getScreenTemplate(curScreen).getWidgets1().getWidget1(tableWid).updateDataFromBusinessCardManagement4(curScreen, tableWid, getValue()); } } + + private Path getCSVFilePath() throws URISyntaxException { + return Paths.get(Main.class.getProtectionDomain() + .getCodeSource() + .getLocation() + .toURI().toString().substring(6) + "../startup.csv"); + } + } \ No newline at end of file diff --git a/src/ScreenTemplates.java b/src/ScreenTemplates.java index 184452a..0a4f1a9 100644 --- a/src/ScreenTemplates.java +++ b/src/ScreenTemplates.java @@ -93,16 +93,16 @@ temp_json14.put("type", "label"); temp_json14.put("text", "住所2"); temp_json14.put("visible", true); - temp_json14.put("x", 370); - temp_json14.put("y", 355); + temp_json14.put("x", 360); + temp_json14.put("y", 320); temp_json14.put("width", 50); temp_json14.put("height", 20); Map temp_json15 = new HashMap<>(); temp_json15.put("type", "label"); temp_json15.put("text", "担当者"); temp_json15.put("visible", true); - temp_json15.put("x", 685); - temp_json15.put("y", 355); + temp_json15.put("x", 675); + temp_json15.put("y", 320); temp_json15.put("width", 50); temp_json15.put("height", 20); Map temp_json16 = new HashMap<>(); @@ -117,7 +117,7 @@ temp_json17.put("type", "label"); temp_json17.put("text", "事業内容2"); temp_json17.put("visible", true); - temp_json17.put("x", 370); + temp_json17.put("x", 360); temp_json17.put("y", 220); temp_json17.put("width", 70); temp_json17.put("height", 20); @@ -148,9 +148,9 @@ temp_json18.put("text", "table"); temp_json18.put("visible", true); temp_json18.put("x", 85); - temp_json18.put("y", 500); + temp_json18.put("y", 440); temp_json18.put("width", 1365); - temp_json18.put("height", 285); + temp_json18.put("height", 385); temp_json18.put("data", temp_json19); temp_json18.put("columns", temp_list2); temp_json18.put("primaryKeyName", "会社名"); @@ -158,7 +158,7 @@ temp_json21.put("type", "label"); temp_json21.put("text", "会社概要"); temp_json21.put("visible", true); - temp_json21.put("x", 685); + temp_json21.put("x", 985); temp_json21.put("y", 220); temp_json21.put("width", 50); temp_json21.put("height", 20); @@ -167,30 +167,30 @@ temp_json22.put("text", "住所1"); temp_json22.put("visible", true); temp_json22.put("x", 55); - temp_json22.put("y", 355); + temp_json22.put("y", 320); temp_json22.put("width", 50); temp_json22.put("height", 20); Map temp_json23 = new HashMap<>(); temp_json23.put("type", "button"); temp_json23.put("text", "検索"); temp_json23.put("visible", true); - temp_json23.put("x", 1150); - temp_json23.put("y", 85); + temp_json23.put("x", 1295); + temp_json23.put("y", 95); temp_json23.put("width", 110); temp_json23.put("height", 55); Map temp_json24 = new HashMap<>(); temp_json24.put("type", "textInput"); temp_json24.put("text", ""); temp_json24.put("visible", true); - temp_json24.put("x", 370); + temp_json24.put("x", 360); temp_json24.put("y", 245); - temp_json24.put("width", 280); - temp_json24.put("height", 65); + temp_json24.put("width", 200); + temp_json24.put("height", 40); Map temp_json25 = new HashMap<>(); temp_json25.put("type", "label"); temp_json25.put("text", "会社名"); temp_json25.put("visible", true); - temp_json25.put("x", 995); + temp_json25.put("x", 675); temp_json25.put("y", 220); temp_json25.put("width", 50); temp_json25.put("height", 20); @@ -198,16 +198,16 @@ temp_json26.put("type", "textInput"); temp_json26.put("text", ""); temp_json26.put("visible", true); - temp_json26.put("x", 685); + temp_json26.put("x", 985); temp_json26.put("y", 245); - temp_json26.put("width", 280); - temp_json26.put("height", 65); + temp_json26.put("width", 200); + temp_json26.put("height", 40); Map temp_json27 = new HashMap<>(); temp_json27.put("type", "button"); temp_json27.put("text", "一覧へ戻る"); temp_json27.put("visible", true); - temp_json27.put("x", 1005); - temp_json27.put("y", 85); + temp_json27.put("x", 1150); + temp_json27.put("y", 95); temp_json27.put("width", 110); temp_json27.put("height", 55); Map temp_json28 = new HashMap<>(); @@ -216,40 +216,48 @@ temp_json28.put("visible", true); temp_json28.put("x", 55); temp_json28.put("y", 245); - temp_json28.put("width", 280); - temp_json28.put("height", 65); + temp_json28.put("width", 200); + temp_json28.put("height", 40); Map temp_json29 = new HashMap<>(); temp_json29.put("type", "textInput"); temp_json29.put("text", ""); temp_json29.put("visible", true); - temp_json29.put("x", 370); - temp_json29.put("y", 380); - temp_json29.put("width", 280); - temp_json29.put("height", 65); + temp_json29.put("x", 360); + temp_json29.put("y", 345); + temp_json29.put("width", 200); + temp_json29.put("height", 40); Map temp_json30 = new HashMap<>(); temp_json30.put("type", "textInput"); temp_json30.put("text", ""); temp_json30.put("visible", true); - temp_json30.put("x", 685); - temp_json30.put("y", 380); - temp_json30.put("width", 280); - temp_json30.put("height", 65); + temp_json30.put("x", 675); + temp_json30.put("y", 345); + temp_json30.put("width", 200); + temp_json30.put("height", 40); Map temp_json31 = new HashMap<>(); temp_json31.put("type", "textInput"); temp_json31.put("text", ""); temp_json31.put("visible", true); - temp_json31.put("x", 995); + temp_json31.put("x", 675); temp_json31.put("y", 245); - temp_json31.put("width", 280); - temp_json31.put("height", 65); + temp_json31.put("width", 200); + temp_json31.put("height", 40); Map temp_json32 = new HashMap<>(); temp_json32.put("type", "textInput"); temp_json32.put("text", ""); temp_json32.put("visible", true); temp_json32.put("x", 55); - temp_json32.put("y", 380); - temp_json32.put("width", 280); - temp_json32.put("height", 65); + temp_json32.put("y", 345); + temp_json32.put("width", 200); + temp_json32.put("height", 40); + Map temp_json68_ = new HashMap<>(); + temp_json68_.put("type", "label"); + temp_json68_.put("text", "検索画面"); + temp_json68_.put("visible", true); + temp_json68_.put("x", 120); + temp_json68_.put("y", 80); + temp_json68_.put("width", 60); + temp_json68_.put("height", 65); Map temp_json13 = new HashMap<>(); temp_json13.put("w8fd9daaa986d40978c63408ee0a9527f", temp_json14); temp_json13.put("wcada3c4a537b4c7eae76954b6ed08ea8", temp_json15); @@ -268,194 +276,451 @@ temp_json13.put("search7", temp_json30); temp_json13.put("search4", temp_json31); temp_json13.put("search5", temp_json32); + temp_json13.put("selectSearchMode", temp_json68_); Map temp_json12 = new HashMap<>(); temp_json12.put("screenId", "検索項目画面"); temp_json12.put("layout", false); temp_json12.put("widgets", temp_json13); Map temp_json35 = new HashMap<>(); temp_json35.put("type", "label"); - temp_json35.put("text", ""); + temp_json35.put("text", "編集画面"); temp_json35.put("visible", true); - temp_json35.put("x", 722); - temp_json35.put("y", 201); - temp_json35.put("width", 48); - temp_json35.put("height", 19); + temp_json35.put("x", 120); + temp_json35.put("y", 80); + temp_json35.put("width", 60); + temp_json35.put("height", 65); Map temp_json36 = new HashMap<>(); temp_json36.put("type", "label"); temp_json36.put("text", "住所2"); temp_json36.put("visible", true); - temp_json36.put("x", 416); - temp_json36.put("y", 361); - temp_json36.put("width", 48); - temp_json36.put("height", 19); + temp_json36.put("x", 360); + temp_json36.put("y", 320); + temp_json36.put("width", 50); + temp_json36.put("height", 20); Map temp_json37 = new HashMap<>(); temp_json37.put("type", "button"); temp_json37.put("text", "一覧へ戻る"); temp_json37.put("visible", true); - temp_json37.put("x", 1080); - temp_json37.put("y", 85); - temp_json37.put("width", 120); - temp_json37.put("height", 60); + temp_json37.put("x", 1150); + temp_json37.put("y", 95); + temp_json37.put("width", 110); + temp_json37.put("height", 55); Map temp_json38 = new HashMap<>(); temp_json38.put("type", "label"); temp_json38.put("text", "役職"); temp_json38.put("visible", true); - temp_json38.put("x", 720); - temp_json38.put("y", 201); - temp_json38.put("width", 48); - temp_json38.put("height", 19); + temp_json38.put("x", 675); + temp_json38.put("y", 220); + temp_json38.put("width", 50); + temp_json38.put("height", 20); Map temp_json39 = new HashMap<>(); temp_json39.put("type", "textInput"); temp_json39.put("text", ""); temp_json39.put("visible", true); - temp_json39.put("x", 416); - temp_json39.put("y", 384); - temp_json39.put("width", 280); - temp_json39.put("height", 64); + temp_json39.put("x", 360); + temp_json39.put("y", 345); + temp_json39.put("width", 200); + temp_json39.put("height", 40); Map temp_json40 = new HashMap<>(); temp_json40.put("type", "label"); temp_json40.put("text", "URL"); temp_json40.put("visible", true); - temp_json40.put("x", 416); - temp_json40.put("y", 517); - temp_json40.put("width", 48); - temp_json40.put("height", 19); + temp_json40.put("x", 1295); + temp_json40.put("y", 320); + temp_json40.put("width", 50); + temp_json40.put("height", 20); Map temp_json41 = new HashMap<>(); temp_json41.put("type", "textInput"); temp_json41.put("text", ""); temp_json41.put("visible", true); - temp_json41.put("x", 720); - temp_json41.put("y", 384); - temp_json41.put("width", 280); - temp_json41.put("height", 64); + temp_json41.put("x", 675); + temp_json41.put("y", 345); + temp_json41.put("width", 200); + temp_json41.put("height", 40); Map temp_json42 = new HashMap<>(); temp_json42.put("type", "textInput"); temp_json42.put("text", ""); temp_json42.put("visible", true); - temp_json42.put("x", 1032); - temp_json42.put("y", 224); - temp_json42.put("width", 280); - temp_json42.put("height", 64); + temp_json42.put("x", 985); + temp_json42.put("y", 245); + temp_json42.put("width", 200); + temp_json42.put("height", 40); Map temp_json43 = new HashMap<>(); temp_json43.put("type", "textInput"); temp_json43.put("text", ""); temp_json43.put("visible", true); - temp_json43.put("x", 416); - temp_json43.put("y", 224); - temp_json43.put("width", 280); - temp_json43.put("height", 64); + temp_json43.put("x", 360); + temp_json43.put("y", 245); + temp_json43.put("width", 200); + temp_json43.put("height", 40); Map temp_json44 = new HashMap<>(); temp_json44.put("type", "label"); temp_json44.put("text", "設立"); temp_json44.put("visible", true); - temp_json44.put("x", 1032); - temp_json44.put("y", 201); - temp_json44.put("width", 48); - temp_json44.put("height", 19); + temp_json44.put("x", 985); + temp_json44.put("y", 220); + temp_json44.put("width", 50); + temp_json44.put("height", 20); Map temp_json45 = new HashMap<>(); temp_json45.put("type", "label"); temp_json45.put("text", "住所1"); temp_json45.put("visible", true); - temp_json45.put("x", 112); - temp_json45.put("y", 362); - temp_json45.put("width", 48); - temp_json45.put("height", 19); + temp_json45.put("x", 55); + temp_json45.put("y", 320); + temp_json45.put("width", 50); + temp_json45.put("height", 20); Map temp_json46 = new HashMap<>(); temp_json46.put("type", "label"); temp_json46.put("text", "会社名"); temp_json46.put("visible", true); - temp_json46.put("x", 112); - temp_json46.put("y", 204); - temp_json46.put("width", 48); - temp_json46.put("height", 19); + temp_json46.put("x", 55); + temp_json46.put("y", 220); + temp_json46.put("width", 50); + temp_json46.put("height", 20); Map temp_json47 = new HashMap<>(); temp_json47.put("type", "textInput"); temp_json47.put("text", ""); temp_json47.put("visible", true); - temp_json47.put("x", 416); - temp_json47.put("y", 544); - temp_json47.put("width", 280); - temp_json47.put("height", 64); + temp_json47.put("x", 1295); + temp_json47.put("y", 345); + temp_json47.put("width", 200); + temp_json47.put("height", 40); Map temp_json48 = new HashMap<>(); temp_json48.put("type", "textInput"); temp_json48.put("text", ""); temp_json48.put("visible", true); - temp_json48.put("x", 720); - temp_json48.put("y", 225); - temp_json48.put("width", 280); - temp_json48.put("height", 64); + temp_json48.put("x", 675); + temp_json48.put("y", 245); + temp_json48.put("width", 200); + temp_json48.put("height", 40); Map temp_json49 = new HashMap<>(); temp_json49.put("type", "label"); temp_json49.put("text", "会社概要"); temp_json49.put("visible", true); - temp_json49.put("x", 112); - temp_json49.put("y", 519); - temp_json49.put("width", 48); - temp_json49.put("height", 19); + temp_json49.put("x", 1295); + temp_json49.put("y", 220); + temp_json49.put("width", 50); + temp_json49.put("height", 20); Map temp_json50 = new HashMap<>(); temp_json50.put("type", "label"); temp_json50.put("text", "事業内容2"); temp_json50.put("visible", true); - temp_json50.put("x", 1032); - temp_json50.put("y", 364); - temp_json50.put("width", 64); - temp_json50.put("height", 19); + temp_json50.put("x", 985); + temp_json50.put("y", 320); + temp_json50.put("width", 70); + temp_json50.put("height", 20); Map temp_json51 = new HashMap<>(); temp_json51.put("type", "textInput"); temp_json51.put("text", ""); temp_json51.put("visible", true); - temp_json51.put("x", 1032); - temp_json51.put("y", 389); - temp_json51.put("width", 280); - temp_json51.put("height", 64); + temp_json51.put("x", 985); + temp_json51.put("y", 345); + temp_json51.put("width", 200); + temp_json51.put("height", 40); Map temp_json52 = new HashMap<>(); temp_json52.put("type", "button"); temp_json52.put("text", "編集"); temp_json52.put("visible", true); - temp_json52.put("x", 1230); - temp_json52.put("y", 85); - temp_json52.put("width", 128); - temp_json52.put("height", 60); + temp_json52.put("x", 1295); + temp_json52.put("y", 95); + temp_json52.put("width", 110); + temp_json52.put("height", 55); Map temp_json53 = new HashMap<>(); temp_json53.put("type", "textInput"); temp_json53.put("text", ""); temp_json53.put("visible", true); - temp_json53.put("x", 112); - temp_json53.put("y", 224); - temp_json53.put("width", 280); - temp_json53.put("height", 64); + temp_json53.put("x", 55); + temp_json53.put("y", 245); + temp_json53.put("width", 200); + temp_json53.put("height", 40); Map temp_json54 = new HashMap<>(); temp_json54.put("type", "textInput"); temp_json54.put("text", ""); temp_json54.put("visible", true); - temp_json54.put("x", 112); - temp_json54.put("y", 544); - temp_json54.put("width", 280); - temp_json54.put("height", 64); + temp_json54.put("x", 1295); + temp_json54.put("y", 245); + temp_json54.put("width", 200); + temp_json54.put("height", 40); Map temp_json55 = new HashMap<>(); temp_json55.put("type", "label"); temp_json55.put("text", "事業内容1"); temp_json55.put("visible", true); - temp_json55.put("x", 722); - temp_json55.put("y", 364); - temp_json55.put("width", 80); - temp_json55.put("height", 19); + temp_json55.put("x", 675); + temp_json55.put("y", 320); + temp_json55.put("width", 70); + temp_json55.put("height", 20); Map temp_json56 = new HashMap<>(); temp_json56.put("type", "textInput"); temp_json56.put("text", ""); temp_json56.put("visible", true); - temp_json56.put("x", 112); - temp_json56.put("y", 384); - temp_json56.put("width", 280); - temp_json56.put("height", 64); + temp_json56.put("x", 55); + temp_json56.put("y", 345); + temp_json56.put("width", 200); + temp_json56.put("height", 40); Map temp_json57 = new HashMap<>(); temp_json57.put("type", "label"); temp_json57.put("text", "代表者"); temp_json57.put("visible", true); - temp_json57.put("x", 421); - temp_json57.put("y", 204); - temp_json57.put("width", 38); - temp_json57.put("height", 19); + temp_json57.put("x", 360); + temp_json57.put("y", 220); + temp_json57.put("width", 50); + temp_json57.put("height", 20); + Map temp_json35_ = new HashMap<>(); + temp_json35_.put("type", "label"); + temp_json35_.put("text", "担当者1"); + temp_json35_.put("visible", true); + temp_json35_.put("x", 55); + temp_json35_.put("y", 420); + temp_json35_.put("width", 50); + temp_json35_.put("height", 20); + Map temp_json36_ = new HashMap<>(); + temp_json36_.put("type", "label"); + temp_json36_.put("text", "担当者1 役職"); + temp_json36_.put("visible", true); + temp_json36_.put("x", 360); + temp_json36_.put("y", 420); + temp_json36_.put("width", 100); + temp_json36_.put("height", 20); + Map temp_json37_ = new HashMap<>(); + temp_json37_.put("type", "label"); + temp_json37_.put("text", "担当者1 電話"); + temp_json37_.put("visible", true); + temp_json37_.put("x", 675); + temp_json37_.put("y", 420); + temp_json37_.put("width", 100); + temp_json37_.put("height", 20); + Map temp_json38_ = new HashMap<>(); + temp_json38_.put("type", "label"); + temp_json38_.put("text", "担当者1 Mail"); + temp_json38_.put("visible", true); + temp_json38_.put("x", 985); + temp_json38_.put("y", 420); + temp_json38_.put("width", 100); + temp_json38_.put("height", 20); + Map temp_json39_ = new HashMap<>(); + temp_json39_.put("type", "label"); + temp_json39_.put("text", "担当者2"); + temp_json39_.put("visible", true); + temp_json39_.put("x", 55); + temp_json39_.put("y", 520); + temp_json39_.put("width", 50); + temp_json39_.put("height", 20); + Map temp_json40_ = new HashMap<>(); + temp_json40_.put("type", "label"); + temp_json40_.put("text", "担当者2 役職"); + temp_json40_.put("visible", true); + temp_json40_.put("x", 360); + temp_json40_.put("y", 520); + temp_json40_.put("width", 100); + temp_json40_.put("height", 20); + Map temp_json41_ = new HashMap<>(); + temp_json41_.put("type", "label"); + temp_json41_.put("text", "担当者2 電話"); + temp_json41_.put("visible", true); + temp_json41_.put("x", 675); + temp_json41_.put("y", 520); + temp_json41_.put("width", 100); + temp_json41_.put("height", 20); + Map temp_json42_ = new HashMap<>(); + temp_json42_.put("type", "label"); + temp_json42_.put("text", "担当者2 Mail"); + temp_json42_.put("visible", true); + temp_json42_.put("x", 985); + temp_json42_.put("y", 520); + temp_json42_.put("width", 100); + temp_json42_.put("height", 20); + Map temp_json43_ = new HashMap<>(); + temp_json43_.put("type", "label"); + temp_json43_.put("text", "担当者3"); + temp_json43_.put("visible", true); + temp_json43_.put("x", 55); + temp_json43_.put("y", 620); + temp_json43_.put("width", 50); + temp_json43_.put("height", 20); + Map temp_json44_ = new HashMap<>(); + temp_json44_.put("type", "label"); + temp_json44_.put("text", "担当者3 役職"); + temp_json44_.put("visible", true); + temp_json44_.put("x", 360); + temp_json44_.put("y", 620); + temp_json44_.put("width", 100); + temp_json44_.put("height", 20); + Map temp_json45_ = new HashMap<>(); + temp_json45_.put("type", "label"); + temp_json45_.put("text", "担当者3 電話"); + temp_json45_.put("visible", true); + temp_json45_.put("x", 675); + temp_json45_.put("y", 620); + temp_json45_.put("width", 100); + temp_json45_.put("height", 20); + Map temp_json46_ = new HashMap<>(); + temp_json46_.put("type", "label"); + temp_json46_.put("text", "担当者3 Mail"); + temp_json46_.put("visible", true); + temp_json46_.put("x", 985); + temp_json46_.put("y", 620); + temp_json46_.put("width", 100); + temp_json46_.put("height", 20); + Map temp_json47_ = new HashMap<>(); + temp_json47_.put("type", "label"); + temp_json47_.put("text", "担当者4"); + temp_json47_.put("visible", true); + temp_json47_.put("x", 55); + temp_json47_.put("y", 720); + temp_json47_.put("width", 50); + temp_json47_.put("height", 20); + Map temp_json48_ = new HashMap<>(); + temp_json48_.put("type", "label"); + temp_json48_.put("text", "担当者4 役職"); + temp_json48_.put("visible", true); + temp_json48_.put("x", 360); + temp_json48_.put("y", 720); + temp_json48_.put("width", 100); + temp_json48_.put("height", 20); + Map temp_json49_ = new HashMap<>(); + temp_json49_.put("type", "label"); + temp_json49_.put("text", "担当者4 電話"); + temp_json49_.put("visible", true); + temp_json49_.put("x", 675); + temp_json49_.put("y", 720); + temp_json49_.put("width", 100); + temp_json49_.put("height", 20); + Map temp_json50_ = new HashMap<>(); + temp_json50_.put("type", "label"); + temp_json50_.put("text", "担当者4 Mail"); + temp_json50_.put("visible", true); + temp_json50_.put("x", 985); + temp_json50_.put("y", 720); + temp_json50_.put("width", 100); + temp_json50_.put("height", 20); + Map temp_json51_ = new HashMap<>(); + temp_json51_.put("type", "textInput"); + temp_json51_.put("text", ""); + temp_json51_.put("visible", true); + temp_json51_.put("x", 55); + temp_json51_.put("y", 445); + temp_json51_.put("width", 200); + temp_json51_.put("height", 40); + Map temp_json52_ = new HashMap<>(); + temp_json52_.put("type", "textInput"); + temp_json52_.put("text", ""); + temp_json52_.put("visible", true); + temp_json52_.put("x", 360); + temp_json52_.put("y", 445); + temp_json52_.put("width", 200); + temp_json52_.put("height", 40); + Map temp_json53_ = new HashMap<>(); + temp_json53_.put("type", "textInput"); + temp_json53_.put("text", ""); + temp_json53_.put("visible", true); + temp_json53_.put("x", 675); + temp_json53_.put("y", 445); + temp_json53_.put("width", 200); + temp_json53_.put("height", 40); + Map temp_json54_ = new HashMap<>(); + temp_json54_.put("type", "textInput"); + temp_json54_.put("text", ""); + temp_json54_.put("visible", true); + temp_json54_.put("x", 985); + temp_json54_.put("y", 445); + temp_json54_.put("width", 200); + temp_json54_.put("height", 40); + Map temp_json55_ = new HashMap<>(); + temp_json55_.put("type", "textInput"); + temp_json55_.put("text", ""); + temp_json55_.put("visible", true); + temp_json55_.put("x", 55); + temp_json55_.put("y", 545); + temp_json55_.put("width", 200); + temp_json55_.put("height", 40); + Map temp_json56_ = new HashMap<>(); + temp_json56_.put("type", "textInput"); + temp_json56_.put("text", ""); + temp_json56_.put("visible", true); + temp_json56_.put("x", 360); + temp_json56_.put("y", 545); + temp_json56_.put("width", 200); + temp_json56_.put("height", 40); + Map temp_json57_ = new HashMap<>(); + temp_json57_.put("type", "textInput"); + temp_json57_.put("text", ""); + temp_json57_.put("visible", true); + temp_json57_.put("x", 675); + temp_json57_.put("y", 545); + temp_json57_.put("width", 200); + temp_json57_.put("height", 40); + Map temp_json58_ = new HashMap<>(); + temp_json58_.put("type", "textInput"); + temp_json58_.put("text", ""); + temp_json58_.put("visible", true); + temp_json58_.put("x", 985); + temp_json58_.put("y", 545); + temp_json58_.put("width", 200); + temp_json58_.put("height", 40); + Map temp_json59_ = new HashMap<>(); + temp_json59_.put("type", "textInput"); + temp_json59_.put("text", ""); + temp_json59_.put("visible", true); + temp_json59_.put("x", 55); + temp_json59_.put("y", 645); + temp_json59_.put("width", 200); + temp_json59_.put("height", 40); + Map temp_json60_ = new HashMap<>(); + temp_json60_.put("type", "textInput"); + temp_json60_.put("text", ""); + temp_json60_.put("visible", true); + temp_json60_.put("x", 360); + temp_json60_.put("y", 645); + temp_json60_.put("width", 200); + temp_json60_.put("height", 40); + Map temp_json61_ = new HashMap<>(); + temp_json61_.put("type", "textInput"); + temp_json61_.put("text", ""); + temp_json61_.put("visible", true); + temp_json61_.put("x", 675); + temp_json61_.put("y", 645); + temp_json61_.put("width", 200); + temp_json61_.put("height", 40); + Map temp_json62_ = new HashMap<>(); + temp_json62_.put("type", "textInput"); + temp_json62_.put("text", ""); + temp_json62_.put("visible", true); + temp_json62_.put("x", 985); + temp_json62_.put("y", 645); + temp_json62_.put("width", 200); + temp_json62_.put("height", 40); + Map temp_json63_ = new HashMap<>(); + temp_json63_.put("type", "textInput"); + temp_json63_.put("text", ""); + temp_json63_.put("visible", true); + temp_json63_.put("x", 55); + temp_json63_.put("y", 745); + temp_json63_.put("width", 200); + temp_json63_.put("height", 40); + Map temp_json64_ = new HashMap<>(); + temp_json64_.put("type", "textInput"); + temp_json64_.put("text", ""); + temp_json64_.put("visible", true); + temp_json64_.put("x", 360); + temp_json64_.put("y", 745); + temp_json64_.put("width", 200); + temp_json64_.put("height", 40); + Map temp_json65_ = new HashMap<>(); + temp_json65_.put("type", "textInput"); + temp_json65_.put("text", ""); + temp_json65_.put("visible", true); + temp_json65_.put("x", 675); + temp_json65_.put("y", 745); + temp_json65_.put("width", 200); + temp_json65_.put("height", 40); + Map temp_json66_ = new HashMap<>(); + temp_json66_.put("type", "textInput"); + temp_json66_.put("text", ""); + temp_json66_.put("visible", true); + temp_json66_.put("x", 985); + temp_json66_.put("y", 745); + temp_json66_.put("width", 200); + temp_json66_.put("height", 40); Map temp_json34 = new HashMap<>(); temp_json34.put("w92f10414281e4aba83b435456a1315b1", temp_json35); temp_json34.put("w8c31c847e9234ce287aa9d1963013a2e", temp_json36); @@ -480,6 +745,38 @@ temp_json34.put("w19757f15861d421ea16a733d17ca930a", temp_json55); temp_json34.put("address1", temp_json56); temp_json34.put("w792b9bfaac4d4fc7a3d0f9350d9a0005", temp_json57); + temp_json34.put("editManagerNameLabel01", temp_json35_); + temp_json34.put("editManagerPosition01", temp_json36_); + temp_json34.put("editManagerNumber01", temp_json37_); + temp_json34.put("editManagerMail01", temp_json38_); + temp_json34.put("editManagerName02", temp_json39_); + temp_json34.put("editManagerPosition02", temp_json40_); + temp_json34.put("editManagerNumber02", temp_json41_); + temp_json34.put("editManagerMail02", temp_json42_); + temp_json34.put("editManagerName03", temp_json43_); + temp_json34.put("editManagerPosition03", temp_json44_); + temp_json34.put("editManagerNumber03", temp_json45_); + temp_json34.put("editManagerMail03", temp_json46_); + temp_json34.put("editManagerName04", temp_json47_); + temp_json34.put("editManagerPosition04", temp_json48_); + temp_json34.put("editManagerNumber04", temp_json49_); + temp_json34.put("editManagerMail04", temp_json50_); + temp_json34.put("editManagerNameInput01", temp_json51_); + temp_json34.put("editManagerPositionInput01", temp_json52_); + temp_json34.put("editManagerNumberInput01", temp_json53_); + temp_json34.put("editManagerMailInput01", temp_json54_); + temp_json34.put("editManagerNameInput02", temp_json55_); + temp_json34.put("editManagerPositionInput02", temp_json56_); + temp_json34.put("editddManagerNumberInput02", temp_json57_); + temp_json34.put("editManagerMailInput02", temp_json58_); + temp_json34.put("editManagerNameInput03", temp_json59_); + temp_json34.put("editManagerPositionInput03", temp_json60_); + temp_json34.put("editManagerNumberInput03", temp_json61_); + temp_json34.put("editManagerMailInput03", temp_json62_); + temp_json34.put("editManagerNameInput04", temp_json63_); + temp_json34.put("editManagerPositionInput04", temp_json64_); + temp_json34.put("editManagerNumberInput04", temp_json65_); + temp_json34.put("editManagerMailInput04", temp_json66_); Map temp_json33 = new HashMap<>(); temp_json33.put("screenId", "編集画面2"); temp_json33.put("layout", false); @@ -553,7 +850,7 @@ temp_json01_.put("type", "button"); temp_json01_.put("text", "データ読み込み"); temp_json01_.put("visible", true); - temp_json01_.put("x", 100); + temp_json01_.put("x", 250); temp_json01_.put("y", 85); temp_json01_.put("width", 130); temp_json01_.put("height", 55); @@ -561,10 +858,18 @@ temp_json02_.put("type", "button"); temp_json02_.put("text", "保存"); temp_json02_.put("visible", true); - temp_json02_.put("x", 250); + temp_json02_.put("x", 400); temp_json02_.put("y", 85); temp_json02_.put("width", 110); temp_json02_.put("height", 55); + Map temp_json67_ = new HashMap<>(); + temp_json67_.put("type", "label"); + temp_json67_.put("text", "企業一覧"); + temp_json67_.put("visible", true); + temp_json67_.put("x", 120); + temp_json67_.put("y", 80); + temp_json67_.put("width", 60); + temp_json67_.put("height", 65); Map temp_json59 = new HashMap<>(); temp_json59.put("w191cc519b2344758b8d9878328b41cd9", temp_json60); temp_json59.put("wa1b27f08c9fd4c08b7dda38625c04f3b", temp_json61); @@ -573,6 +878,7 @@ temp_json59.put("wa6aa4bcbb7a64e9eaf75758eae59310a", temp_json66); temp_json59.put("importButton", temp_json01_); temp_json59.put("saveButton", temp_json02_); + temp_json59.put("companyListLabel", temp_json67_); Map temp_json58 = new HashMap<>(); temp_json58.put("screenId", "企業一覧"); temp_json58.put("layout", false); @@ -717,16 +1023,16 @@ temp_json86.put("type", "button"); temp_json86.put("text", "登録"); temp_json86.put("visible", true); - temp_json86.put("x", 1150); - temp_json86.put("y", 85); + temp_json86.put("x", 1295); + temp_json86.put("y", 95); temp_json86.put("width", 110); temp_json86.put("height", 55); Map temp_json87 = new HashMap<>(); temp_json87.put("type", "button"); temp_json87.put("text", "一覧へ戻る"); temp_json87.put("visible", true); - temp_json87.put("x", 1005); - temp_json87.put("y", 85); + temp_json87.put("x", 1150); + temp_json87.put("y", 95); temp_json87.put("width", 110); temp_json87.put("height", 55); Map temp_json88 = new HashMap<>(); @@ -749,8 +1055,8 @@ temp_json90.put("type", "label"); temp_json90.put("text", "登録画面"); temp_json90.put("visible", true); - temp_json90.put("x", 70); - temp_json90.put("y", 75); + temp_json90.put("x", 120); + temp_json90.put("y", 80); temp_json90.put("width", 205); temp_json90.put("height", 65); Map temp_json91 = new HashMap<>(); @@ -761,6 +1067,262 @@ temp_json91.put("y", 245); temp_json91.put("width", 200); temp_json91.put("height", 40); + Map temp_json03_ = new HashMap<>(); + temp_json03_.put("type", "label"); + temp_json03_.put("text", "担当者1"); + temp_json03_.put("visible", true); + temp_json03_.put("x", 55); + temp_json03_.put("y", 420); + temp_json03_.put("width", 50); + temp_json03_.put("height", 20); + Map temp_json04_ = new HashMap<>(); + temp_json04_.put("type", "label"); + temp_json04_.put("text", "担当者1 役職"); + temp_json04_.put("visible", true); + temp_json04_.put("x", 360); + temp_json04_.put("y", 420); + temp_json04_.put("width", 100); + temp_json04_.put("height", 20); + Map temp_json05_ = new HashMap<>(); + temp_json05_.put("type", "label"); + temp_json05_.put("text", "担当者1 電話"); + temp_json05_.put("visible", true); + temp_json05_.put("x", 675); + temp_json05_.put("y", 420); + temp_json05_.put("width", 100); + temp_json05_.put("height", 20); + Map temp_json06_ = new HashMap<>(); + temp_json06_.put("type", "label"); + temp_json06_.put("text", "担当者1 Mail"); + temp_json06_.put("visible", true); + temp_json06_.put("x", 985); + temp_json06_.put("y", 420); + temp_json06_.put("width", 100); + temp_json06_.put("height", 20); + Map temp_json07_ = new HashMap<>(); + temp_json07_.put("type", "label"); + temp_json07_.put("text", "担当者2"); + temp_json07_.put("visible", true); + temp_json07_.put("x", 55); + temp_json07_.put("y", 520); + temp_json07_.put("width", 50); + temp_json07_.put("height", 20); + Map temp_json08_ = new HashMap<>(); + temp_json08_.put("type", "label"); + temp_json08_.put("text", "担当者2 役職"); + temp_json08_.put("visible", true); + temp_json08_.put("x", 360); + temp_json08_.put("y", 520); + temp_json08_.put("width", 100); + temp_json08_.put("height", 20); + Map temp_json09_ = new HashMap<>(); + temp_json09_.put("type", "label"); + temp_json09_.put("text", "担当者2 電話"); + temp_json09_.put("visible", true); + temp_json09_.put("x", 675); + temp_json09_.put("y", 520); + temp_json09_.put("width", 100); + temp_json09_.put("height", 20); + Map temp_json10_ = new HashMap<>(); + temp_json10_.put("type", "label"); + temp_json10_.put("text", "担当者2 Mail"); + temp_json10_.put("visible", true); + temp_json10_.put("x", 985); + temp_json10_.put("y", 520); + temp_json10_.put("width", 100); + temp_json10_.put("height", 20); + Map temp_json11_ = new HashMap<>(); + temp_json11_.put("type", "label"); + temp_json11_.put("text", "担当者3"); + temp_json11_.put("visible", true); + temp_json11_.put("x", 55); + temp_json11_.put("y", 620); + temp_json11_.put("width", 50); + temp_json11_.put("height", 20); + Map temp_json12_ = new HashMap<>(); + temp_json12_.put("type", "label"); + temp_json12_.put("text", "担当者3 役職"); + temp_json12_.put("visible", true); + temp_json12_.put("x", 360); + temp_json12_.put("y", 620); + temp_json12_.put("width", 100); + temp_json12_.put("height", 20); + Map temp_json13_ = new HashMap<>(); + temp_json13_.put("type", "label"); + temp_json13_.put("text", "担当者3 電話"); + temp_json13_.put("visible", true); + temp_json13_.put("x", 675); + temp_json13_.put("y", 620); + temp_json13_.put("width", 100); + temp_json13_.put("height", 20); + Map temp_json14_ = new HashMap<>(); + temp_json14_.put("type", "label"); + temp_json14_.put("text", "担当者3 Mail"); + temp_json14_.put("visible", true); + temp_json14_.put("x", 985); + temp_json14_.put("y", 620); + temp_json14_.put("width", 100); + temp_json14_.put("height", 20); + Map temp_json15_ = new HashMap<>(); + temp_json15_.put("type", "label"); + temp_json15_.put("text", "担当者4"); + temp_json15_.put("visible", true); + temp_json15_.put("x", 55); + temp_json15_.put("y", 720); + temp_json15_.put("width", 50); + temp_json15_.put("height", 20); + Map temp_json16_ = new HashMap<>(); + temp_json16_.put("type", "label"); + temp_json16_.put("text", "担当者4 役職"); + temp_json16_.put("visible", true); + temp_json16_.put("x", 360); + temp_json16_.put("y", 720); + temp_json16_.put("width", 100); + temp_json16_.put("height", 20); + Map temp_json17_ = new HashMap<>(); + temp_json17_.put("type", "label"); + temp_json17_.put("text", "担当者4 電話"); + temp_json17_.put("visible", true); + temp_json17_.put("x", 675); + temp_json17_.put("y", 720); + temp_json17_.put("width", 100); + temp_json17_.put("height", 20); + Map temp_json18_ = new HashMap<>(); + temp_json18_.put("type", "label"); + temp_json18_.put("text", "担当者4 Mail"); + temp_json18_.put("visible", true); + temp_json18_.put("x", 985); + temp_json18_.put("y", 720); + temp_json18_.put("width", 100); + temp_json18_.put("height", 20); + Map temp_json19_ = new HashMap<>(); + temp_json19_.put("type", "textInput"); + temp_json19_.put("text", ""); + temp_json19_.put("visible", true); + temp_json19_.put("x", 55); + temp_json19_.put("y", 445); + temp_json19_.put("width", 200); + temp_json19_.put("height", 40); + Map temp_json20_ = new HashMap<>(); + temp_json20_.put("type", "textInput"); + temp_json20_.put("text", ""); + temp_json20_.put("visible", true); + temp_json20_.put("x", 360); + temp_json20_.put("y", 445); + temp_json20_.put("width", 200); + temp_json20_.put("height", 40); + Map temp_json21_ = new HashMap<>(); + temp_json21_.put("type", "textInput"); + temp_json21_.put("text", ""); + temp_json21_.put("visible", true); + temp_json21_.put("x", 675); + temp_json21_.put("y", 445); + temp_json21_.put("width", 200); + temp_json21_.put("height", 40); + Map temp_json22_ = new HashMap<>(); + temp_json22_.put("type", "textInput"); + temp_json22_.put("text", ""); + temp_json22_.put("visible", true); + temp_json22_.put("x", 985); + temp_json22_.put("y", 445); + temp_json22_.put("width", 200); + temp_json22_.put("height", 40); + Map temp_json23_ = new HashMap<>(); + temp_json23_.put("type", "textInput"); + temp_json23_.put("text", ""); + temp_json23_.put("visible", true); + temp_json23_.put("x", 55); + temp_json23_.put("y", 545); + temp_json23_.put("width", 200); + temp_json23_.put("height", 40); + Map temp_json24_ = new HashMap<>(); + temp_json24_.put("type", "textInput"); + temp_json24_.put("text", ""); + temp_json24_.put("visible", true); + temp_json24_.put("x", 360); + temp_json24_.put("y", 545); + temp_json24_.put("width", 200); + temp_json24_.put("height", 40); + Map temp_json25_ = new HashMap<>(); + temp_json25_.put("type", "textInput"); + temp_json25_.put("text", ""); + temp_json25_.put("visible", true); + temp_json25_.put("x", 675); + temp_json25_.put("y", 545); + temp_json25_.put("width", 200); + temp_json25_.put("height", 40); + Map temp_json26_ = new HashMap<>(); + temp_json26_.put("type", "textInput"); + temp_json26_.put("text", ""); + temp_json26_.put("visible", true); + temp_json26_.put("x", 985); + temp_json26_.put("y", 545); + temp_json26_.put("width", 200); + temp_json26_.put("height", 40); + Map temp_json27_ = new HashMap<>(); + temp_json27_.put("type", "textInput"); + temp_json27_.put("text", ""); + temp_json27_.put("visible", true); + temp_json27_.put("x", 55); + temp_json27_.put("y", 645); + temp_json27_.put("width", 200); + temp_json27_.put("height", 40); + Map temp_json28_ = new HashMap<>(); + temp_json28_.put("type", "textInput"); + temp_json28_.put("text", ""); + temp_json28_.put("visible", true); + temp_json28_.put("x", 360); + temp_json28_.put("y", 645); + temp_json28_.put("width", 200); + temp_json28_.put("height", 40); + Map temp_json29_ = new HashMap<>(); + temp_json29_.put("type", "textInput"); + temp_json29_.put("text", ""); + temp_json29_.put("visible", true); + temp_json29_.put("x", 675); + temp_json29_.put("y", 645); + temp_json29_.put("width", 200); + temp_json29_.put("height", 40); + Map temp_json30_ = new HashMap<>(); + temp_json30_.put("type", "textInput"); + temp_json30_.put("text", ""); + temp_json30_.put("visible", true); + temp_json30_.put("x", 985); + temp_json30_.put("y", 645); + temp_json30_.put("width", 200); + temp_json30_.put("height", 40); + Map temp_json31_ = new HashMap<>(); + temp_json31_.put("type", "textInput"); + temp_json31_.put("text", ""); + temp_json31_.put("visible", true); + temp_json31_.put("x", 55); + temp_json31_.put("y", 745); + temp_json31_.put("width", 200); + temp_json31_.put("height", 40); + Map temp_json32_ = new HashMap<>(); + temp_json32_.put("type", "textInput"); + temp_json32_.put("text", ""); + temp_json32_.put("visible", true); + temp_json32_.put("x", 360); + temp_json32_.put("y", 745); + temp_json32_.put("width", 200); + temp_json32_.put("height", 40); + Map temp_json33_ = new HashMap<>(); + temp_json33_.put("type", "textInput"); + temp_json33_.put("text", ""); + temp_json33_.put("visible", true); + temp_json33_.put("x", 675); + temp_json33_.put("y", 745); + temp_json33_.put("width", 200); + temp_json33_.put("height", 40); + Map temp_json34_ = new HashMap<>(); + temp_json34_.put("type", "textInput"); + temp_json34_.put("text", ""); + temp_json34_.put("visible", true); + temp_json34_.put("x", 985); + temp_json34_.put("y", 745); + temp_json34_.put("width", 200); + temp_json34_.put("height", 40); Map temp_json68 = new HashMap<>(); temp_json68.put("w4a9e4bb65aba4849bb8fa7f59133e8ab", temp_json69); temp_json68.put("wccafd5faa3c049bc90c1922ad8aed59d", temp_json70); @@ -785,6 +1347,38 @@ temp_json68.put("position", temp_json89); temp_json68.put("w7c786f553dfa478bacd443bbb856f06e", temp_json90); temp_json68.put("representative", temp_json91); + temp_json68.put("addManagerNameLabel01", temp_json03_); + temp_json68.put("addManagerPosition01", temp_json04_); + temp_json68.put("addManagerNumber01", temp_json05_); + temp_json68.put("addManagerMail01", temp_json06_); + temp_json68.put("addManagerName02", temp_json07_); + temp_json68.put("addManagerPosition02", temp_json08_); + temp_json68.put("addManagerNumber02", temp_json09_); + temp_json68.put("addManagerMail02", temp_json10_); + temp_json68.put("addManagerName03", temp_json11_); + temp_json68.put("addManagerPosition03", temp_json12_); + temp_json68.put("addManagerNumber03", temp_json13_); + temp_json68.put("addManagerMail03", temp_json14_); + temp_json68.put("addManagerName04", temp_json15_); + temp_json68.put("addManagerPosition04", temp_json16_); + temp_json68.put("addManagerNumber04", temp_json17_); + temp_json68.put("addManagerMail04", temp_json18_); + temp_json68.put("addManagerNameInput01", temp_json19_); + temp_json68.put("addManagerPositionInput01", temp_json20_); + temp_json68.put("addManagerNumberInput01", temp_json21_); + temp_json68.put("addManagerMailInput01", temp_json22_); + temp_json68.put("addManagerNameInput02", temp_json23_); + temp_json68.put("addManagerPositionInput02", temp_json24_); + temp_json68.put("addManagerNumberInput02", temp_json25_); + temp_json68.put("addManagerMailInput02", temp_json26_); + temp_json68.put("addManagerNameInput03", temp_json27_); + temp_json68.put("addManagerPositionInput03", temp_json28_); + temp_json68.put("addManagerNumberInput03", temp_json29_); + temp_json68.put("addManagerMailInput03", temp_json30_); + temp_json68.put("addManagerNameInput04", temp_json31_); + temp_json68.put("addManagerPositionInput04", temp_json32_); + temp_json68.put("addManagerNumberInput04", temp_json33_); + temp_json68.put("addManagerMailInput04", temp_json34_); Map temp_json67 = new HashMap<>(); temp_json67.put("screenId", "登録画面1"); temp_json67.put("layout", false);