From d324588faa5120c95321425a06de683e8aae445b Mon Sep 17 00:00:00 2001
From: buli <137736985@qq.com>
Date: 星期一, 05 六月 2023 14:37:22 +0800
Subject: [PATCH] LEX Community NewComponent
---
force-app/main/default/classes/LookupSearchResult.cls | 1
force-app/main/default/lwc/lexCustomLightningDatatable/customUnit.html | 1
force-app/main/default/lwc/customUnitComp/customUnitComp.html | 2
force-app/main/default/lwc/lexCustomLightningDatatable/customdeleteReason.html | 8
force-app/main/default/classes/LexOverdueStockController.cls | 3
force-app/main/default/classes/LexInventoryListController.cls | 1
force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.js | 10
force-app/main/default/classes/LexProductLimitEditController.cls | 2
force-app/main/default/classes/LexConsumableAccountSOQL.cls | 27
force-app/main/default/lwc/lexCustomLightningDatatable/lexCustomLightningDatatable.js | 14
force-app/main/default/classes/LexConInvoiceViewController.cls | 6
force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.js | 80
force-app/main/default/classes/LexConsumableAccountController.cls | 108
force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.html | 2
force-app/main/default/classes/LexDealerInquiryModifyStateController.cls | 332 ++
force-app/main/default/lwc/lexInventory/lexInventory.js | 65
force-app/main/default/classes/LexConsumableAccountSOQL.cls-meta.xml | 5
force-app/main/default/labels/CustomLabels.labels-meta.xml | 5560 ----------------------------------------------
force-app/main/default/permissionsets/Community_LEX_PS.permissionset-meta.xml | 315 ++
force-app/main/default/lwc/customUnitComp/customUnitComp.js | 4
force-app/main/default/classes/LexInventoryController.cls | 14
force-app/main/default/lwc/lexinventoryViewLWC/lexinventoryViewLWC.js | 6
force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.html | 4
force-app/main/default/lwc/lexConsumable/lexConsumable.js | 8
force-app/main/default/lwc/lexCustomLightningDatatable/customMyDrCheckBox.html | 10
/dev/null | 25
force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.html | 10
force-app/main/default/classes/LexInventoryViewController.cls | 18
force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.js | 543 ++-
29 files changed, 1,123 insertions(+), 6,061 deletions(-)
diff --git a/force-app/main/default/classes/LexConInvoiceViewController.cls b/force-app/main/default/classes/LexConInvoiceViewController.cls
index efaf00a..0173b6c 100644
--- a/force-app/main/default/classes/LexConInvoiceViewController.cls
+++ b/force-app/main/default/classes/LexConInvoiceViewController.cls
@@ -1175,9 +1175,9 @@
FROM Consumable_Orderdetails__c
WHERE Consumable_order__c IN :orderIdList
];
- for (Integer i = 0; i < existLinkinfo.size(); i++) {
- ordermx1defaultMap.put(existLinkinfo[i].Consumable_order__c + existLinkinfo[i].Asset_Model_No__c, 0);
- }
+ // for (Integer i = 0; i < existLinkinfo.size(); i++) {
+ // ordermx1defaultMap.put(existLinkinfo[i].Consumable_order__c + existLinkinfo[i].Asset_Model_No__c, 0);
+ // }
}
public static void deleteOutboundorder(Map<String, String> deleteMap, String value) {
diff --git a/force-app/main/default/classes/LexConsumableAccountController.cls b/force-app/main/default/classes/LexConsumableAccountController.cls
index 8d03987..9925a02 100644
--- a/force-app/main/default/classes/LexConsumableAccountController.cls
+++ b/force-app/main/default/classes/LexConsumableAccountController.cls
@@ -148,62 +148,20 @@
System.debug('fiscalYear = ' + fiscalYear);
if (fiscalYear == 'thisYear') {
- AggregateResult[] saleAmountList = [
- SELECT sum(Sale_amount__c) saleAmount
- FROM Consumable_Orderdetails__c
- WHERE CreatedDate >= :thisDatetime AND CreatedDate < :nextDatetime
- ];
+ AggregateResult[] saleAmountList = LexConsumableAccountSOQL.getAccountTotalSales(thisDatetime, nextDatetime);
topInfo.saleAmount = Decimal.valueOf(String.valueOf(saleAmountList[0].get('saleAmount')));
System.debug('topInfo.saleAmount = ' + topInfo.saleAmount);
- arList = [
- SELECT count(id), Consumable_order__r.Order_ForHospital__r.name hospitalName, sum(Sale_amount__c) thisAmount
- FROM Consumable_Orderdetails__c
- WHERE
- CreatedDate >= :thisDatetime
- AND CreatedDate < :nextDatetime
- AND Consumable_order__r.Order_ForHospital__r.name != ''
- GROUP BY Consumable_order__r.Order_ForHospital__r.Name
- ORDER BY sum(Sale_amount__c) DESC
- LIMIT 10
- ];
+ arList = LexConsumableAccountSOQL.getAccountBySales(thisDatetime, nextDatetime);
} else if (fiscalYear == 'lastYear') {
- AggregateResult[] saleAmountList = [
- SELECT sum(Sale_amount__c) saleAmount
- FROM Consumable_Orderdetails__c
- WHERE CreatedDate >= :lastDatetime AND CreatedDate < :thisDatetime2
- ];
+ AggregateResult[] saleAmountList = LexConsumableAccountSOQL.getAccountTotalSales(lastDatetime, thisDatetime2);
topInfo.saleAmount = Decimal.valueOf(String.valueOf(saleAmountList[0].get('saleAmount')));
System.debug('topInfo.saleAmount = ' + topInfo.saleAmount);
- arList = [
- SELECT count(id), Consumable_order__r.Order_ForHospital__r.name hospitalName, sum(Sale_amount__c) thisAmount
- FROM Consumable_Orderdetails__c
- WHERE
- CreatedDate >= :lastDatetime
- AND CreatedDate < :thisDatetime2
- AND Consumable_order__r.Order_ForHospital__r.name != ''
- GROUP BY Consumable_order__r.Order_ForHospital__r.Name
- ORDER BY sum(Sale_amount__c) DESC
- LIMIT 10
- ];
+ arList = LexConsumableAccountSOQL.getAccountBySales(lastDatetime, thisDatetime2);
} else {
- AggregateResult[] saleAmountList = [
- SELECT sum(Sale_amount__c) saleAmount
- FROM Consumable_Orderdetails__c
- WHERE CreatedDate >= :lastDatetime AND CreatedDate < :nextDatetime
- ];
+ AggregateResult[] saleAmountList = LexConsumableAccountSOQL.getAccountTotalSales(lastDatetime, nextDatetime);
topInfo.saleAmount = Decimal.valueOf(String.valueOf(saleAmountList[0].get('saleAmount')));
System.debug('topInfo.saleAmount = ' + topInfo.saleAmount);
- arList = [
- SELECT count(id), Consumable_order__r.Order_ForHospital__r.name hospitalName, sum(Sale_amount__c) thisAmount
- FROM Consumable_Orderdetails__c
- WHERE
- CreatedDate >= :lastDatetime
- AND CreatedDate < :nextDatetime
- AND Consumable_order__r.Order_ForHospital__r.name != ''
- GROUP BY Consumable_order__r.Order_ForHospital__r.Name
- ORDER BY sum(Sale_amount__c) DESC
- LIMIT 10
- ];
+ arList = LexConsumableAccountSOQL.getAccountBySales(lastDatetime, nextDatetime);
}
//鏌ヨ瀹㈡埛淇℃伅锛堝悕绉帮紝鐪侊紝鍘匡級
@@ -287,62 +245,20 @@
System.debug('fiscalYear = ' + fiscalYear);
if (fiscalYear == 'thisYear') {
- AggregateResult[] saleAmountList = [
- SELECT sum(Sale_amount__c) saleAmount
- FROM Consumable_Orderdetails__c
- WHERE CreatedDate >= :thisDatetime AND CreatedDate < :nextDatetime
- ];
+ AggregateResult[] saleAmountList = LexConsumableAccountSOQL.getAccountTotalSales(thisDatetime, nextDatetime);
topInfo.saleAmount = Decimal.valueOf(String.valueOf(saleAmountList[0].get('saleAmount')));
System.debug('topInfo.saleAmount = ' + topInfo.saleAmount);
- arList = [
- SELECT count(id), Consumable_order__r.Order_ForHospital__r.name hospitalName, sum(Sale_amount__c) thisAmount
- FROM Consumable_Orderdetails__c
- WHERE
- CreatedDate >= :thisDatetime
- AND CreatedDate < :nextDatetime
- AND Consumable_order__r.Order_ForHospital__r.name != ''
- GROUP BY Consumable_order__r.Order_ForHospital__r.Name
- ORDER BY sum(Sale_amount__c) DESC
- LIMIT 10
- ];
+ arList = LexConsumableAccountSOQL.getAccountBySales(thisDatetime, nextDatetime);
} else if (fiscalYear == 'lastYear') {
- AggregateResult[] saleAmountList = [
- SELECT sum(Sale_amount__c) saleAmount
- FROM Consumable_Orderdetails__c
- WHERE CreatedDate >= :lastDatetime AND CreatedDate < :thisDatetime2
- ];
+ AggregateResult[] saleAmountList = LexConsumableAccountSOQL.getAccountTotalSales(lastDatetime, thisDatetime2);
topInfo.saleAmount = Decimal.valueOf(String.valueOf(saleAmountList[0].get('saleAmount')));
System.debug('topInfo.saleAmount = ' + topInfo.saleAmount);
- arList = [
- SELECT count(id), Consumable_order__r.Order_ForHospital__r.name hospitalName, sum(Sale_amount__c) thisAmount
- FROM Consumable_Orderdetails__c
- WHERE
- CreatedDate >= :lastDatetime
- AND CreatedDate < :thisDatetime2
- AND Consumable_order__r.Order_ForHospital__r.name != ''
- GROUP BY Consumable_order__r.Order_ForHospital__r.Name
- ORDER BY sum(Sale_amount__c) DESC
- LIMIT 10
- ];
+ arList = LexConsumableAccountSOQL.getAccountBySales(lastDatetime, thisDatetime2);
} else {
- AggregateResult[] saleAmountList = [
- SELECT sum(Sale_amount__c) saleAmount
- FROM Consumable_Orderdetails__c
- WHERE CreatedDate >= :lastDatetime AND CreatedDate < :nextDatetime
- ];
+ AggregateResult[] saleAmountList = LexConsumableAccountSOQL.getAccountTotalSales(lastDatetime, nextDatetime);
topInfo.saleAmount = Decimal.valueOf(String.valueOf(saleAmountList[0].get('saleAmount')));
System.debug('topInfo.saleAmount = ' + topInfo.saleAmount);
- arList = [
- SELECT count(id), Consumable_order__r.Order_ForHospital__r.name hospitalName, sum(Sale_amount__c) thisAmount
- FROM Consumable_Orderdetails__c
- WHERE
- CreatedDate >= :lastDatetime
- AND CreatedDate < :nextDatetime
- AND Consumable_order__r.Order_ForHospital__r.name != ''
- GROUP BY Consumable_order__r.Order_ForHospital__r.Name
- ORDER BY sum(Sale_amount__c) DESC
- LIMIT 10
- ];
+ arList = LexConsumableAccountSOQL.getAccountBySales(lastDatetime, nextDatetime);
}
//鏌ヨ瀹㈡埛淇℃伅锛堝悕绉帮紝鐪侊紝鍘匡級
List<String> accountList = new List<String>();
diff --git a/force-app/main/default/classes/LexConsumableAccountSOQL.cls b/force-app/main/default/classes/LexConsumableAccountSOQL.cls
new file mode 100644
index 0000000..eef1437
--- /dev/null
+++ b/force-app/main/default/classes/LexConsumableAccountSOQL.cls
@@ -0,0 +1,27 @@
+public with sharing class LexConsumableAccountSOQL {
+ public static AggregateResult[] getAccountBySales(Datetime thisDatetime ,Datetime nextDatetime){
+ AggregateResult[] arList = new List<AggregateResult>([
+ SELECT count(id), Consumable_order__r.Order_ForHospital__r.name hospitalName, sum(Sale_amount__c) thisAmount
+ FROM Consumable_Orderdetails__c
+ WHERE
+ CreatedDate >= :thisDatetime
+ AND CreatedDate < :nextDatetime
+ AND Consumable_order__r.Order_ForHospital__r.name != ''
+ GROUP BY Consumable_order__r.Order_ForHospital__r.Name
+ ORDER BY sum(Sale_amount__c) DESC
+ LIMIT 10
+ ]);
+ return arList;
+ }
+
+ public static AggregateResult[] getAccountTotalSales(Datetime thisDatetime ,Datetime nextDatetime){
+ AggregateResult[] saleAmountList = [
+ SELECT sum(Sale_amount__c) saleAmount
+ FROM Consumable_Orderdetails__c
+ WHERE CreatedDate >= :thisDatetime AND CreatedDate < :nextDatetime
+ ];
+ return saleAmountList;
+ }
+
+
+}
\ No newline at end of file
diff --git a/force-app/main/default/classes/LexConsumableAccountSOQL.cls-meta.xml b/force-app/main/default/classes/LexConsumableAccountSOQL.cls-meta.xml
new file mode 100644
index 0000000..754ecb1
--- /dev/null
+++ b/force-app/main/default/classes/LexConsumableAccountSOQL.cls-meta.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
+ <apiVersion>57.0</apiVersion>
+ <status>Active</status>
+</ApexClass>
diff --git a/force-app/main/default/classes/LexDealerInquiryModifyStateController.cls b/force-app/main/default/classes/LexDealerInquiryModifyStateController.cls
index 60c6ee4..efb18df 100644
--- a/force-app/main/default/classes/LexDealerInquiryModifyStateController.cls
+++ b/force-app/main/default/classes/LexDealerInquiryModifyStateController.cls
@@ -20,10 +20,16 @@
public static String limits { get; set; }//鏃ユ湡03
public static List<SelectOption> dateOpts { get; private set; }
+ public static List<CusOption> textCusOpts;
public static List<SelectOption> textOpts { get; private set; }
+
+ public static List<CusOption> timeCusOpts;
public static List<SelectOption> timeOpts { get; private set; }
+
+ public static List<CusOption> equalCusOpts;
public static List<SelectOption> equalOpts { get; private set; }
public static List<SelectOption> timeequalOpts { get; private set; }
+ public static List<CusOption> limitCusOpts;
public static List<SelectOption> limitOpts { get; private set; }
/*****************鐢婚潰琛ㄧずBean******************/
@@ -54,7 +60,22 @@
@TestVisible private static String accTypeForSort = null;
private static Integer oppLimit = 500;
+ // page
+ public static Integer pagesize { get; set; }
+ public static Integer pageToken { get; set; }
+ public static String sortField { get; set; }
+ // public static String sortOrder { get; set; }
+
+ public static Integer totalcount { get; set; }
+
public LexDealerInquiryModifyStateController() {
+ }
+
+ @AuraEnabled
+ public static Results init(Integer pageSizeLWC,Integer pageTokenLWC) {
+ pageSize = pageSizeLWC;
+ pageToken = pageTokenLWC;
+ Results results = new Results();
oppRecords = new List<OpportunityInfo>();
//dateOpts = new List<SelectOption>();
@@ -63,46 +84,83 @@
//dateOpts.add(new SelectOption('Ban_On_Use_Date__c', '绂佺敤鏃ユ湡'));
//鏁版嵁瀛楁涓嬫媺鍒楄〃
- textOpts = new List<SelectOption>();
- textOpts.add(new SelectOption('', '--鏃�--'));
- textOpts.add(new SelectOption('Agency_Opportunity_No__c', '缁忛攢鍟嗚浠风紪鐮�'));
- textOpts.add(new SelectOption('Agency__r.Name', '缁忛攢鍟�'));
- textOpts.add(new SelectOption('Agency_Hospital__r.Name', '缁忛攢鍟嗗尰闄�'));
- textOpts.add(new SelectOption('Department_Cateogy__c', '绉戝鍒嗙被'));
- textOpts.add(new SelectOption('Change_To_Opportunity_T__c', '璇环鍚嶇О'));
- // textOpts.add(new SelectOption('Name', '璇环鍚嶇О'));
+ // textOpts = new List<SelectOption>();
+ // textOpts.add(new SelectOption('', '--鏃�--'));
+ // textOpts.add(new SelectOption('Agency_Opportunity_No__c', '缁忛攢鍟嗚浠风紪鐮�'));
+ // textOpts.add(new SelectOption('Agency__r.Name', '缁忛攢鍟�'));
+ // textOpts.add(new SelectOption('Agency_Hospital__r.Name', '缁忛攢鍟嗗尰闄�'));
+ // textOpts.add(new SelectOption('Department_Cateogy__c', '绉戝鍒嗙被'));
+ // textOpts.add(new SelectOption('Change_To_Opportunity_T__c', '璇环鍚嶇О'));
+ // // textOpts.add(new SelectOption('Name', '璇环鍚嶇О'));
+ // textOpts.add(new SelectOption('StageName__c', '璇环闃舵'));
+ // textOpts.add(new SelectOption('Oly_Inquiry_Status1__c', '鐘舵��1'));
+ // //绮剧悽绉戞妧 zxk 2021-08-25 start
+ // // textOpts.add(new SelectOption('Oly_Inquiry_Status2__c', '鐘舵��2'));
+ // textOpts.add(new SelectOption('Oly_Inquiry_Stage__c', 'Oly璇环闃舵'));
+ // //绮剧悽绉戞妧 zxk 2021-08-25 end
+ // textOpts.add(new SelectOption('Hospital_City_Master__c', '甯�'));
- textOpts.add(new SelectOption('StageName__c', '璇环闃舵'));
- textOpts.add(new SelectOption('Oly_Inquiry_Status1__c', '鐘舵��1'));
- //绮剧悽绉戞妧 zxk 2021-08-25 start
- // textOpts.add(new SelectOption('Oly_Inquiry_Status2__c', '鐘舵��2'));
- textOpts.add(new SelectOption('Oly_Inquiry_Stage__c', 'Oly璇环闃舵'));
- //绮剧悽绉戞妧 zxk 2021-08-25 end
- textOpts.add(new SelectOption('Hospital_City_Master__c', '甯�'));
-
+ //custom option
+ textCusOpts = new List<CusOption>();
+ textCusOpts.add(new CusOption('', '--鏃�--'));
+ textCusOpts.add(new CusOption('Agency_Opportunity_No__c', '缁忛攢鍟嗚浠风紪鐮�'));
+ textCusOpts.add(new CusOption('Agency__r.Name', '缁忛攢鍟�'));
+ textCusOpts.add(new CusOption('Agency_Hospital__r.Name', '缁忛攢鍟嗗尰闄�'));
+ textCusOpts.add(new CusOption('Department_Cateogy__c', '绉戝鍒嗙被'));
+ textCusOpts.add(new CusOption('Change_To_Opportunity_T__c', '璇环鍚嶇О'));
+ textCusOpts.add(new CusOption('StageName__c', '璇环闃舵'));
+ textCusOpts.add(new CusOption('Oly_Inquiry_Status1__c', '鐘舵��1'));
+ textCusOpts.add(new CusOption('Oly_Inquiry_Stage__c', 'Oly璇环闃舵'));
+ textCusOpts.add(new CusOption('Hospital_City_Master__c', '甯�'));
+
+
// textOpts.add(new SelectOption('Agency_Hospital__r.Hospital__r.Salesdepartment_HP__c', '閿�鍞湰閮�'));
// textOpts.add(new SelectOption('Agency_Hospital__r.Hospital__r.State_Master__r.Name', '鐪�'));
// textOpts.add(new SelectOption('Agency_Hospital__r.Hospital__r.City_Master__r.Name', '甯�'));
//鏃ユ湡瀛楁涓嬫媺鍒楄〃
- timeOpts = new List<SelectOption>();
- timeOpts.add(new SelectOption('', '--鏃�--'));
- timeOpts.add(new SelectOption('Created_Day__c', '鍒涘缓鏃�'));
- timeOpts.add(new SelectOption('Bid_Planned_Date__c', '棰勬祴鎷涙爣鏃�'));
- timeOpts.add(new SelectOption('Forecasted_Bid_Date__c', '棰勬祴涓爣鏃�'));
- timeOpts.add(new SelectOption('Close_Forecasted_Date__c', '棰勬祴涓嶰LY绛剧害鏃�'));
- timeOpts.add(new SelectOption('Lost_Opportunity_Date__c', '澶卞崟鏃ユ湡'));
- timeOpts.add(new SelectOption('Deleted_Reason_Date__c', '鍙栨秷鏃ユ湡'));
+ // timeOpts = new List<SelectOption>();
+ // timeOpts.add(new SelectOption('', '--鏃�--'));
+ // timeOpts.add(new SelectOption('Created_Day__c', '鍒涘缓鏃�'));
+ // timeOpts.add(new SelectOption('Bid_Planned_Date__c', '棰勬祴鎷涙爣鏃�'));
+ // timeOpts.add(new SelectOption('Forecasted_Bid_Date__c', '棰勬祴涓爣鏃�'));
+ // timeOpts.add(new SelectOption('Close_Forecasted_Date__c', '棰勬祴涓嶰LY绛剧害鏃�'));
+ // timeOpts.add(new SelectOption('Lost_Opportunity_Date__c', '澶卞崟鏃ユ湡'));
+ // timeOpts.add(new SelectOption('Deleted_Reason_Date__c', '鍙栨秷鏃ユ湡'));
+
+ timeCusOpts = new List<CusOption>();
+ timeCusOpts.add(new CusOption('', '--鏃�--'));
+ timeCusOpts.add(new CusOption('Created_Day__c', '鍒涘缓鏃�'));
+ timeCusOpts.add(new CusOption('Bid_Planned_Date__c', '棰勬祴鎷涙爣鏃�'));
+ timeCusOpts.add(new CusOption('Forecasted_Bid_Date__c', '棰勬祴涓爣鏃�'));
+ timeCusOpts.add(new CusOption('Close_Forecasted_Date__c', '棰勬祴涓嶰LY绛剧害鏃�'));
+ timeCusOpts.add(new CusOption('Lost_Opportunity_Date__c', '澶卞崟鏃ユ湡'));
+ timeCusOpts.add(new CusOption('Deleted_Reason_Date__c', '鍙栨秷鏃ユ湡'));
+
+
+
//鏁版嵁瀛楁涓棿杩炴帴绗﹀彿
- equalOpts = new List<SelectOption>();
- equalOpts.add(new SelectOption('=', '绛変簬'));
- equalOpts.add(new SelectOption('<>', '涓嶇瓑浜�'));
- equalOpts.add(new SelectOption('<', '<'));
- equalOpts.add(new SelectOption('>', '>'));
- equalOpts.add(new SelectOption('<=', '<='));
- equalOpts.add(new SelectOption('>=', '>='));
- equalOpts.add(new SelectOption('contains', '鍖呭惈'));
- equalOpts.add(new SelectOption('notcontains', '涓嶅寘鍚�'));
- equalOpts.add(new SelectOption('starts with', '璧峰瀛楃'));
+ // equalOpts = new List<SelectOption>();
+ // equalOpts.add(new SelectOption('=', '绛変簬'));
+ // equalOpts.add(new SelectOption('<>', '涓嶇瓑浜�'));
+ // equalOpts.add(new SelectOption('<', '<'));
+ // equalOpts.add(new SelectOption('>', '>'));
+ // equalOpts.add(new SelectOption('<=', '<='));
+ // equalOpts.add(new SelectOption('>=', '>='));
+ // equalOpts.add(new SelectOption('contains', '鍖呭惈'));
+ // equalOpts.add(new SelectOption('notcontains', '涓嶅寘鍚�'));
+ // equalOpts.add(new SelectOption('starts with', '璧峰瀛楃'));
+
+ equalCusOpts = new List<CusOption>();
+ equalCusOpts.add(new CusOption('=', '绛変簬'));
+ equalCusOpts.add(new CusOption('<>', '涓嶇瓑浜�'));
+ equalCusOpts.add(new CusOption('<', '<'));
+ equalCusOpts.add(new CusOption('>', '>'));
+ equalCusOpts.add(new CusOption('<=', '<='));
+ equalCusOpts.add(new CusOption('>=', '>='));
+ equalCusOpts.add(new CusOption('contains', '鍖呭惈'));
+ equalCusOpts.add(new CusOption('notcontains', '涓嶅寘鍚�'));
+ equalCusOpts.add(new CusOption('starts with', '璧峰瀛楃'));
+
//鏃ユ湡瀛楁杩炴帴绗﹀彿
//timeequalOpts = new List<SelectOption>();
//timeequalOpts.add(new SelectOption('=', '绛変簬'));
@@ -112,19 +170,23 @@
//timeequalOpts.add(new SelectOption('<=', '<='));
//timeequalOpts.add(new SelectOption('>=', '>='));
//鏁版嵁鏄剧ず鏉℃暟
- limitOpts = new List<SelectOption>();
- limitOpts.add(new SelectOption('10', '10'));
- limitOpts.add(new SelectOption('20', '20'));
- limitOpts.add(new SelectOption('50', '50'));
- limitOpts.add(new SelectOption('100', '100'));
- limitOpts.add(new SelectOption('200', '200'));
- limitOpts.add(new SelectOption('1000', '鍏ㄩ儴'));
+ // limitOpts = new List<SelectOption>();
+ // limitOpts.add(new SelectOption('10', '10'));
+ // limitOpts.add(new SelectOption('20', '20'));
+ // limitOpts.add(new SelectOption('50', '50'));
+ // limitOpts.add(new SelectOption('100', '100'));
+ // limitOpts.add(new SelectOption('200', '200'));
+ // limitOpts.add(new SelectOption('1000', '鍏ㄩ儴'));
//鏁版嵁鏄剧ず榛樿鏉℃暟
limits = '20';
- }
- @AuraEnabled
- public static Results init() {
- Results results = new Results();
+
+ limitCusOpts = new List<CusOption>();
+ limitCusOpts.add(new CusOption('10', '10'));
+ limitCusOpts.add(new CusOption('20', '20'));
+ limitCusOpts.add(new CusOption('50', '50'));
+ limitCusOpts.add(new CusOption('100', '100'));
+ limitCusOpts.add(new CusOption('200', '200'));
+ limitCusOpts.add(new CusOption('1000', '鍏ㄩ儴'));
try{
PartnerSoapSforceCom.Soap soap = new PartnerSoapSforceCom.Soap();
soap.SessionHeader = new PartnerSoapSforceCom.SessionHeader_element();
@@ -193,13 +255,54 @@
tmpAO = new Agency_Opportunity__c();
tmpBO = new Agency_Opportunity__c();
setLayoutRWInfo();
- searchOppInner();
+ searchOppInner(strColumus,strRtColumus,accSearch,aooSearch,numtext,numtext1,numtext2,sortKey);
+ System.debug('limitCusOpts==>'+limitCusOpts);
+ System.debug('searchOppInner==>'+ searchOppInner(strColumus,strRtColumus,accSearch,aooSearch,numtext,numtext1,numtext2,sortKey));
+ LexDealerInquiryModifyStateController.Results returnList = searchOppInner(strColumus,strRtColumus,accSearch,aooSearch,numtext,numtext1,numtext2,sortKey);
+ System.debug('returnList==>'+ returnList);
+ //鍒嗛〉
+ PaginatedAccounts paginatedAccounts = new PaginatedAccounts();
+ totalCount = oppRecords.size();
+ paginatedAccounts.nextPageToken = (pageToken + pageSize < totalCount) ? pageToken + pageSize : null;
+ paginatedAccounts.recordStart = pageToken + 1;
+ paginatedAccounts.pageNumber = pageToken / pageSize + 1;
+ Integer recordEnd = pageSize * paginatedAccounts.pageNumber;
+ paginatedAccounts.recordEnd = totalCount >= recordEnd ? recordEnd : totalCount;
+ paginatedAccounts.totalRecords = totalCount;
+
+ Integer startIdx;
+ Integer endIdx;
+ List<OpportunityInfo> pageoppRecords = new List<OpportunityInfo>();
+ startIdx = pageToken;
+ endIdx = startIdx + pageSize;
+ if (endIdx > oppRecords.size()) {
+ endIdx = oppRecords.size();
+ }
+ for (Integer i = startIdx; i < endIdx; i++) {
+ pageoppRecords.add(oppRecords.get(i));
+ }
+ //end
+
//鍥炰紶鍙傛暟
results.result = 'Success';
+ results.oppRecords = oppRecords;
+ results.timeCusOpts = timeCusOpts;
+ results.equalCusOpts = equalCusOpts;
+ results.limitCusOpts = limitCusOpts;
+ results.textCusOpts = textCusOpts;
+ results.limits = limits;
+ results.strColumus = strColumus;
+ results.strRtColumus = strRtColumus;
+ results.paginatedAccounts = paginatedAccounts;
+ results.pageoppRecords = pageoppRecords;
+ results.Msg = returnList.Msg;
+
+
+ System.debug('results==>'+results);
}catch (Exception e) {
results.result = 'Fail';
- results.errorMsg = e.getLineNumber()+'---'+e.getMessage();
+ results.Msg = e.getLineNumber()+'---'+e.getMessage();
}
// return null;
@@ -299,7 +402,11 @@
}
}
//鐢ㄤ簬鎷兼帴SOQL璇彞 鏍规嵁涓嶅悓妫�绱㈡潯浠舵嫾鎺ヤ笉鍚孲OQL璇彞銆�
- public static void searchOppInner() {
+ @AuraEnabled
+ public static Results searchOppInner(String strColumus,String strRtColumus,String accSearch,String aooSearch,String numtext,String numtext1,String numtext2,String sortKeyLWC) {
+ Results results = new Results();
+ sortKey = sortKeyLWC;
+
//SOQL:鎷兼帴妫�绱㈡潯浠朵互鍙婄粡閿�鍟嗚浠风殑SOQL璇彞
// List<User> userlist2 = [select id,name from user where Contactid in (select id from Contact)];
// String querySoql = '';
@@ -388,16 +495,56 @@
oppCount = oppRecords.size();
//鏄剧ず鎻愮ず鎿嶄綔淇℃伅
if (String.isBlank(saveType) && String.isBlank(sortKey)) {
- ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '鍙栧緱鏈�杩戠殑 ' + oppCount + ' 鏉℃暟鎹�'));
+ // ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '鍙栧緱鏈�杩戠殑 ' + oppCount + ' 鏉℃暟鎹�'));
+ results.result = 'Success';
+ results.Msg = '鍙栧緱鏈�杩戠殑 ' + oppCount + ' 鏉℃暟鎹�';
+ return results;
} else if (!String.isBlank(sortKey)) {
if (oppCount > oppLimit) {
- ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '鏁版嵁瓒呰繃' + oppLimit + '浠讹紝鍙樉绀哄墠' + oppLimit + '浠�'));
+ // ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '鏁版嵁瓒呰繃' + oppLimit + '浠讹紝鍙樉绀哄墠' + oppLimit + '浠�'));
+ results.result = 'Success';
+ results.Msg = '鏁版嵁瓒呰繃' + oppLimit + '浠讹紝鍙樉绀哄墠' + oppLimit + '浠�';
+
} else {
- ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '鍏辨湁 ' + oppCount + ' 鏉℃暟鎹�'));
+ results.result = 'Success';
+ results.Msg = '鍏辨湁 ' + oppCount + ' 鏉℃暟鎹�';
+
+ // ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '鍏辨湁 ' + oppCount + ' 鏉℃暟鎹�'));
}
} else {
- ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '鍏辨湁 ' + oppCount + ' 鏉℃暟鎹�'));
+ // ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '鍏辨湁 ' + oppCount + ' 鏉℃暟鎹�'));
+ results.result = 'Success';
+ results.Msg = '鍏辨湁 ' + oppCount + ' 鏉℃暟鎹�';
}
+ // //鍒嗛〉
+ // PaginatedAccounts paginatedAccounts = new PaginatedAccounts();
+ // totalCount = oppRecords.size();
+ // paginatedAccounts.nextPageToken = (pageToken + pageSize < totalCount) ? pageToken + pageSize : null;
+ // paginatedAccounts.recordStart = pageToken + 1;
+ // paginatedAccounts.pageNumber = pageToken / pageSize + 1;
+ // Integer recordEnd = pageSize * paginatedAccounts.pageNumber;
+ // paginatedAccounts.recordEnd = totalCount >= recordEnd ? recordEnd : totalCount;
+ // paginatedAccounts.totalRecords = totalCount;
+
+ // Integer startIdx;
+ // Integer endIdx;
+ // List<OpportunityInfo> pageoppRecords = new List<OpportunityInfo>();
+ // startIdx = pageToken;
+ // endIdx = startIdx + pageSize;
+ // if (endIdx > oppRecords.size()) {
+ // endIdx = oppRecords.size();
+ // }
+ // for (Integer i = startIdx; i < endIdx; i++) {
+ // pageoppRecords.add(oppRecords.get(i));
+ // }
+ // //end
+
+
+ //鍥炰紶鍙傛暟
+ results.result = 'Success';
+ results.oppRecords = oppRecords;
+ return results;
+
}
//妫�绱㈡潯浠讹細鏁版嵁瀛楁1锛屾暟鎹瓧娈�2锛屾暟鎹瓧娈�3鍧囨弧瓒宠繘鍏ユ鏂规硶 鍒ゆ柇澶氱鎯呭喌
private static String makeTextSql(String textOpts, String equalOpts, String numtext) {
@@ -553,14 +700,17 @@
}
//妫�绱㈡寜閽細鐐瑰嚮妫�绱㈡寜閽Е鍙戞鏂规硶锛�
- public static PageReference chick() {
- setLayoutRWInfo();
- searchOppInner();
- return null;
- }
+ // public static PageReference chick() {
+ // setLayoutRWInfo();
+ // searchOppInner(strColumus,strRtColumus,accSearch,aooSearch,numtext,numtext1,numtext2,sortKey,pageSizeLWC,pageTokenLWC);
+ // return null;
+ // }
//椤甸潰鍐呭鏈変慨鏀规椂锛岄〉闈㈠垽鏂悗浼犲�肩粰changeFlg浠ュ強changeFlgRt灞炴�э紝鐐瑰嚮淇濆瓨鏃惰皟鐢ㄦ鏂规硶锛岃繘琛屼繚瀛樸��
- public static PageReference save() {
+ @AuraEnabled
+ public static Results save(List<OpportunityInfo> oppRecordsLWC) {
//system.debug('oppRecords[1].opp:' + oppRecords[1].opp +' oppRecords[1].AgcOpp:' + oppRecords[1].AgcOpp );
+ Results results = new Results();
+ oppRecords = oppRecordsLWC;
try {
List<Agency_Opportunity__c> updTarget = new List<Agency_Opportunity__c>();
// List<Opportunity> updOpps = new List<Opportunity>();
@@ -582,12 +732,15 @@
// if (updOpps.size() > 0) {
// update updOpps;
// }
- ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '淇濆瓨瀹屼簡'));
+ // ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '淇濆瓨瀹屼簡'));
+ results.result = 'Success';
+ results.Msg = '淇濆瓨瀹屼簡';
+ return results;
} catch (Exception e) {
//ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '璇风‘瀹氱瀹ゅ垎绫诲拰浜у搧鍖哄垎鐨勫叧绯�'));
}
- if (saveType == '1') {
- searchOppInner();
+ if(saveType == '1') {
+ searchOppInner(strColumus,strRtColumus,accSearch,aooSearch,numtext,numtext1,numtext2,sortKey);
saveType = '';
} else if (saveType == '2') {
sortTable();
@@ -615,8 +768,21 @@
preSortKey = sortKey;
setLayoutRWInfo();
- searchOppInner();
+ searchOppInner(strColumus,strRtColumus,accSearch,aooSearch,numtext,numtext1,numtext2,sortKey);
return null;
+ }
+ //鍒嗛〉Bean
+ public class PaginatedAccounts {
+ @AuraEnabled
+ public Integer nextPageToken;
+ @AuraEnabled
+ public Integer pageNumber { get; set; }
+ @AuraEnabled
+ public Integer totalRecords { get; set; }
+ @AuraEnabled
+ public Integer recordStart { get; set; }
+ @AuraEnabled
+ public Integer recordEnd { get; set; }
}
//鑷畾涔夌被OpportunityInfo锛岀敤浜庡垱寤鸿櫄鎷熷瓧娈碉紝鍚堝苟杈撳嚭銆�
@@ -657,8 +823,44 @@
@AuraEnabled
public String result;
@AuraEnabled
- public String errorMsg;
-
-
+ public String Msg;
+ @AuraEnabled
+ public List<OpportunityInfo> oppRecords;
+ @AuraEnabled
+ public Integer oppCount ;
+ @AuraEnabled
+ public List<CusOption> timeCusOpts;
+ @AuraEnabled
+ public List<CusOption> textCusOpts;
+ @AuraEnabled
+ public List<CusOption> equalCusOpts;
+ @AuraEnabled
+ public List<CusOption> limitCusOpts;
+ @AuraEnabled
+ public String limits;
+ @AuraEnabled
+ public String strColumus;
+ @AuraEnabled
+ public String strRtColumus;
+ @AuraEnabled
+ public List<OpportunityInfo> pageoppRecords;
+ @AuraEnabled
+ public PaginatedAccounts paginatedAccounts;
+ @AuraEnabled
+ public Boolean canEdit;
+ @AuraEnabled
+ public String changeFlg;
}
+ public class CusOption {
+ CusOption(String value,String label) {
+ this.label = label;
+ this.value = value;
+ }
+
+ @AuraEnabled
+ public String label;
+ @AuraEnabled
+ public String value;
+ }
+
}
\ No newline at end of file
diff --git a/force-app/main/default/classes/LexInventoryController.cls b/force-app/main/default/classes/LexInventoryController.cls
index 7a07d2a..b5ae8ef 100644
--- a/force-app/main/default/classes/LexInventoryController.cls
+++ b/force-app/main/default/classes/LexInventoryController.cls
@@ -20,7 +20,7 @@
public static Boolean done { get; set; }
/*****************鐢婚潰琛ㄧずBean******************/
//椤甸潰涓绘暟鎹樉绀虹敤
- private static List<ConsumableorderdetailsInfo> consumableorderdetailsRecords;
+ public static List<ConsumableorderdetailsInfo> consumableorderdetailsRecords { get; set; }
//鐩樼偣鍒扮殑浜у搧
public static List<Consumable_order_details2__c> reSet = new List<Consumable_order_details2__c>();
public static List<Consumable_order_details2__c> showcod2nid = new List<Consumable_order_details2__c>();
@@ -183,6 +183,7 @@
AND Product_Type__c like : sqlagencyProType
AND Arrive_Owner_Work_Location__c =: userWorkLocation
AND Dealer_Info_text__c = :accountName];
+ System.debug('ProductCount_Res==>'+ProductCount_Res);
//ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR,'ProductCount_Res ' + ProductCount_Res.size()));
for(Integer i = 0 ; i< ProductCount_Res.size();i++){
//鐒跺悗寰幆CountDel鍋欱ox鍜宲iece2涓猰ap
@@ -371,6 +372,7 @@
AND Arrive_Owner_Work_Location__c =: userWorkLocation
AND Dealer_Info_text__c = :accountName ];
reFindProduct.clear();
+ System.debug('ProductCount_Res==>'+ProductCount_Res);
Map<String,ConsumableorderdetailsInfo> barCodeListAdjustMap = new Map<String,ConsumableorderdetailsInfo>();
//barCodeListLoseMap.clear();
Set<String> carCodeListLose = new Set<String>();
@@ -421,6 +423,7 @@
AND Bar_Code__c in :carCodeListLose
AND Dealer_Info_text__c = :accountName
ORDER BY Name ];
+ System.debug('reSet1==>'+reSet1);
Map<String,Consumable_order_details2__c> needreturnMap = new Map<String,Consumable_order_details2__c>();
for(Consumable_order_details2__c cod2 :reSet1){
needreturnMap.put(cod2.Bar_Code__c,cod2);
@@ -560,17 +563,18 @@
//end
data.put('codPageRecords',JSON.serialize(codPageRecords));
data.put('consumableorderdetailsRecords',JSON.serialize(consumableorderdetailsRecords));
- data.put('consumableorderdetailsRecords',JSON.serialize(consumableorderdetailsRecords));
+ data.put('consumableorderdetailsRecordsview',JSON.serialize(consumableorderdetailsRecordsview));
data.put('pandiandetailsMap',pandiandetailsMap);
System.debug('iSinventory===>'+iSinventory);
System.debug('codPageRecords===>'+codPageRecords);
data.put('iSinventory',JSON.serialize(iSinventory));
- data.put('reSet1',JSON.serialize(reSet1));
+ data.put('reSet1',reSet1);
+ System.debug('reSet1===>'+reSet1);
res.code = 200;
res.status = 'Success1';
- // res.msg = 'barcode涓虹┖';
+
return res;
- // return;
+
}
diff --git a/force-app/main/default/classes/LexInventoryListController.cls b/force-app/main/default/classes/LexInventoryListController.cls
index 76ee435..a4e9395 100644
--- a/force-app/main/default/classes/LexInventoryListController.cls
+++ b/force-app/main/default/classes/LexInventoryListController.cls
@@ -33,6 +33,7 @@
consumableorderdetailsRecords = new List<ConsumableorderdetailsInfo>();
List<Consumable_order__c> qs = New List<Consumable_order__c>();
qs = [select Name,Inventory_date__c,Order_date__c From Consumable_order__c Where Id =:ESetId];
+ System.debug('qs===>'+qs);
if (qs.size()>0){
coc = qs[0];
}
diff --git a/force-app/main/default/classes/LexInventoryViewController.cls b/force-app/main/default/classes/LexInventoryViewController.cls
index de38e52..2dd5882 100644
--- a/force-app/main/default/classes/LexInventoryViewController.cls
+++ b/force-app/main/default/classes/LexInventoryViewController.cls
@@ -49,7 +49,7 @@
public static String category1 { get; set; }
public static Boolean editAble { get; set; }
// 缁忛攢鍟嗗湪搴撲骇鍝両D
- public static List<String> orderDetZaikuList = new List<String>();
+ public static List<String> orderDetZaikuList{set;get;}
// 浜у搧 ID
public static String ESetId { get; set; }
public static String idCheck { get; set; }
@@ -69,6 +69,7 @@
// add by rentx 2021-3-10
public LexInventoryViewController() {
+ orderDetZaikuList = new List<String>();
consumableorderdetailsRecords = new List<ConsumableorderdetailsInfo>();
consumableorderdetailsRecordsview = new List<List<ConsumableorderdetailsInfo>>();
editAble = false;
@@ -83,12 +84,6 @@
// pagesize = Integer.valueof(system.label.orderdetLimitsize);
// currentpage = 0;
}
-
- @AuraEnabled
- public static ResponseBodyLWC init2(Integer pageSizeLWC, Integer pageTokenLWC, String sortFieldLWC, String sortOrderLWC) {
- return new ResponseBodyLWC('Error', 500, '娴嬭瘯 init2', '');
- }
-
@AuraEnabled
public static ResponseBodyLWC init(Integer pageSizeLWC, Integer pageTokenLWC, String sortFieldLWC, String sortOrderLWC) {
pageSize = pageSizeLWC;
@@ -153,7 +148,7 @@
for (AggregateResult zaikuId : orderDetZaiku) {
orderDetZaikuList.add(String.valueOf(zaikuId.get('Consumable_Product__c')));
}
- System.debug('orderDetZaikuList = ' + orderDetZaikuList);
+ System.debug('orderDetZaikuListinit = ' + orderDetZaikuList);
List<Consumable_order_details2__c> CountDel = [
SELECT
Id,
@@ -179,9 +174,7 @@
AND Dealer_Info_text__c = :accountName
AND Arrive_Owner_Work_Location__c = :userWorkLocation
];
- System.debug('MidMap = ' + MidMap);
System.debug('CountDel111 = ' + CountDel);
- System.debug('orderDetZaikuList = ' + orderDetZaikuList);
List<Product2__c> product2Selected = [
SELECT
Id,
@@ -537,10 +530,12 @@
String sortOrderLWC
) {
try {
+ System.debug('orderDetZaikuListLWC妫�绱�===>'+orderDetZaikuListLWC);
pageSize = pageSizeLWC;
pageToken = pageTokenLWC;
sortField = sortFieldLWC;
sortOrder = sortOrderLWC;
+ orderDetZaikuList = new List<String>();
orderDetZaikuList = orderDetZaikuListLWC;
sqlagencyProType = '%' + agencyProType + '%';
@@ -939,6 +934,7 @@
//妫�绱ql鏂囧仛鎴�
private static String makeSoql(String CateName, String CateCode, String Category3, String Category4, String Category5) {
+ System.debug('orderDetZaikuList = ' + orderDetZaikuList);
String sqlTail = '(\'';
for (Integer i = 0; i < orderDetZaikuList.size(); i++) {
if (i < orderDetZaikuList.size() - 1) {
@@ -1054,6 +1050,7 @@
}
// Data Bean
+ @TestVisible
class ConsumableorderdetailsInfo implements Comparable {
@AuraEnabled
public Consumable_order_details2__c esd { get; set; }
@@ -1086,6 +1083,7 @@
@AuraEnabled
public Boolean hospitalSpecialOffer { get; set; }
+ @TestVisible
public ConsumableorderdetailsInfo(Product2__c e) {
esd = new Consumable_order_details2__c();
Prod = e;
diff --git a/force-app/main/default/classes/LexOverdueStockController.cls b/force-app/main/default/classes/LexOverdueStockController.cls
index adbaaa7..05fdaf9 100644
--- a/force-app/main/default/classes/LexOverdueStockController.cls
+++ b/force-app/main/default/classes/LexOverdueStockController.cls
@@ -147,11 +147,12 @@
}
// return;
System.debug('overduePageRecords = ' + overduePageRecords);
+ System.debug('overdueList = ' + overdueList);
data.put('overduePageRecords',JSON.serialize(overduePageRecords));
data.put('codPageRecords',JSON.serialize(codPageRecords));
data.put('iSinventory',iSinventory);
data.put('overdueList',overdueList);
- res.status = 'Success';
+ res.status = 'Success1';
res.code = 200;
// res.msg = '璇疯緭鍏arCode鍙�';
System.debug('res = ' + res);
diff --git a/force-app/main/default/classes/LexProductLimitEditController.cls b/force-app/main/default/classes/LexProductLimitEditController.cls
index d63fa43..3a8ca5b 100644
--- a/force-app/main/default/classes/LexProductLimitEditController.cls
+++ b/force-app/main/default/classes/LexProductLimitEditController.cls
@@ -23,6 +23,8 @@
}
@AuraEnabled
public static ResponseBodyLWC init(String accountid,string userPro_Type) {
+ System.debug('userPro_Type==>'+userPro_Type);
+ System.debug('accountid==>'+accountid);
ResponseBodyLWC res = new ResponseBodyLWC();
Map<String,object> data = new Map<String,object>();
res.entity = data;
diff --git a/force-app/main/default/classes/LookupSearchResult.cls b/force-app/main/default/classes/LookupSearchResult.cls
index 3fb0548..0affd99 100644
--- a/force-app/main/default/classes/LookupSearchResult.cls
+++ b/force-app/main/default/classes/LookupSearchResult.cls
@@ -55,6 +55,7 @@
/**
* Allow to sort search results based on title
*/
+ @TestVisible
public Integer compareTo(Object compareTo) {
LookupSearchResult other = (LookupSearchResult) compareTo;
if (this.getTitle() == null) {
diff --git a/force-app/main/default/labels/CustomLabels.labels-meta.xml b/force-app/main/default/labels/CustomLabels.labels-meta.xml
index de50400..f4ea642 100644
--- a/force-app/main/default/labels/CustomLabels.labels-meta.xml
+++ b/force-app/main/default/labels/CustomLabels.labels-meta.xml
@@ -1,2118 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomLabels xmlns="http://soap.sforce.com/2006/04/metadata">
<labels>
- <fullName>AL_MobileApp_Title</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>AL_MobileApp_Title</shortDescription>
- <value>Photo Uploader</value>
- </labels>
- <labels>
- <fullName>Accompanying_Report</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍚岃鍫卞憡</shortDescription>
- <value>鍚岃鍫卞憡</value>
- </labels>
- <labels>
- <fullName>AccountOwner_Tender</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴戠殑寰呭簲鏍囩殑鎷涙姇鏍囬」鐩�</shortDescription>
- <value>/a4L?fcf=00B10000006SGV7</value>
- </labels>
- <labels>
- <fullName>Account_Asset</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧涓績</shortDescription>
- <value>9999998</value>
- </labels>
- <labels>
- <fullName>Account_Asset_Client</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧淇濇湁璁惧瀹㈡埛(寰呮敹璐�)</shortDescription>
- <value>9999964</value>
- </labels>
- <labels>
- <fullName>Account_Asset_Client_Done</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>澶囧搧(宸叉敹璐�)</shortDescription>
- <value>9999963</value>
- </labels>
- <labels>
- <fullName>Account_Asset_Department</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧淇濇湁璁惧鎴樼暐绉戝</shortDescription>
- <value>7271439</value>
- </labels>
- <labels>
- <fullName>Account_Asset_FJZ</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Account_Asset_FJZ</shortDescription>
- <value>9999960</value>
- </labels>
- <labels>
- <fullName>Account_Asset_Hospatal</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧淇濇湁璁惧鍖婚櫌</shortDescription>
- <value>9999999</value>
- </labels>
- <labels>
- <fullName>Account_Exc</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璋锋眹鐜�</shortDescription>
- <value>6.8</value>
- </labels>
- <labels>
- <fullName>Account_Rate</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璋风◣鐜�</shortDescription>
- <value>1.13</value>
- </labels>
- <labels>
- <fullName>Account_Type_Name</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瀹㈡埛绫诲瀷鍚�-璇环瑙﹀彂鍣ㄧ敤</shortDescription>
- <value>AgencyContract</value>
- </labels>
- <labels>
- <fullName>Account_Type_Name_Agency</fullName>
- <categories>璨╁2搴�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瀹㈡埛绫诲瀷鍚�-璇环瑙﹀彂鍣ㄧ敤</shortDescription>
- <value>Agency</value>
- </labels>
- <labels>
- <fullName>Account_target_buffer_day</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>4鏈堜唤鍙互缂栬緫鐩爣瀹㈡埛澶╂暟</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>Accounting_Comment</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绲岀悊銈炽儭銉炽儓</shortDescription>
- <value>绲岀悊銈炽儭銉炽儓</value>
- </labels>
- <labels>
- <fullName>Accounting_Confirmation</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绲岀悊纰鸿獚</shortDescription>
- <value>绲岀悊纰鸿獚</value>
- </labels>
- <labels>
- <fullName>Activities</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>娲诲嫊鍐呭</shortDescription>
- <value>娲诲嫊鍐呭</value>
- </labels>
- <labels>
- <fullName>Activities_Schedule</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>娲诲嫊浜堝畾</shortDescription>
- <value>娲诲嫊浜堝畾</value>
- </labels>
- <labels>
- <fullName>Add_Information</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>杩藉姞鎯呭牨</shortDescription>
- <value>杩藉姞鎯呭牨</value>
- </labels>
- <labels>
- <fullName>Add_Line</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>琛岃拷鍔�</shortDescription>
- <value>琛岃拷鍔�</value>
- </labels>
- <labels>
- <fullName>Add_List</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>杩藉姞銉偣銉�</shortDescription>
- <value>杩藉姞銉偣銉�</value>
- </labels>
- <labels>
- <fullName>Add_Product</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬銈傘倞鍟嗗搧閬告姙鐢婚潰銇拷鍔犮儨銈裤兂</shortDescription>
- <value>杩藉姞</value>
- </labels>
- <labels>
- <fullName>AdjustAmount</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璋冩暣閲戦</shortDescription>
- <value>璋冩暣閲戦</value>
- </labels>
- <labels>
- <fullName>Agency</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璨╁2搴�</shortDescription>
- <value>01210000000Qem1AAC</value>
- </labels>
- <labels>
- <fullName>AgencyContact</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁忛攢鍟嗚仈绯讳汉</shortDescription>
- <value>01210000000gT1XAAU</value>
- </labels>
- <labels>
- <fullName>AgencyContract</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>濂戠磩</shortDescription>
- <value>01210000000QjCN</value>
- </labels>
- <labels>
- <fullName>AgencyPostForBsc</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍔炰簨澶勯椤垫潈闄恑d--椤甸潰鐢ㄨ亴浣�</shortDescription>
- <value>缁熸嫭鎬荤洃;鎬荤洃;鍓�荤洃;閮ㄩ暱;鍓儴闀�;缁忕悊;鍓粡鐞�</value>
- </labels>
- <labels>
- <fullName>AgencyPrice</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁忛攢鍟嗗崟浠�</shortDescription>
- <value>缁忛攢鍟嗗崟浠�</value>
- </labels>
- <labels>
- <fullName>AgencyProfileId</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍔炰簨澶勭洏鐐规潈闄恑d</shortDescription>
- <value>00e10000000xnpbAAA,00e10000000xnpRAAQ,00e10000000xyKBAAY,00e10000000a7NYAAY,00e10000000xyK6AAI</value>
- </labels>
- <labels>
- <fullName>AgencyProfileId2</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍔炰簨澶勭洏鐐逛汉鏉冮檺id2</shortDescription>
- <value>00e10000000xyK6AAI,00e10000000hkasAAA,00e10000000xnpHAAQ</value>
- </labels>
- <labels>
- <fullName>AgencyProfileIdForBsc</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍔炰簨澶勯椤垫潈闄恑d--椤甸潰鐢�</shortDescription>
- <value>00e10000000xnp2AAA,00e10000000xzQ0AAI,00e10000000xnp7AAA,00e10000000xnpCAAQ,00e10000000xnpHAAQ,00e10000000hkasAAA,00e10000000xzQAAAY,00e10000000xnpMAAQ,00e10000000xnpRAAQ,00e10000000xyK6AAI,00e10000000xnpWAAQ,00e10000000xnpbAAA,00e10000000xyKBAAY</value>
- </labels>
- <labels>
- <fullName>AgencySum_Total</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁忛攢鍟嗗皬璁�</shortDescription>
- <value>缁忛攢鍟嗗皬璁�</value>
- </labels>
- <labels>
- <fullName>AgencyVisit</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_缁忛攢鍟嗘嫓璁�</shortDescription>
- <value>01210000000cWfr</value>
- </labels>
- <labels>
- <fullName>Agency_Opportunity</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><娼滃湪瀹㈡埛>缁忛攢鍟嗚浠�</shortDescription>
- <value>00N10000009HKSP</value>
- </labels>
- <labels>
- <fullName>Agent1_and_Agent2_were_Deleted</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绗竴璨╁2搴椼�佺浜岃博澹插簵銇墛闄ゃ仌銈屻仸銇勩伨銇欍伄銇с�佹寚瀹氬嚭鏉ャ伨銇涖倱銆�</shortDescription>
- <value>绗竴璨╁2搴椼�佺浜岃博澹插簵銇墛闄ゃ仌銈屻仸銇勩伨銇欍伄銇с�佹寚瀹氬嚭鏉ャ伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Agent1_was_Deleted</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绗竴璨╁2搴椼伅鍓婇櫎銇曘倢銇︺亜銇俱仚銇仹銆佹寚瀹氬嚭鏉ャ伨銇涖倱銆�</shortDescription>
- <value>绗竴璨╁2搴椼伅鍓婇櫎銇曘倢銇︺亜銇俱仚銇仹銆佹寚瀹氬嚭鏉ャ伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Agent2_was_Deleted</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绗簩璨╁2搴椼伅鍓婇櫎銇曘倢銇︺亜銇俱仚銇仹銆佹寚瀹氬嚭鏉ャ伨銇涖倱銆�</shortDescription>
- <value>绗簩璨╁2搴椼伅鍓婇櫎銇曘倢銇︺亜銇俱仚銇仹銆佹寚瀹氬嚭鏉ャ伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>AllConfirmationofAwardTask_Tender</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍏ㄩ儴涓爣缁撴灉纭浠诲姟</shortDescription>
- <value>/a3V?fcf=00B10000006iHxF</value>
- </labels>
- <labels>
- <fullName>AllLostTask_Tender</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍏ㄩ儴澶卞崟浠诲姟鎶ュ憡</shortDescription>
- <value>/a3V?fcf=00B10000006iI9p</value>
- </labels>
- <labels>
- <fullName>Amount</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閲戦</shortDescription>
- <value>閲戦</value>
- </labels>
- <labels>
- <fullName>AnalysisDocValidDay</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐜扮姸鍒嗘瀽鏂囨。鏈夋晥鏈�</shortDescription>
- <value>7</value>
- </labels>
- <labels>
- <fullName>AnalysisRequestValidH</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐜扮姸鍒嗘瀽浣滄垚璇锋眰鏈夋晥鏈�</shortDescription>
- <value>1</value>
- </labels>
- <labels>
- <fullName>And</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>And</shortDescription>
- <value>骞�</value>
- </labels>
- <labels>
- <fullName>Approval</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎵胯獚</shortDescription>
- <value>鎵胯獚</value>
- </labels>
- <labels>
- <fullName>Approved_Date</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎵胯獚鏃�</shortDescription>
- <value>鎵胯獚鏃�</value>
- </labels>
- <labels>
- <fullName>AssetChangeQuantityReasonError</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>璇峰~鍐欐暟閲忓彉鏇寸悊鐢�</shortDescription>
- <value>璇峰~鍐欐暟閲忓彉鏇寸悊鐢�</value>
- </labels>
- <labels>
- <fullName>AssetCountErrorMailAddress</fullName>
- <categories>asset</categories>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>淇濇湁璁惧鏁伴噺寮傚父閭欢</shortDescription>
- <value>sfdc_lvxueyan@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>AssetHistory_Columns</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇濇湁璁惧瀛楁鍘嗗彶</shortDescription>
- <value>AccountId,Hospital_Manage_Number__c,Status,Installation_Site__c,Name,Product2Id,Remark__c</value>
- </labels>
- <labels>
- <fullName>AssetImageFolder</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>淇濇湁璁惧鍥綺鏂囦欢澶�</shortDescription>
- <value>00l10000000esNR</value>
- </labels>
- <labels>
- <fullName>AssetLegalAccount</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>淇濇湁璁惧鍏变韩瀹㈡埛</shortDescription>
- <value>澶囧搧鍏变韩_娴欐睙_鍗庝笢钀ヤ笟鏈儴,澶囧搧鍏变韩_榛戦緳姹焈涓滃寳钀ヤ笟鏈儴,澶囧搧鍏变韩_婀栧寳_鍗庡崡钀ヤ笟鏈儴,澶囧搧鍏变韩_璐靛窞_瑗垮崡钀ヤ笟鏈儴,澶囧搧鍏变韩_浜戝崡_瑗垮崡钀ヤ笟鏈儴,澶囧搧鍏变韩_閲嶅簡_瑗垮崡钀ヤ笟鏈儴,澶囧搧鍏变韩_瀹佸_瑗垮寳钀ヤ笟鏈儴,澶囧搧鍏变韩_娌冲崡_瑗垮寳钀ヤ笟鏈儴,澶囧搧鍏变韩_鏂扮枂_瑗垮寳钀ヤ笟鏈儴,澶囧搧鍏变韩_灞变笢_鍗庡寳钀ヤ笟鏈儴,澶囧搧鍏变韩_娌冲寳_鍗庡寳钀ヤ笟鏈儴,澶囧搧鍏变韩_澶╂触_鍗庡寳钀ヤ笟鏈儴,澶囧搧鍏变韩_瀹夊窘_鍗庝笢钀ヤ笟鏈儴,澶囧搧鍏变韩_绂忓缓_鍗庝笢钀ヤ笟鏈儴,澶囧搧鍏变韩_姹熻タ_鍗庝笢钀ヤ笟鏈儴,澶囧搧鍏变韩_姹熻嫃_鍗庝笢钀ヤ笟鏈儴,澶囧搧鍏变韩_鍥涘窛/瑗胯棌_瑗垮崡钀ヤ笟鏈儴,澶囧搧鍏变韩_娌堥槼_涓滃寳钀ヤ笟鏈儴,澶囧搧鍏变韩_骞夸笢_鍗庡崡钀ヤ笟鏈儴,澶囧搧鍏变韩_灞辫タ_瑗垮寳钀ヤ笟鏈儴,澶囧搧鍏变韩_婀栧崡_鍗庡崡钀ヤ笟鏈儴,澶囧搧鍏变韩_鍚夋灄_涓滃寳钀ヤ笟鏈儴,澶囧搧鍏变韩_澶ц繛_涓滃寳钀ヤ笟鏈儴,澶囧搧鍏变韩_涓婃捣_鍗庝笢钀ヤ笟鏈儴,澶囧搧鍏变韩_鐢樿們_瑗垮寳钀ヤ笟鏈儴,澶囧搧鍏变韩_鍖椾含_鍗庡寳钀ヤ笟鏈儴,澶囧搧鍏变韩_闈掓捣_瑗垮寳钀ヤ笟鏈儴,澶囧搧鍏变韩_鍐呰挋鍙鍗庡寳钀ヤ笟鏈儴,澶囧搧鍏变韩_闄曡タ_瑗垮寳钀ヤ笟鏈儴,澶囧搧鍏变韩_骞胯タ_鍗庡崡钀ヤ笟鏈儴,澶囧搧鍏变韩_娣卞湷_鍗庡崡钀ヤ笟鏈儴,澶囧搧鍏变韩_闈掑矝_鍗庡寳钀ヤ笟鏈儴</value>
- </labels>
- <labels>
- <fullName>AssetMaintainManualBatchSize</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>AssetMaintainManualBatchSize</shortDescription>
- <value>50</value>
- </labels>
- <labels>
- <fullName>Asset_Maxcount</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐐规鎶ュ憡涔︽渶澶ф樉绀烘暟閲�</shortDescription>
- <value>500</value>
- </labels>
- <labels>
- <fullName>Asset_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑁藉搧鍚嶇О</shortDescription>
- <value>瑁藉搧鍚嶇О</value>
- </labels>
- <labels>
- <fullName>Asset_No</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑁藉搧鍨嬬暘</shortDescription>
- <value>瑁藉搧鍨嬬暘</value>
- </labels>
- <labels>
- <fullName>Asset_RecordType</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>澶囧搧璁板綍绫诲瀷</shortDescription>
- <value>01210000000kOPRAA2</value>
- </labels>
- <labels>
- <fullName>Assistant</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏀彺</shortDescription>
- <value>鏀彺</value>
- </labels>
- <labels>
- <fullName>Attribute</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>灞炴��</shortDescription>
- <value>灞炴��</value>
- </labels>
- <labels>
- <fullName>BCCCategory</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>BSS銈儐銈淬儶銉肩涓�闅庡堡</shortDescription>
- <value>BSS銈儐銈淬儶銉肩涓�闅庡堡</value>
- </labels>
- <labels>
- <fullName>Back</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎴汇仚</shortDescription>
- <value>鎴汇仚</value>
- </labels>
- <labels>
- <fullName>BackgroundColor</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>blue</shortDescription>
- <value>#2E64FE</value>
- </labels>
- <labels>
- <fullName>Basic_Information</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍩烘湰鎯呭牨</shortDescription>
- <value>鍩烘湰鎯呭牨</value>
- </labels>
- <labels>
- <fullName>Batch_Error_Send_To_CC</fullName>
- <categories>娌℃湁CC鐨勬椂鍊欏~鍐檔ull锛屾湁鐨勮瘽濉啓UserId锛屽鏁扮殑璇濊鐢ㄩ�楀彿(,)闅斿紑</categories>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Batch_Error_Send_To_CC</shortDescription>
- <value>00510000000gHlO,00510000005sEEM</value>
- </labels>
- <labels>
- <fullName>Batch_User_Id</fullName>
- <categories>Batch鎵цUserId</categories>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Batch_User_Id</shortDescription>
- <value>00510000000fSYI</value>
- </labels>
- <labels>
- <fullName>BeijingEmail</fullName>
- <categories>EmailText</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>BeijingEmail</shortDescription>
- <value>ocm_asset@olympus.com.cn.partial</value>
- </labels>
- <labels>
- <fullName>BiddingProjectRecordTypeID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎷涙爣椤圭洰璁板綍绫诲瀷ID</shortDescription>
- <value>01210000000VLUI</value>
- </labels>
- <labels>
- <fullName>Bie_Sheng_Ben_Cun_Bie_Yong_Tu_Label</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>琛ㄧず鍒渷銆佸埆鏈儴銆佸埆瀛樻斁鍦板拰鍒垎绫荤殑搴撳瓨</shortDescription>
- <value>鍒渷銆佸埆鏈儴銆佸埆瀛樻斁鍦板拰鍒垎绫荤殑搴撳瓨</value>
- </labels>
- <labels>
- <fullName>Business_Trip</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍑哄嫉</shortDescription>
- <value>鍑哄嫉</value>
- </labels>
- <labels>
- <fullName>ByPassTrigger</fullName>
- <categories>System Configure 0051000000DZLePAAX</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ByPassTrigger</shortDescription>
- <value>0051000000DZLePAAX</value>
- </labels>
- <labels>
- <fullName>CN_MEBG_BusinessSupport</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>钀ヤ笟鏀彺璇鹃偖浠剁兢缁�</shortDescription>
- <value>MEBG_BusinessSupport@olympus.partner.onmschina.cn</value>
- </labels>
- <labels>
- <fullName>Calculate</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷堢畻锛�</shortDescription>
- <value>瑷堢畻锛�</value>
- </labels>
- <labels>
- <fullName>Campaign_Mail_CC_Label1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>TTC銆丯TC銆佹湇鍔″尰宸ュ浼氥�佹湇鍔℃姢鐞嗗浼氣啋鐜嬭寳鑺�</shortDescription>
- <value>mingfang_wang@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>Campaign_Mail_CC_Label2</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁忛攢鍟嗘湇鍔″煿璁啋琚佷繆鐢�</shortDescription>
- <value>junsheng_yuan@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>Cancel</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈儯銉炽偦銉�</shortDescription>
- <value>銈儯銉炽偦銉�</value>
- </labels>
- <labels>
- <fullName>ChangeAbandoned_InventoryHistory</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寰呭簾寮冩暟(涓㈠け/鐩樹簭)淇敼灞ュ巻</shortDescription>
- <value>寰呭簾寮冩暟(涓㈠け/鐩樹簭) {1} 鍙樻洿鐞嗙敱:{2}</value>
- </labels>
- <labels>
- <fullName>ChangeQuantityHistory</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>澶囧搧鏁伴噺鍙樻洿灞ュ巻</shortDescription>
- <value>澶囧搧鏁伴噺 {1} 鍙樻洿鐞嗙敱:{2}</value>
- </labels>
- <labels>
- <fullName>Check</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銉併偋銉冦偗</shortDescription>
- <value>銉併偋銉冦偗</value>
- </labels>
- <labels>
- <fullName>Check_Your_Clipboard</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈儶銉冦儣銉溿兗銉夈伀銈炽償銉笺仐銇俱仐銇熴�俓nExcel銇布銈婁粯銇戙倝銈屻伨銇欍��</shortDescription>
- <value>銈儶銉冦儣銉溿兗銉夈伀銈炽償銉笺仐銇俱仐銇熴�俓nExcel銇布銈婁粯銇戙倝銈屻伨銇欍��</value>
- </labels>
- <labels>
- <fullName>City_Status_Report</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>甯傛硜鍫卞憡</shortDescription>
- <value>甯傛硜鍫卞憡</value>
- </labels>
- <labels>
- <fullName>Claim_Input</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈儸銉笺儬鍏ュ姏</shortDescription>
- <value>銈儸銉笺儬鍏ュ姏</value>
- </labels>
- <labels>
- <fullName>Claims_Report</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈儸銉笺儬鍫卞憡</shortDescription>
- <value>銈儸銉笺儬鍫卞憡</value>
- </labels>
- <labels>
- <fullName>Classification_Visited</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鍏堝尯鍒�</shortDescription>
- <value>瑷晱鍏堝尯鍒�</value>
- </labels>
- <labels>
- <fullName>Clear</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>娑堝幓</shortDescription>
- <value>娑堝幓</value>
- </labels>
- <labels>
- <fullName>ClearConfirmationofAwardTypes</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>搴熸爣娴佹爣</shortDescription>
- <value>3-1锛氬簾鏍囧叕鍛�,3-2锛氭祦鏍囧叕鍛�</value>
- </labels>
- <labels>
- <fullName>Click_to_Close_Sidebar</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Click to Close Sidebar</shortDescription>
- <value>鍗曞嚮鍏抽棴渚ф爮</value>
- </labels>
- <labels>
- <fullName>Click_to_Open_Sidebar</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Click to Open Sidebar</shortDescription>
- <value>鍗曞嚮鎵撳紑渚ф爮</value>
- </labels>
- <labels>
- <fullName>Close</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>闁夈仒銈�</shortDescription>
- <value>闁夈仒銈�</value>
- </labels>
- <labels>
- <fullName>Comment</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈炽儭銉炽儓</shortDescription>
- <value>銈炽儭銉炽儓</value>
- </labels>
- <labels>
- <fullName>Comment_History</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Comment History</shortDescription>
- <value>杩囧幓鐣欒█</value>
- </labels>
- <labels>
- <fullName>Comments_Director</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閮ㄩ暦銈炽儭銉炽儓</shortDescription>
- <value>閮ㄩ暦銈炽儭銉炽儓</value>
- </labels>
- <labels>
- <fullName>Companion</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍚岃浜�</shortDescription>
- <value>鍚岃浜�</value>
- </labels>
- <labels>
- <fullName>Competitor</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绔跺悎浠栫ぞ</shortDescription>
- <value>绔跺悎浠栫ぞ</value>
- </labels>
- <labels>
- <fullName>Competitor_Information</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绔跺悎浠栫ぞ鎯呭牨</shortDescription>
- <value>绔跺悎浠栫ぞ鎯呭牨</value>
- </labels>
- <labels>
- <fullName>Confirm_SoakupHPDeptTeam</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>椤у銉併兗銉犮倰鐥呴櫌銇ㄨê鐧傜銇弽鏄�</shortDescription>
- <value>椤у銉併兗銉犮倰鐥呴櫌銇ㄨê鐧傜銇弽鏄犮仐銇俱仚銇嬶紵</value>
- </labels>
- <labels>
- <fullName>ConsumApplyRemind</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鑰楁潗鐢宠鏃ユ湡鎻愰啋</shortDescription>
- <value>1銆佸垱寤虹敵璇峰崟閿佸畾搴撳瓨鍚庯紝璇蜂簬2涓伐浣滄棩鍐呮彁浜ゅ鎵癸紝鍚﹀垯绯荤粺鑷姩閲婃斁搴撳瓨銆�
-2銆佽纭繚鎮ㄦ彁浜ょ殑鐢宠鍗曞湪"甯屾湜鍒拌揣鏃�-7涓伐浣滄棩鈥濆墠瀹屾垚瀹℃壒锛屽惁鍒欑敵璇峰崟鑷姩鍙栨秷銆�
-3銆佽鎻愪氦22涓伐浣滄棩浠ュ唴浣跨敤鐨勮�楁潗鐢宠鍗曘��</value>
- </labels>
- <labels>
- <fullName>ConsumFixtureSetSelect_applyJs_Description</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鑰楁潗鐢宠鐢婚潰閫傜敤鎸夐挳璇存槑</shortDescription>
- <value>鐐瑰嚮閫傜敤鎸夐挳浼氶噴鏀惧簱瀛�</value>
- </labels>
- <labels>
- <fullName>Consum_Request_Help_Link</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鑰楁潗鐢宠甯姪Link</shortDescription>
- <value>https://ocsm--c.ap0.content.force.com/servlet/servlet.FileDownload?file=0151000000Ae1Ba</value>
- </labels>
- <labels>
- <fullName>ConsumableInvoice_report</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娑堣�楀搧鍙戠エ鎶ヨ〃</shortDescription>
- <value>00O100000058VzA</value>
- </labels>
- <labels>
- <fullName>ConsumableOrderTrigger</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娑堣�楀搧璁㈠崟Trigger</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>ConsumableOut_report</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娑堣�楀搧鍑哄簱鍙戠エ</shortDescription>
- <value>00O100000058VzB</value>
- </labels>
- <labels>
- <fullName>Consumable_Contract</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁忛攢鍟嗗悎鍚�</shortDescription>
- <value>01210000000QjCNAA0</value>
- </labels>
- <labels>
- <fullName>Contact_Division_Label</fullName>
- <categories>PIPL</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Contact Division Label</shortDescription>
- <value>鑱屽姟</value>
- </labels>
- <labels>
- <fullName>Contact_Phone_Label</fullName>
- <categories>PIPL</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Contact Phone Label</shortDescription>
- <value>鐢佃瘽</value>
- </labels>
- <labels>
- <fullName>Contact_Price</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐥呴櫌銇绱勯噾椤�</shortDescription>
- <value>鐥呴櫌銇绱勯噾椤�</value>
- </labels>
- <labels>
- <fullName>Contract</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>濂戠害</shortDescription>
- <value>01210000000QjCN</value>
- </labels>
- <labels>
- <fullName>ContractAlert</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓娑堣垂鐜囬璀�</shortDescription>
- <value>140</value>
- </labels>
- <labels>
- <fullName>Contract_Breakdown</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>濂戠磩鍐呰ǔ</shortDescription>
- <value>濂戠磩鍐呰ǔ</value>
- </labels>
- <labels>
- <fullName>Contract_Detail_Buyer_Stamp</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銉愩偆銉ゃ兗鍒诲嵃</shortDescription>
- <value>銉愩偆銉ゃ兗鍒诲嵃</value>
- </labels>
- <labels>
- <fullName>Contract_Detail_Dealer_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>浠g悊搴楀悕</shortDescription>
- <value>浠g悊搴楀悕</value>
- </labels>
- <labels>
- <fullName>Contract_Detail_Print_Date</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍗板埛鏃�</shortDescription>
- <value>鍗板埛鏃�</value>
- </labels>
- <labels>
- <fullName>Contract_Detail_System_Code</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈枫偣銉嗐儬銈炽兗銉�</shortDescription>
- <value>銈枫偣銉嗐儬銈炽兗銉�</value>
- </labels>
- <labels>
- <fullName>Contract_Detail_Title</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>濂戠磩鍐呰ǔ</shortDescription>
- <value>濂戠磩鍐呰ǔ</value>
- </labels>
- <labels>
- <fullName>Copy_Detail</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏄庣窗銈掋偗銉儍銉椼儨銉笺儔銇偝銉斻兗</shortDescription>
- <value>鏄庣窗銈掋偗銉儍銉椼儨銉笺儔銇偝銉斻兗</value>
- </labels>
- <labels>
- <fullName>Cost</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍘熶尽</shortDescription>
- <value>鍘熶尽</value>
- </labels>
- <labels>
- <fullName>Cost_coefficient</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>鎴愭湰绯绘暟</shortDescription>
- <value>0.75</value>
- </labels>
- <labels>
- <fullName>CreateRelationListSearchError</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍏遍�氭绱㈡姤閿�</shortDescription>
- <value>妞滅储鍑︾悊涓嶆纭�佽涓庣郴缁熺鐞嗚�呴�g怠銆�</value>
- </labels>
- <labels>
- <fullName>Created</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐧婚尣鑰�</shortDescription>
- <value>鐧婚尣鑰�</value>
- </labels>
- <labels>
- <fullName>Currency</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閫氳波</shortDescription>
- <value>閫氳波</value>
- </labels>
- <labels>
- <fullName>Current_fiscalyear</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>褰撳墠璐㈠勾</shortDescription>
- <value>152P</value>
- </labels>
- <labels>
- <fullName>Customer_Advisory</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瀹㈡埛鍜ㄨ瀵瑰簲</shortDescription>
- <value>瀹㈡埛鍜ㄨ瀵瑰簲</value>
- </labels>
- <labels>
- <fullName>DailyVisit</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_鏃ュ父鎷滆</shortDescription>
- <value>01210000000cWfN</value>
- </labels>
- <labels>
- <fullName>Daily_Btn_Cancel</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐢宠珛鍙栨秷</shortDescription>
- <value>鐢宠珛鍙栨秷</value>
- </labels>
- <labels>
- <fullName>Daily_Edit</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏃ュ牨銇法闆�</shortDescription>
- <value>鏃ュ牨銇法闆�</value>
- </labels>
- <labels>
- <fullName>Date</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏃ヤ粯</shortDescription>
- <value>鏃ヤ粯</value>
- </labels>
- <labels>
- <fullName>DateChangeReason</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏃ユ湡鎻愬墠/寤跺悗鍘熷洜</shortDescription>
- <value>{"鎻愬墠":[{"label":"鎻愬墠鎸傜綉鎷涙爣","value":"鎻愬墠鎸傜綉鎷涙爣"},{"label":"鍖婚櫌绱ф�ヨ喘涔�","value":"鍖婚櫌绱ф�ヨ喘涔�"},{"label":"棰勭畻澶栫揣鎬ラ噰璐�","value":"棰勭畻澶栫揣鎬ラ噰璐�"}],"寤跺悗":[{"label":"鍖婚櫌浜轰簨鍙樺姩","value":"鍖婚櫌浜轰簨鍙樺姩"},{"label":"鍖婚櫌棰勭畻寤舵湡","value":"鍖婚櫌棰勭畻寤舵湡"},{"label":"鏀跨瓥瑙傛湜","value":"鏀跨瓥瑙傛湜"},{"label":"鎷涙爣鍙樻洿鎴栧欢杩�","value":"鎷涙爣鍙樻洿鎴栧欢杩�"},{"label":"鐤儏褰卞搷鎺ㄨ繜","value":"鐤儏褰卞搷鎺ㄨ繜"},{"label":"瑁呬慨宸ユ湡寤舵湡","value":"瑁呬慨宸ユ湡寤舵湡"},{"label":"璁″垝鏈幏瀹℃壒","value":"璁″垝鏈幏瀹℃壒"},{"label":"閲囪喘鎰忓悜鎸傜綉鎺ㄨ繜","value":"閲囪喘鎰忓悜鎸傜綉鎺ㄨ繜"},{"label":"杩涘彛璁鸿瘉鎺ㄨ繜","value":"杩涘彛璁鸿瘉鎺ㄨ繜"}]}</value>
- </labels>
- <labels>
- <fullName>DateNotReceivingNote</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>闈為泦涓鐞嗘棩鏈�</shortDescription>
- <value>2021-07-01</value>
- </labels>
- <labels>
- <fullName>Dealer_Returned_Label</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁忛攢鍟嗚繑鍝�</shortDescription>
- <value>012100000006Jx4</value>
- </labels>
- <labels>
- <fullName>Department</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閮ㄩ杸</shortDescription>
- <value>閮ㄩ杸</value>
- </labels>
- <labels>
- <fullName>Department_BF</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉� 鍛煎惛绉�</shortDescription>
- <value>01210000000QfmRAAS</value>
- </labels>
- <labels>
- <fullName>Department_Class_BF</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛 鍛煎惛绉�</shortDescription>
- <value>01210000000QezZAAS</value>
- </labels>
- <labels>
- <fullName>Department_Class_ENT</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛 鑰抽蓟鍠夌</shortDescription>
- <value>01210000000QeztAAC</value>
- </labels>
- <labels>
- <fullName>Department_Class_ET</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛ET</shortDescription>
- <value>01210000000QemQAAS</value>
- </labels>
- <labels>
- <fullName>Department_Class_GI</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛 娑堝寲绉�</shortDescription>
- <value>01210000000QemLAAS</value>
- </labels>
- <labels>
- <fullName>Department_Class_GS</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛 鏅绉�</shortDescription>
- <value>01210000000QezeAAC</value>
- </labels>
- <labels>
- <fullName>Department_Class_GYN</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛 濠︿汉绉�</shortDescription>
- <value>01210000000QezoAAC</value>
- </labels>
- <labels>
- <fullName>Department_Class_OTH</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛 銇濄伄浠�</shortDescription>
- <value>01210000000QezyAAC</value>
- </labels>
- <labels>
- <fullName>Department_Class_URO</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛 娉屽翱绉�</shortDescription>
- <value>01210000000QezjAAC</value>
- </labels>
- <labels>
- <fullName>Department_Class_Unification</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛锛堝叡閫氾級</shortDescription>
- <value>01210000000QflsAAC</value>
- </labels>
- <labels>
- <fullName>Department_ENT</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉� 鑰抽蓟鍠夌</shortDescription>
- <value>01210000000Qfm2AAC</value>
- </labels>
- <labels>
- <fullName>Department_GI</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉� 娑堝寲绉�</shortDescription>
- <value>01210000000Qfm7AAC</value>
- </labels>
- <labels>
- <fullName>Department_GS</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉� 鏅绉�</shortDescription>
- <value>01210000000QfmHAAS</value>
- </labels>
- <labels>
- <fullName>Department_GYN</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉� 濠︿汉绉�</shortDescription>
- <value>01210000000QfmMAAS</value>
- </labels>
- <labels>
- <fullName>Department_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉戝悕</shortDescription>
- <value>瑷虹檪绉戝悕</value>
- </labels>
- <labels>
- <fullName>Department_OTH</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉� 銇濄伄浠�</shortDescription>
- <value>01210000000QfmbAAC</value>
- </labels>
- <labels>
- <fullName>Department_Quote</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閮ㄩ杸</shortDescription>
- <value>閮ㄩ杸</value>
- </labels>
- <labels>
- <fullName>Department_URO</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉� 娉屽翱绉�</shortDescription>
- <value>01210000000QfmCAAS</value>
- </labels>
- <labels>
- <fullName>Department_common</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑷虹檪绉戯紙鍏遍�氾級</shortDescription>
- <value>01210000000QelwAAC</value>
- </labels>
- <labels>
- <fullName>Description</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绲愭灉</shortDescription>
- <value>绲愭灉</value>
- </labels>
- <labels>
- <fullName>Detail_Price</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍗曚环</shortDescription>
- <value>鍗曚环</value>
- </labels>
- <labels>
- <fullName>Detail_Sum</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎶ヤ环閲戦</shortDescription>
- <value>鎶ヤ环閲戦</value>
- </labels>
- <labels>
- <fullName>Director_Confirmed</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閮ㄩ暦纰鸿獚</shortDescription>
- <value>閮ㄩ暦纰鸿獚</value>
- </labels>
- <labels>
- <fullName>Discount_Amount</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍊ゅ紩閲戦</shortDescription>
- <value>鍊ゅ紩閲戦</value>
- </labels>
- <labels>
- <fullName>Doctors_Information</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍖荤敓淇℃伅</shortDescription>
- <value>鍖荤敓淇℃伅</value>
- </labels>
- <labels>
- <fullName>DocumentFileSize_KB</fullName>
- <categories>Document,File,Size</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏂囨。鏂囦欢鐨勬渶澶KB</shortDescription>
- <value>10000</value>
- </labels>
- <labels>
- <fullName>During_Creation</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>浣滄垚涓�</shortDescription>
- <value>浣滄垚涓�</value>
- </labels>
- <labels>
- <fullName>ESign_Error_Send_To_CC</fullName>
- <categories>娌℃湁CC鐨勬椂鍊欏~鍐檔ull锛屾湁鐨勮瘽濉啓UserId锛屽鏁扮殑璇濊鐢ㄩ�楀彿(,)闅斿紑</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ESign_Error_Send_To_CC</shortDescription>
- <value>null</value>
- </labels>
- <labels>
- <fullName>ET_Date_Calculate</fullName>
- <categories>ET鎵ц鏃ユ湡鎵i櫎澶╂暟</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ET_Date_Calculate</shortDescription>
- <value>7</value>
- </labels>
- <labels>
- <fullName>Edit</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绶ㄩ泦</shortDescription>
- <value>绶ㄩ泦</value>
- </labels>
- <labels>
- <fullName>EmailAlert</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Email鎻愰啋鐢ㄦ埛鐨勯偖浠堕粯璁ゅ彧鏈夌簿鐞㈡妧鏈�</shortDescription>
- <value>olympus@prec-tech.com,shuo_wang@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_OGZ</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_鐩撮�丱GZ淇悊</shortDescription>
- <value>Baozhen_Lin@olympus.com.cn;Hedan_Li@olympus.com.cn;shaoqiu_cai@olympus.com.cn;Hua_Liu@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_RC_BJ</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_鍖椾含鍔炰簨澶�</shortDescription>
- <value>wenjing1_wang@olympus.com.cn;li_zhang@olympus.com.cn;xiuru_wang@olympus.com.cn;yanxin_wang@olympus.com.cn;ling_sheng@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_RC_CD</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_鎴愰兘鍔炰簨澶�</shortDescription>
- <value>yang_fan@olympus.com.cn;xianning_lai@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_RC_GZ</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_骞夸笢鍔炰簨澶�</shortDescription>
- <value>yinghua_zhang@olympus.com.cn;jingyi_shao@olympus.com.cn;jingyi_huo@olympus.com.cn;ping1_wu@olympus.com.cn;chen_yu@olympus.com.cn;youhua_wang@olympus.com.cn;Zhanhong1_Chen@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_RC_HZ</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_鏉窞鍔炰簨澶�</shortDescription>
- <value>na_meng@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_RC_SH</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_涓婃捣鍔炰簨澶�</shortDescription>
- <value>haifeng_liu@olympus.com.cn;jue_xu@olympus.com.cn;yan_zhang@olympus.com.cn;zongyu_liu@olympus.com.cn;minjie_ma@olympus.com.cn;huanhuan_shen@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_RC_SY</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_娌堥槼鍔炰簨澶�</shortDescription>
- <value>sen_zhang@olympus.com.cn;jie_zhang@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_RC_XA</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_瑗垮畨鍔炰簨澶�</shortDescription>
- <value>chunyan_jia@olympus.com.cn;xiaoyun_liu@olympus.com.cn;mengxuan_liu@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>EmailForRentalApproval_SORC</fullName>
- <categories>RC鍙婂伐鍘傛帴鏀跺鎵归�氳繃閭欢缁勭兢</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閫氱煡缁勭兢_澶囧搧鍑忎环鐢宠_鐩撮�丼ORC淇悊</shortDescription>
- <value>judi_chen@olympus.com.cn;xiaochun_hu@olympus.com.cn;liyan_huang@olympus.com.cn;Xiang_Gu@olympus.com.cn;Hanzhong_Xu@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>Employee_Number</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绀惧摗鐣彿</shortDescription>
- <value>绀惧摗鐣彿</value>
- </labels>
- <labels>
- <fullName>Environment_Url</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐜Url杩炴帴</shortDescription>
- <value>https://ocsm.my.salesforce.com/</value>
- </labels>
- <labels>
- <fullName>EquipmentRentalBlackList</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧榛戝悕鍗曞垎鏁帮紙鏆傛椂涓嶅仛check锛屾墍浠ュ啓鎴�999999999锛�</shortDescription>
- <value>999999999</value>
- </labels>
- <labels>
- <fullName>EquipmentRentalBlackListPoint</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐘鐐规暟 3鐐�</shortDescription>
- <value>3</value>
- </labels>
- <labels>
- <fullName>EquipmentRentalBlackListPoint_1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐘鐐规暟 1鐐�</shortDescription>
- <value>1</value>
- </labels>
- <labels>
- <fullName>EquipmentRentalBlackList_ChangeOwner_Threshold</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>澶囧搧榛戝悕鍗曞垎鏁�2锛堟殏鏃朵笉鍋歝heck锛屾墍浠ュ啓鎴�999999999锛�</shortDescription>
- <value>999999999</value>
- </labels>
- <labels>
- <fullName>EquipmentRentalPostponeOverDeadline</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧寤舵湡鐢宠瓒呰繃鏈熼檺</shortDescription>
- <value>寤舵湡鐢宠蹇呴』鍦ㄥ�熷嚭缁撴潫鏃ョ殑5涓伐浣滄棩涔嬪墠鎻愬嚭</value>
- </labels>
- <labels>
- <fullName>EquipmentRentalPrepare</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧鍊熷嚭鍑嗗澶╂暟(钀ヤ笟鏃�)</shortDescription>
- <value>5</value>
- </labels>
- <labels>
- <fullName>EquipmentRental_advance_days</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧鍙彁鍓嶉绾﹀ぉ鏁�</shortDescription>
- <value>62</value>
- </labels>
- <labels>
- <fullName>EquipmentSet_repair_reportID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧set-淇悊鎶ヨ〃ID</shortDescription>
- <value>00O10000003qWdU</value>
- </labels>
- <labels>
- <fullName>Error_ChatterPostToMyFollowers</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Error_ChatterPostToMyFollowers</shortDescription>
- <value>Cannot post to My Followers</value>
- </labels>
- <labels>
- <fullName>Error_Message0</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈ㄣ儵銉笺倰淇銇椼仸銇忋仩銇曘亜銆�</shortDescription>
- <value>銈ㄣ儵銉笺倰淇銇椼仸銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message1</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏃ヤ粯銇ㄥ悓銇樺�ゃ倰瑷畾銇椼仸銇忋仩銇曘亜銆�</shortDescription>
- <value>鏃ヤ粯銇ㄥ悓銇樺�ゃ倰瑷畾銇椼仸銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message10</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙傜収妯╅檺銇屻亗銈娿伨銇涖倱銆�</shortDescription>
- <value>鍙傜収妯╅檺銇屻亗銈娿伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message11</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍝佺洰銉炪偣銈胯博澹插彲鍚︹柍銇с亗銈嬪搧鐩亴閬告姙銇曘倢銇︺亜銇俱仚銆�</shortDescription>
- <value>鍝佺洰銉炪偣銈胯博澹插彲鍚︹柍銇с亗銈嬪搧鐩亴閬告姙銇曘倢銇︺亜銇俱仚銆傚挤鍒� decide 銇椼伨銇欍亱锛�</value>
- </labels>
- <labels>
- <fullName>Error_Message12</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍟嗚珖ID銇屽彇寰椼仹銇嶃伨銇涖倱銆�</shortDescription>
- <value>鍟嗚珖ID銇屽彇寰椼仹銇嶃伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message13</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>SAP閫佷俊蹇呴爤闋呯洰銉併偋銉冦偗銈ㄣ儵銉笺仹銇欍�傦紙璨╁2銉兗銉堛�佽臣璨峰舰鎱嬨�佸绱勫垎椤炪�佽硣閲戝熀銈掔⒑瑾嶃仐銇︺亸銇犮仌銇勩�傦級</shortDescription>
- <value>SAP閫佷俊蹇呴爤闋呯洰銉併偋銉冦偗銈ㄣ儵銉笺仹銇欍�傦紙璨╁2銉兗銉堛�佽臣璨峰舰鎱嬨�佸绱勫垎椤炪�佽硣閲戝熀銈掔⒑瑾嶃仐銇︺亸銇犮仌銇勩�傦級</value>
- </labels>
- <labels>
- <fullName>Error_Message14</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鍫存墍銈掑叆鍔涖仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>瑷晱鍫存墍銈掑叆鍔涖仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message15</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鍫存墍銇屽瓨鍦ㄣ仐銇俱仜銈撱��</shortDescription>
- <value>瑷晱鍫存墍銇屽瓨鍦ㄣ仐銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message16</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鍫存墍銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>瑷晱鍫存墍銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message17</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐩殑(瑷堢敾)銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>鐩殑(瑷堢敾)銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message18</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>娲诲嫊鍖哄垎銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>娲诲嫊鍖哄垎銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message19</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍫卞憡鑰呫倰瑷畾銇椼仸銇忋仩銇曘亜銆�</shortDescription>
- <value>鍫卞憡鑰呫倰瑷畾銇椼仸銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message2</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>闁嬪鏃ユ檪銈堛倞寰屻伄鏃ユ檪銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>闁嬪鏃ユ檪銈堛倞寰屻伄鏃ユ檪銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message20</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏃ヤ粯銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>鏃ヤ粯銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message21</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍊ゃ倰瑷畾銇俱仧銇牨鍛婃浉銈掍綔鎴愩仐銇熷牬鍚堛伅澶夋洿銇с亶銇俱仜銈撱��</shortDescription>
- <value>鍊ゃ倰瑷畾銇俱仧銇牨鍛婃浉銈掍綔鎴愩仐銇熷牬鍚堛伅澶夋洿銇с亶銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message22</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏃ヤ粯銈掑叆鍔涖仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>鏃ヤ粯銈掑叆鍔涖仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message23</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏃ヤ粯銇痀YYY/MM/DD銇у叆鍔涖仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>鏃ヤ粯銇痀YYY/MM/DD銇у叆鍔涖仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message24</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍕ゅ嫏鏅傞枔銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>鍕ゅ嫏鏅傞枔銈掕ō瀹氥仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message25</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍕ゅ嫏鏅傞枔銇痀YYY/MM/DD HH:mm銇у叆鍔涖仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>鍕ゅ嫏鏅傞枔銇痀YYY/MM/DD HH:mm銇у叆鍔涖仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message26</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>妯╅檺銇屻亗銈娿伨銇涖倱銆�</shortDescription>
- <value>妯╅檺銇屻亗銈娿伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message27</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>渚℃牸琛ㄣ亴鍙栧緱銇с亶銇俱仜銈撱��</shortDescription>
- <value>鏈夊姽銇尽鏍艰〃銇屽彇寰椼仹銇嶃伨銇涖倱銆傛槑绱板晢鍝併倰纰鸿獚銇椼仸銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message28</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈ㄣ儵銉�</shortDescription>
- <value>銈ㄣ儵銉�</value>
- </labels>
- <labels>
- <fullName>Error_Message29</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍝佺洰銉炪偣銈裤伄闋呯洰銆岃绌嶇櫥閷插彲鍚︺�嶃亴鈼嬨仹銇亜鍝佺洰銇屽瓨鍦ㄣ仐銇俱仚銆�</shortDescription>
- <value>鍝佺洰銉炪偣銈裤伄闋呯洰銆岃绌嶇櫥閷插彲鍚︺�嶃亴鈼嬨仹銇亜鍝佺洰銇屽瓨鍦ㄣ仐銇俱仚銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message3</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍊ゃ倰鍏ュ姏銇椼仸涓嬨仌銇勩��</shortDescription>
- <value>鍊ゃ倰鍏ュ姏銇椼仸涓嬨仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message30</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍊ゃ倰鍏ュ姏銇椼仾銇勩仹銇忋仩銇曘亜銆�</shortDescription>
- <value>鍊ゃ倰鍏ュ姏銇椼仾銇勩仹銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message31</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Excel鍙栥倞杈笺伩銉囥兗銈裤伀涓嶆銇儑銉笺偪銇屽惈銇俱倢銇︺亜銇俱仚銆�</shortDescription>
- <value>Excel鍙栥倞杈笺伩銉囥兗銈裤伀涓嶆銇儑銉笺偪銇屽惈銇俱倢銇︺亜銇俱仚銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message32</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鏄庣窗銇伅30鏄庣窗銇俱仹鐧婚尣鍙兘銇с仚銆�</shortDescription>
- <value>瑕嬬鏄庣窗銇伅30鏄庣窗銇俱仹鐧婚尣鍙兘銇с仚銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message33</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鐣彿銇屾帯鐣仌銈屻仸銇勩伨銇涖倱銇仹鍗板埛銇с亶銇俱仜銈撱��</shortDescription>
- <value>瑕嬬鐣彿銇屾帯鐣仌銈屻仸銇勩伨銇涖倱銇仹鍗板埛銇с亶銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message34</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>琛屻倰閬告姙銇椼仸銇忋仩銇曘亜銆�</shortDescription>
- <value>琛屻倰閬告姙銇椼仸銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message35</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍏堥牠琛屻仹銇Up銇仹銇嶃伨銇涖倱銆�</shortDescription>
- <value>鍏堥牠琛屻仹銇Up銇仹銇嶃伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message36</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏈�绲傝銇с伅琛孌own銇仹銇嶃伨銇涖倱銆�</shortDescription>
- <value>鏈�绲傝銇с伅琛孌own銇仹銇嶃伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message37</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍝佺洰銉炪偣銈胯博澹插彲鍚γ椼仹銇傘倠鍝佺洰銇岄伕鎶炪仌銈屻仸銇勩伨銇欍��</shortDescription>
- <value>鍝佺洰銉炪偣銈胯博澹插彲鍚γ椼仹銇傘倠鍝佺洰銇岄伕鎶炪仌銈屻仸銇勩伨銇欍��</value>
- </labels>
- <labels>
- <fullName>Error_Message38</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷堢畻锛呫伄鍊ゃ亴澶с亶銇欍亷銇俱仚銆�</shortDescription>
- <value>瑷堢畻锛呫伄鍊ゃ亴澶с亶銇欍亷銇俱仚銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message39</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>涓嶆銇棩浠樸仹銇欍��</shortDescription>
- <value>涓嶆銇棩浠樸仹銇欍��</value>
- </labels>
- <labels>
- <fullName>Error_Message4</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>涓婂徃浠ュ銇伕鎶炪仹銇嶃伨銇涖倱銆�</shortDescription>
- <value>涓婂徃浠ュ銇伕鎶炪仹銇嶃伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message40</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈ㄣ儵銉�:</shortDescription>
- <value>銈ㄣ儵銉�:</value>
- </labels>
- <labels>
- <fullName>Error_Message41</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閿�鍞帹骞裤伅閬告姙銇с亶銇俱仜銈撱��</shortDescription>
- <value>閿�鍞帹骞裤伅閬告姙銇с亶銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message42</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閿�鍞湇鍔°伅閬告姙銇с亶銇俱仜銈撱��</shortDescription>
- <value>閿�鍞湇鍔°伅閬告姙銇с亶銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message43</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍫卞憡鏇搞倰浣滄垚銇椼仧鍫村悎銇椿鍕曘倰鍓婇櫎銇с亶銇俱仜銈撱��</shortDescription>
- <value>鍫卞憡鏇搞倰浣滄垚銇椼仧鍫村悎銇椿鍕曘倰鍓婇櫎銇с亶銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message44</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍫卞憡鏇搞倰浣滄垚銇椼仧鍫村悎銆佹椿鍕曘伅鍓婇櫎銇с亶銇亸銇倞銇俱仚銇屻倛銈嶃仐銇勩仹銇欍亱锛�</shortDescription>
- <value>鍫卞憡鏇搞倰浣滄垚銇椼仧鍫村悎銆佹椿鍕曘伅鍓婇櫎銇с亶銇亸銇倞銇俱仚銇屻倛銈嶃仐銇勩仹銇欍亱锛�</value>
- </labels>
- <labels>
- <fullName>Error_Message45</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷畾娓堛伩銇с仚銆�</shortDescription>
- <value>瑷畾娓堛伩銇с仚銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message46</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈炽儭銉炽儓銇�255鏂囧瓧浠ュ唴銇у叆鍔涖仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>銈炽儭銉炽儓銇�255鏂囧瓧浠ュ唴銇у叆鍔涖仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Error_Message47</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>涓嶈兘閫夋嫨娌℃湁缁翠慨鍚堝悓閲戦鐨勪骇鍝�</shortDescription>
- <value>涓嶈兘閫夋嫨娌℃湁缁翠慨鍚堝悓閲戦鐨勪骇鍝�</value>
- </labels>
- <labels>
- <fullName>Error_Message48</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎶ヤ环濮旀墭鍟嗗搧妫�鏌ユ彁绀轰俊鎭�</shortDescription>
- <value>浜у搧宸茬粡鏇存柊涓烘渶鏂扮姸鎬侊紝璇峰啀娆$‘璁ゃ��</value>
- </labels>
- <labels>
- <fullName>Error_Message49</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁块棶鍦烘墍涓嶅厑璁镐慨鏀�</shortDescription>
- <value>濡傛灉鏀瑰彉鎷滆瀵硅薄锛岃鍙栨秷杩欐潯娲诲姩銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message5</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鍫存墍銇屽瓨鍦ㄣ仐銇俱仜銈撱��</shortDescription>
- <value>瑷晱鍫存墍銇屽瓨鍦ㄣ仐銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message6</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鑰呫伅鐢婚潰銇嬨倝瑷畾銇椼仸銇忋仩銇曘亜銆�</shortDescription>
- <value>瑷晱鑰呫伅鐢婚潰銇嬨倝瑷畾銇椼仸銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message7</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寮曞悎銇屽瓨鍦ㄣ仐銇俱仜銈撱��</shortDescription>
- <value>寮曞悎銇屽瓨鍦ㄣ仐銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message8</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈点兗銉撱偣濂戠磩銇屽瓨鍦ㄣ仐銇俱仜銈撱��</shortDescription>
- <value>銈点兗銉撱偣濂戠磩銇屽瓨鍦ㄣ仐銇俱仜銈撱��</value>
- </labels>
- <labels>
- <fullName>Error_Message9</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬姹哄畾寰屻伄鏂拌瑕嬬浣滄垚銇仹銇嶃伨銇涖倱銆�</shortDescription>
- <value>瑕嬬姹哄畾寰屻伄鏂拌瑕嬬浣滄垚銇仹銇嶃伨銇涖倱銆�</value>
- </labels>
- <labels>
- <fullName>Error_Message_Cannot_Win</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Error_Message_Cannot_Win</shortDescription>
- <value>鍐冲畾鐨勬姤浠疯窛绂绘渶杩戜竴娆″嵃鍒锋棩宸茬粡杩囦簡3涓湀锛屼笉鑳絎IN</value>
- </labels>
- <labels>
- <fullName>Error_Message_OppTeamMember01</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寮曞悎銉併兗銉犲壇鎷呭綋閲嶈鐢�</shortDescription>
- <value>鍓媴褰撱伅鏃€伀瑷畾銇曘倢銇︺亜銇俱仚</value>
- </labels>
- <labels>
- <fullName>Error_Message_OppTeamMember02</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>STMS鎷呭綋閲嶅鎸囧畾error</shortDescription>
- <value>STMS鎷呭綋宸茬粡鎸囧畾杩囦簡锛屽彧鑳芥寚瀹氫竴浜�</value>
- </labels>
- <labels>
- <fullName>Error_Message_X_Product</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Error_Message_X_Product</shortDescription>
- <value>鍐冲畾鐨勬姤浠蜂腑鍖呭惈浜嗕笉鍙姤浠风殑浜у搧锛岃閲嶆柊纭浣犵殑鎶ヤ环</value>
- </labels>
- <labels>
- <fullName>Evalutaion_Comment</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Evalutaion Comment</shortDescription>
- <value>鐣欒█</value>
- </labels>
- <labels>
- <fullName>Excel_Import</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>EXCEL銈ゃ兂銉濄兗銉堢敾闈�</shortDescription>
- <value>EXCEL銈ゃ兂銉濄兗銉堢敾闈�</value>
- </labels>
- <labels>
- <fullName>Extension_to_Beijing_common_approver</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寤舵湡鍖椾含鍏遍�氬鎵逛汉</shortDescription>
- <value>00510000004rbs0</value>
- </labels>
- <labels>
- <fullName>Extension_to_Guangdong_approver</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寤舵湡骞夸笢瀹℃壒浜�</shortDescription>
- <value>00510000004rbu1</value>
- </labels>
- <labels>
- <fullName>Extension_to_Shanghai_approver</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寤舵湡涓婃捣瀹℃壒浜�</shortDescription>
- <value>00510000004qUxZ</value>
- </labels>
- <labels>
- <fullName>Extension_to_Shenyang_approver</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寤舵湡娌堥槼瀹℃壒浜�</shortDescription>
- <value>00510000005oWch</value>
- </labels>
- <labels>
- <fullName>External_Environmental_Reporting_Market</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>甯傛硜澶栭儴鐠板鍫卞憡</shortDescription>
- <value>甯傛硜澶栭儴鐠板鍫卞憡</value>
- </labels>
- <labels>
- <fullName>FSEWaitFollowInquiryForm</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>FSE寰呰窡杩涚殑鍜ㄨ鍗�</shortDescription>
- <value>/a41?fcf=00B10000006i7dj</value>
- </labels>
- <labels>
- <fullName>Feedback</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銉曘偅銉笺儔銉愩儍銈�</shortDescription>
- <value>銉曘偅銉笺儔銉愩儍銈�</value>
- </labels>
- <labels>
- <fullName>Find_Imitations</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍙戠幇浠垮埗鍝�</shortDescription>
- <value>鍙戠幇浠垮埗鍝�</value>
- </labels>
- <labels>
- <fullName>First_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鑰呭悕(鍚�)</shortDescription>
- <value>瑷晱鑰呭悕(鍚�)</value>
- </labels>
- <labels>
- <fullName>Forecast_Amounts</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>锛迹锛2涓婁簣娓噾椤�</shortDescription>
- <value>锛迹锛2涓婁簣娓噾椤�</value>
- </labels>
- <labels>
- <fullName>Free_Input</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銉曘儶銉煎叆鍔�</shortDescription>
- <value>銉曘儶銉煎叆鍔�</value>
- </labels>
- <labels>
- <fullName>From_Manager</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銉炪儘銉笺偢銉c亱銈夈伄</shortDescription>
- <value>銉炪儘銉笺偢銉c亱銈夈伄</value>
- </labels>
- <labels>
- <fullName>Fund_Basis</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><缁忛攢鍟嗚浠�>璧勯噾鏉ユ簮</shortDescription>
- <value>00N10000008rqHd</value>
- </labels>
- <labels>
- <fullName>GIORSP_Tender</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴戠殑寰呯‘璁ょ殑鎷涙姇鏍囬」鐩�</shortDescription>
- <value>/a4L?fcf=00B10000006SGUx</value>
- </labels>
- <labels>
- <fullName>Get_Day_Report</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏃ュ牨鍙栧緱</shortDescription>
- <value>鏃ュ牨鍙栧緱</value>
- </labels>
- <labels>
- <fullName>Group_ServiceManagementID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏈嶅姟绠$悊璇惧強涓嬪睘ID</shortDescription>
- <value>00G10000002i4Hq</value>
- </labels>
- <labels>
- <fullName>GuangzhouEmail</fullName>
- <categories>EmailText</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>GuangzhouEmail</shortDescription>
- <value>ocm_assetgz@olympus.com.cn.partial</value>
- </labels>
- <labels>
- <fullName>GuaranteeUSD</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶栬锤澶氬勾淇濅慨</shortDescription>
- <value>2021-04-01</value>
- </labels>
- <labels>
- <fullName>GuaranteeWin</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶氬勾淇濅慨-win</shortDescription>
- <value>2019-10-01</value>
- </labels>
- <labels>
- <fullName>HP</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐥呴櫌</shortDescription>
- <value>01210000000QemGAAS</value>
- </labels>
- <labels>
- <fullName>HP_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐥呴櫌鍚�</shortDescription>
- <value>鐥呴櫌鍚�</value>
- </labels>
- <labels>
- <fullName>Home_Back</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銉涖兗銉犮伀鎴汇倠</shortDescription>
- <value>銉涖兗銉犮伀鎴汇倠</value>
- </labels>
- <labels>
- <fullName>Hospital</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐥呴櫌</shortDescription>
- <value>鐥呴櫌</value>
- </labels>
- <labels>
- <fullName>Hospital_Information</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍖婚櫌淇℃伅</shortDescription>
- <value>鍖婚櫌淇℃伅</value>
- </labels>
- <labels>
- <fullName>Hospital_RecordType</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍖婚櫌璁板綍绫诲瀷</shortDescription>
- <value>01210000000QemG</value>
- </labels>
- <labels>
- <fullName>ID_of_SelectAssetEstimate</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓鎶ヤ环鎶ヨ〃ID</shortDescription>
- <value>/00O100000058Bzh?pv0=</value>
- </labels>
- <labels>
- <fullName>IFTradeComplianceAlert</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璐告槗鍚堣澧炲姞鎻愮ず</shortDescription>
- <value>鏈夐棶棰樿鑱旂郴娉曞姟閮ㄨ锤鏄撳悎瑙勭獥鍙f伣鏉庡銆�</value>
- </labels>
- <labels>
- <fullName>ImportText</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈ゃ兂銉濄兗銉堝唴瀹瑰叆鍔�</shortDescription>
- <value>銈ゃ兂銉濄兗銉堝唴瀹瑰叆鍔�</value>
- </labels>
- <labels>
- <fullName>Improvement_Development_Needs</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏀硅壇銉婚枊鐧鸿鏈�</shortDescription>
- <value>鏀硅壇銉婚枊鐧鸿鏈�</value>
- </labels>
- <labels>
- <fullName>Improvement_Development_Needs_RecordType</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏀硅壇/闁嬬櫤瑕佹湜</shortDescription>
- <value>鏀硅壇/闁嬬櫤瑕佹湜</value>
- </labels>
- <labels>
- <fullName>InfoOwner_Tender</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴戠殑寰呭叧鑱旇浠风殑鎷涙姇鏍囬」鐩�</shortDescription>
- <value>/a4L?fcf=00B10000006SGSx</value>
- </labels>
- <labels>
- <fullName>InfoOwner_Tender_2M4</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2M4寰呭叧鑱旈」鐩椤垫彁閱掕烦杞鍥�</shortDescription>
- <value>/a4L?fcf=00B10000006SGbF</value>
- </labels>
- <labels>
- <fullName>Input_Required_Field_Msg</fullName>
- <categories>PIPL</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Input Required Field Msg</shortDescription>
- <value>璇疯緭鍏ヤ互涓嬪繀濉瓧娈典俊鎭�:</value>
- </labels>
- <labels>
- <fullName>Inquiry_Status_Mapping</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璇环鐘舵��2鏄犲皠鍏崇郴</shortDescription>
- <value>{"寮曞悎 : 00 鏈窡杩�":"1","寮曞悎 : 01 璺熻繘涓�":"2","寮曞悎 : 02 璐锋鎵瑰噯":"3","寮曞悎 : 03 宸茬敵璇烽绠�":"4","寮曞悎 : 04 棰勭畻宸叉壒鍑�":"5","寮曞悎 : 04 棰勭畻鏈壒鍑�":"5","寮曞悎 : 05 宸茬敵璇疯繘鍙h璇�":"6","寮曞悎 : 06 璁鸿瘉宸查�氳繃":"7","寮曞悎 : 06 璁鸿瘉鏈�氳繃":"7","寮曞悎 : 07 宸茬‘璁ゅ弬鏁�":"8","寮曞悎 : 08 宸叉巿鏉�":"9","寮曞悎 : 09 宸叉嫑鏍�":"10","寮曞悎 : 10 宸蹭腑鏍�":"11","寮曞悎 : 11 浠锋牸鐢宠涓�":"12","寮曞悎 : 12 宸茬绾�":"13","娉ㄦ畫 : 01 宸插綍鍏ヨ鍗�,鏈粯娆�":"13","娉ㄦ畫 : 02 搴撳瓨宸查鐣�,鏈粯娆�":"13","娉ㄦ畫 : 03 宸茶璐�,浠樿閲�":"13","娉ㄦ畫 : 04 宸茶璐�,浠樺叏娆�":"13","娉ㄦ畫 : 05 宸插垎閰�,寰呭彂璐�":"13","鍑鸿嵎 : 06 宸插彂璐�":"13","鍑鸿嵎 : 07 宸插畨瑁�":"13","瀹屼簡 : 08 宸茬粨鏉�":"13","鍓婇櫎 : 鍙栨秷":"0","鏁楁垿 : 澶卞崟":"0","寮曞悎 : -":"1","寮曞悎 :":"1","寮曞悎 : 00 杩樻病鏇存柊":"1","寮曞悎 : 01 杩樻病鎷滆":"1","寮曞悎 : 02 璺熻繘涓�":"2","寮曞悎 : 03 宸叉巿鏉�":"9","寮曞悎 : 04 宸蹭腑鏍�":"11","寮曞悎 : 05 浠锋牸鐢宠涓�":"12","寮曞悎 : 06 鐢ㄦ埛鏈绾�":"13","寮曞悎 : 07 鐢ㄦ埛宸茬绾�":"13","寮曞悎 : 08 宸茬绾�":"13","鍑鸿嵎 : -":"13","瀹屼簡 : -":"13","娉ㄦ畫 : -":"13","鍑鸿嵎 :":"13","瀹屼簡 :":"13","娉ㄦ畫 :":"13","瀹屼簡 : 08 宸茬绾�":"13","鍓婇櫎 : 17 鍙栨秷":"0","鏁楁垿 : 18 澶卞崟":"0"}</value>
- </labels>
- <labels>
- <fullName>Inquiry_form_flag</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浜у搧鍜ㄨ鍗曞巻鍙叉暟鎹窡鏂癴lag</shortDescription>
- <value>false</value>
- </labels>
- <labels>
- <fullName>Inspection</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐐规</shortDescription>
- <value>鐐规</value>
- </labels>
- <labels>
- <fullName>InspectionReportRecordTypeId</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐐规鎶ュ憡涔﹁褰曠被鍨婭D</shortDescription>
- <value>01210000000aLiiAAE</value>
- </labels>
- <labels>
- <fullName>Inspection_AllAssets</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐐规銉撱儱銉糏D(銇濄伄浠�):鏈暘鐢�</shortDescription>
- <value>/02i?fcf=00B10000002o8Q5</value>
- </labels>
- <labels>
- <fullName>Inspection_ID_General</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐐规銉撱儱銉糏D(涓�鑸�):鏈暘鐢�</shortDescription>
- <value>/02i?fcf=00B100000028CuZ</value>
- </labels>
- <labels>
- <fullName>Inspection_ID_LTV</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐐规銉撱儱銉糏D(LTV):鏈暘鐢�</shortDescription>
- <value>/02i?fcf=00B100000028CuK</value>
- </labels>
- <labels>
- <fullName>Inspection_ID_SLTV</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐐规銉撱儱銉糏D(SLTV):鏈暘鐢�</shortDescription>
- <value>/02i?fcf=00B100000028CuF</value>
- </labels>
- <labels>
- <fullName>InspectupTask</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_鐐规</shortDescription>
- <value>01210000000aLnE</value>
- </labels>
- <labels>
- <fullName>Inventory_Result_Email</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>鐩樼偣缁撴灉閭欢鎶勯��</shortDescription>
- <value>ying_liu@olympus.com.cn,xuan_li@olympus.com.cn,haoran_chang@olympus.com.cn,sfdc_lvxueyan@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>Inventory_Result_Email_Copy</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Inventory_Result_Email_Copy</shortDescription>
- <value>youchang@prec-tech.com,sfdc_lvxueyan@olympus.com.cn,sfdc_developer01@olympus.com.cn,lijinhuan@prec-tech.com</value>
- </labels>
- <labels>
- <fullName>Inventory_Result_Email_To</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Inventory_Result_Email_To</shortDescription>
- <value>sfdc_lijinhuan@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>Involved</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>闁㈤�c仚銈�</shortDescription>
- <value>闁㈤�c仚銈�</value>
- </labels>
- <labels>
- <fullName>Job_Category</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鑱风ó</shortDescription>
- <value>鑱风ó</value>
- </labels>
- <labels>
- <fullName>Job_Title</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鑱蜂綅</shortDescription>
- <value>鑱蜂綅</value>
- </labels>
- <labels>
- <fullName>Key_ProductLabel</fullName>
- <categories>閲嶇偣浜у搧</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Key_ProductLabel</shortDescription>
- <value>01.CV-290,02.SIF-H290S,03.涓婃秷鍖栨斁澶у唴闀�,04.涓嬫秷鍖栨斁澶у唴闀�,07.GF-UCT260,09.BF-290闀滃瓙,14.OTV-S400 4K涓绘満,15.OTV-S300,16.CV-170,17.CV-190/OTV-S190,28.ESG-400,29.USG-400,30.TB</value>
- </labels>
- <labels>
- <fullName>Key_Product_Mapping</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴樼暐浜у搧鏄犲皠鍏崇郴</shortDescription>
- <value>{"01.CV-290":"1", "02.SIF-H290S":"2", "03.涓婃秷鍖栨斁澶у唴闀�":"3","04.涓嬫秷鍖栨斁澶у唴闀�":"4","07.GF-UCT260":"7","09.BF-290闀滃瓙":"9","14.OTV-S400 4K涓绘満":"14","15.OTV-S300":"15","28.ESG-400":"28","29.USG-400":"29","34.TB-0535":"20","35.TB-0520":"21"}</value>
- </labels>
- <labels>
- <fullName>LABS_SF_DelQuestion</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Delete Question</shortDescription>
- <value>纭畾瑕佸垹闄よ繖涓棶棰樺悧锛�</value>
- </labels>
- <labels>
- <fullName>LABS_SF_EnterAllFields</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Enter all question fields</shortDescription>
- <value>璇峰~濂芥墍鏈夌殑绌虹櫧</value>
- </labels>
- <labels>
- <fullName>LABS_SF_EnterRequiredFields</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Enter Required fields</shortDescription>
- <value>璇峰洖绛旀墍鏈夊甫锛堝繀濉級鐨勯棶棰�</value>
- </labels>
- <labels>
- <fullName>LABS_SF_FIXED</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>LABS_SF_FIXED</shortDescription>
- <value>Fixed</value>
- </labels>
- <labels>
- <fullName>LABS_SF_MaxLabel</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍓婇櫎浜堝畾</shortDescription>
- <value>Maximum</value>
- </labels>
- <labels>
- <fullName>LABS_SF_MinLabel</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍓婇櫎浜堝畾</shortDescription>
- <value>Minimum</value>
- </labels>
- <labels>
- <fullName>LABS_SF_RequiredDescribe</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Please enter the describe</shortDescription>
- <value>Please enter the lowest and highest describe for the question.</value>
- </labels>
- <labels>
- <fullName>LABS_SF_WrongPhone</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Wrong Phone</shortDescription>
- <value>璇疯緭鍏ユ纭殑鐢佃瘽鍙风爜</value>
- </labels>
- <labels>
- <fullName>Large_Repair_Rank</fullName>
- <categories>澶т腑淇悊_绛夌骇 (闇�瑕佸崐瑙抂,]鍒嗗壊锛屾渶鍚庝竴涓篃瑕佸姞[,])</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶т腑淇悊_绛夌骇</shortDescription>
- <value>A,B,C,AW,BW,CW,E1,EW,M1,M2,M3,</value>
- </labels>
- <labels>
- <fullName>LastBuyUrl</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>棰勭暀浜у搧Url</shortDescription>
- <value>a4v</value>
- </labels>
- <labels>
- <fullName>Last_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鑰呭悕(濮撳悕)</shortDescription>
- <value>瑷晱鑰呭悕(濮撳悕)</value>
- </labels>
- <labels>
- <fullName>LeaderID_Zhu</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瀹㈡埛鎵瑰噯璐熻矗浜篒D</shortDescription>
- <value>00510000001rukvAAA</value>
- </labels>
- <labels>
- <fullName>LeaderId_YD</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>LeaderId_Zhu鐨勬矡閫氬簲绛�</shortDescription>
- <value>0051000000AJrqaAAD,0051000000CLfaV,0051000000E6hXhAAJ</value>
- </labels>
- <labels>
- <fullName>LeaveStaffRole</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>LeaveStaffRole</shortDescription>
- <value>00E10000001VDg2</value>
- </labels>
- <labels>
<fullName>LexArrivegsDetailsPageHelpText</fullName>
<language>zh_CN</language>
<protected>false</protected>
@@ -2127,3025 +15,6 @@
<value>00O0l000000zaGcEAI</value>
</labels>
<labels>
- <fullName>ListPrice</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>ListPrice</shortDescription>
- <value>涓绘姤浠蜂环鏍�</value>
- </labels>
- <labels>
- <fullName>ListPrice_In</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>ListPrice锛堝唴璨匡級</shortDescription>
- <value>ListPrice锛堝唴璨匡級</value>
- </labels>
- <labels>
- <fullName>ListPrice_Out</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>ListPrice锛堝璨匡級</shortDescription>
- <value>ListPrice锛堝璨匡級</value>
- </labels>
- <labels>
- <fullName>ListShipLimit</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ListShipLimit</shortDescription>
- <value>1500</value>
- </labels>
- <labels>
- <fullName>Loading_Report_Chart</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Loading Report Chart</shortDescription>
- <value>姝e湪鍔犺浇鎶ヨ〃鍥捐〃...</value>
- </labels>
- <labels>
- <fullName>Log_IO_Flag</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娴嬭瘯Log杈撳嚭</shortDescription>
- <value>Keep</value>
- </labels>
- <labels>
- <fullName>Lost_Information</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>澶卞崟淇℃伅</shortDescription>
- <value>澶卞崟淇℃伅</value>
- </labels>
- <labels>
- <fullName>MC_All</fullName>
- <categories>缁翠慨鍚堝悓,鏃ユ姤,璺熻繘</categories>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓瑙嗗浘_鏈暘鐢�</shortDescription>
- <value>/a0H?fcf=00B10000003nQlf</value>
- </labels>
- <labels>
- <fullName>MC_KeepPrice_Month</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>MC_KeepPrice_Month</shortDescription>
- <value>3</value>
- </labels>
- <labels>
- <fullName>MC_New_AddMonth</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>MC_New_AddMonth锛�6涓湀鍓嶏級</shortDescription>
- <value>-6</value>
- </labels>
- <labels>
- <fullName>Main_Visit_Location</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>涓汇仾瑷晱鍫存墍</shortDescription>
- <value>涓汇仾瑷晱鍫存墍</value>
- </labels>
- <labels>
- <fullName>MaintenanceTask</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_缁翠慨鍚堝悓浠诲姟</shortDescription>
- <value>01210000000VLJeAAO</value>
- </labels>
- <labels>
- <fullName>Maintenance_EquipmentInfo</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹甠澶囧搧淇℃伅缁存姢閭欢閫楀彿鍒樻窇濞�,瀹嬪啺,寮犲仴</shortDescription>
- <value>'00510000001PXh9AAG','00510000000gLgXAAU','00510000000gLfoAAE'</value>
- </labels>
- <labels>
- <fullName>Maintenance_GuranteePrice</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹甠澶氬勾淇濅环鏍肩淮鎶ら偖浠堕�楀彿鍔犺棨闆呭+锛屾潕浣筹紝瀹嬪啺锛屽紶鏅ㄦ�★紝鏉庢緞浜紝鏉庝紵鑹�</shortDescription>
- <value>'00510000007cnWzAAI','00510000001OHfkAAG','00510000000gLgXAAU','00510000002ZJQTAA4','00510000000gW7MAAU','00510000007cXA9AAM'</value>
- </labels>
- <labels>
- <fullName>Maintenance_ImportantProduct</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹甠閲嶇偣浜у搧鍖哄垎缁存姢閭欢閫楀彿榛勬壙銆侀儹姣撴銆佹补鏅撴櫒</shortDescription>
- <value>'00510000000gWAOAA2','0051000000AJrqaAAD','0051000000AIvdMAAT'</value>
- </labels>
- <labels>
- <fullName>Maintenance_RepairInfo01</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹甠淇悊淇℃伅缁存姢01閭欢閫楀彿瀹嬪啺,楂樻枃鍚�,寮犲仴</shortDescription>
- <value>'0051000000Baw3aAAB','00510000000gLgXAAU','00510000000gLfoAAE'</value>
- </labels>
- <labels>
- <fullName>Maintenance_RepairInfo02</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹甠淇悊淇℃伅缁存姢02閭欢閫楀彿闄堟�濅匠,鏉ㄦ煶,閾冩湪 鍕�</shortDescription>
- <value>'0051000000CLtGtAAL','00510000001tsXJAAY','00510000005oYPaAAM'</value>
- </labels>
- <labels>
- <fullName>Maintenance_base01</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹甠鍩虹01閭欢閫楀彿娌规檽鏅紝閮瘬妤狅紝淇炴緶銆佽碍鑺炽�侀檲灏忓�┿�佷箶鐞︺�佺帇绾㈤湠</shortDescription>
- <value>'0051000000AIvdMAAT','0051000000AJrqaAAD','00510000001OTvQAAW','00510000000gyOJAAY','00510000004qadzAAA','00510000001OTwOAAW','00510000001OTvSAAW'</value>
- </labels>
- <labels>
- <fullName>Maintenance_base02</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹甠鍩虹02閭欢閫楀彿鍒嗛殧Id鍛ㄨ搲銆佹瘯鏄庨懌銆佸叧璐濆Ξ銆佸瘒闈欍�佹潕绱犺姵銆佽档闆洴銆佸畫鐪熴�佹椽鏁忓崕銆佹潕閿�</shortDescription>
- <value>'00510000000gaYyAAI','00510000003MkTbAAK','00510000001O6HoAAK','00510000000gKcjAAE','00510000005dthJAAQ','00510000008pVbWAAU','00510000000gKcAAAU','00510000000gW97AAE','00510000001tsVXAAY'</value>
- </labels>
- <labels>
- <fullName>Maintenance_base03</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹甠鍩虹01閭欢閫楀彿鏉庣粴銆佺帇娴峰銆佺鐜�</shortDescription>
- <value>'0051s0000015y2TAAQ','00510000000gWAQAA2','00510000001rukvAAA'</value>
- </labels>
- <labels>
- <fullName>Meeting_Information</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>浼氳淇℃伅</shortDescription>
- <value>浼氳淇℃伅</value>
- </labels>
- <labels>
- <fullName>Message_001</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>渚℃牸銈广儐銉笺偪銈圭⒑瑾嶇敤</shortDescription>
- <value>鏄庣窗銇ㄣ優銈广偪銇х暟銇倠鍟嗗搧銇屻亗銈娿伨銇欍�傘優銈广偪鍊ゃ伀澶夋洿銇椼伨銇欍亱锛�</value>
- </labels>
- <labels>
- <fullName>Message_002</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇濆瓨銈掑畬浜嗐仐銇俱仐銇熴��</shortDescription>
- <value>淇濆瓨銈掑畬浜嗐仐銇俱仐銇熴��</value>
- </labels>
- <labels>
- <fullName>Message_003</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>娲诲嫊銇墛闄ゃ倰琛屻亜銇俱仚銆傘倛銈嶃仐銇勩仹銇欍亱锛�</shortDescription>
- <value>娲诲嫊銇墛闄ゃ倰琛屻亜銇俱仚銆傘倛銈嶃仐銇勩仹銇欍亱锛�</value>
- </labels>
- <labels>
- <fullName>Message_004</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鈥�255鏂囧瓧銇俱仹鍙兘銇с仚銆�(鏀硅銇�1鏂囧瓧鍒�)</shortDescription>
- <value>鈥�255鏂囧瓧銇俱仹鍙兘銇с仚銆�(鏀硅銇�1鏂囧瓧鍒�)</value>
- </labels>
- <labels>
- <fullName>Message_005</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>纰鸿獚鍑︾悊銈掕銇勩伨銇欍�傘倛銈嶃仐銇勩仹銇欍亱锛�</shortDescription>
- <value>纰鸿獚鍑︾悊銈掕銇勩伨銇欍�傘倛銈嶃仐銇勩仹銇欍亱锛�</value>
- </labels>
- <labels>
- <fullName>Message_EventBefDel</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>琛屽嫊銇墛闄ゃ倰鎶戝埗銇欍倠銉堛儶銈兗鐢�</shortDescription>
- <value>娲诲嫊銇墛闄ゃ仹銇嶃伨銇涖倱</value>
- </labels>
- <labels>
- <fullName>MyConfirmationofAwardTask_Tender</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>涓爣缁撴灉纭浠诲姟</shortDescription>
- <value>/a3V?fcf=00B10000006iHcR</value>
- </labels>
- <labels>
- <fullName>MyDr</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>MyDr銇伩</shortDescription>
- <value>MyDr銇伩</value>
- </labels>
- <labels>
- <fullName>MyLostTask_Tender</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶卞崟浠诲姟鎶ュ憡</shortDescription>
- <value>/a3V?fcf=00B10000006iHcW</value>
- </labels>
- <labels>
- <fullName>NFM001_IsOn</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>NFM001 IsOn</shortDescription>
- <value>1</value>
- </labels>
- <labels>
- <fullName>New</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>New</shortDescription>
- <value>鏂板缓</value>
- </labels>
- <labels>
- <fullName>New_Daily</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏂拌鏃ュ牨</shortDescription>
- <value>鏂拌鏃ュ牨</value>
- </labels>
- <labels>
- <fullName>New_Inquiry</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏂板璇环</shortDescription>
- <value>鏂板璇环</value>
- </labels>
- <labels>
- <fullName>New_Registration</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏂拌鐧婚尣</shortDescription>
- <value>鏂拌鐧婚尣</value>
- </labels>
- <labels>
- <fullName>Next</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>娆°伄</shortDescription>
- <value>娆°伄</value>
- </labels>
- <labels>
- <fullName>No_Province_Selected</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>No Province Selected</shortDescription>
- <value>娌℃湁閫夋嫨鐪併��</value>
- </labels>
- <labels>
- <fullName>No_Text</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐒�</shortDescription>
- <value>鐒�</value>
- </labels>
- <labels>
- <fullName>No_User_Selected</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>No User Selected</shortDescription>
- <value>娌℃湁閫夋嫨鐢ㄦ埛銆�</value>
- </labels>
- <labels>
- <fullName>NotExist_Batch_User</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銆孊atch銆嶃仺銇勩亞銉︺兗銈躲兗銇屽瓨鍦ㄣ仐銇俱仜銈�</shortDescription>
- <value>銆孊atch銆嶃仺銇勩亞銉︺兗銈躲兗銇屽瓨鍦ㄣ仐銇俱仜銈�</value>
- </labels>
- <labels>
- <fullName>NotExist_DeptClass</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐瑾插銇儏鍫便倰鍙栧緱銇с亶銇俱仜銈�</shortDescription>
- <value>鎴︾暐瑾插銇儏鍫便倰鍙栧緱銇с亶銇俱仜銈�</value>
- </labels>
- <labels>
- <fullName>OBA2_opportunity</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OBA2璇环绠$悊</shortDescription>
- <value>00e10000000s2c6</value>
- </labels>
- <labels>
- <fullName>OBA7_tender_opp</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OBA7鎷涙爣+璇环</shortDescription>
- <value>00e10000000s3Jp</value>
- </labels>
- <labels>
- <fullName>OBSAP_Group_Mail</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>obsap閭欢缁勫湴鍧�</shortDescription>
- <value>olympus@prec-tech.com</value>
- </labels>
- <labels>
- <fullName>OBSAP_QuoteIrai_Mail_Detection</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎶ヤ环濮旀墭閭欢妫�娴�</shortDescription>
- <value>fuyu@prec-tech.com,shashiming@prec-tech.com</value>
- </labels>
- <labels>
- <fullName>OCM_Direct</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OCM鐩存帴璨╁2</shortDescription>
- <value>OCM鐩存帴璨╁2</value>
- </labels>
- <labels>
- <fullName>OCM_Management_Province_Mapping</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OCM_Management_Province_Mapping</shortDescription>
- <value>娴欐睙:鏉窞,婀栧寳:姝︽眽,榛戦緳姹�:鍝堝皵婊�,璐靛窞:璐甸槼,浜戝崡:鏄嗘槑,閲嶅簡:閲嶅簡,瀹佸:閾跺窛,娌冲崡:閮戝窞,鏂扮枂:涔岄瞾鏈ㄩ綈,灞变笢:娴庡崡,娌冲寳:鐭冲搴�,澶╂触:澶╂触,瀹夊窘:鍚堣偉,绂忓缓:绂忓窞,姹熻タ:鍗楁槍,姹熻嫃:鍗椾含,鍥涘窛/瑗胯棌:鎴愰兘,娌堥槼:娌堥槼,骞夸笢:骞垮窞,灞辫タ:澶師,婀栧崡:闀挎矙,鍚夋灄:闀挎槬,澶ц繛:澶ц繛,涓婃捣:涓婃捣,鐢樿們:鍏板窞,鍖椾含:鍖椾含,闈掓捣:瑗垮畞,鍐呰挋鍙�:鍛煎拰娴╃壒,闄曡タ:瑗垮畨,骞胯タ:鍗楀畞,娣卞湷:娣卞湷,闈掑矝:闈掑矝</value>
- </labels>
- <labels>
- <fullName>OCM_NoTax</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OCM澹蹭笂浜堟脯閲戦锛堢◣鎶溿亶锛�</shortDescription>
- <value>OCM澹蹭笂浜堟脯閲戦锛堢◣鎶溿亶锛�</value>
- </labels>
- <labels>
- <fullName>ODS_Null_Update_Sign</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ODS绌烘洿鏂版爣绛�</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>OFSErrorDuplication</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OFSErrorDuplication</shortDescription>
- <value>閲嶈鎿嶄綔锛�</value>
- </labels>
- <labels>
- <fullName>OFSErrorFailure</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OFSErrorFailure</shortDescription>
- <value>Failure</value>
- </labels>
- <labels>
- <fullName>OFSErrorMessage</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OFSErrorMessage</shortDescription>
- <value>Message</value>
- </labels>
- <labels>
- <fullName>OFSErrorNotFound</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OFSErrorNotFound</shortDescription>
- <value>No matching record was found</value>
- </labels>
- <labels>
- <fullName>OFSErrorStatus</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OFSErrorStatus</shortDescription>
- <value>status</value>
- </labels>
- <labels>
- <fullName>OFSErrorSuccess</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OFSErrorSuccess</shortDescription>
- <value>Success</value>
- </labels>
- <labels>
- <fullName>OLYProduct</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>濂ユ灄宸存柉浜у搧</shortDescription>
- <value>01210000000aMAF</value>
- </labels>
- <labels>
- <fullName>OLY_delevery_order</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OLY_delevery_order</shortDescription>
- <value>OLYMPUS鍙戣揣璁㈠崟</value>
- </labels>
- <labels>
- <fullName>OPD</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_OPD</shortDescription>
- <value>01210000000cWfX</value>
- </labels>
- <labels>
- <fullName>OPDTPMailboxGroup</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OPD鎷嶇収閭缇ょ粍</shortDescription>
- <value>OCM_Asset@olympus.com.cn;OCM_AssetGZ@olympus.com.cn;OCM_AssetSH@olympus.com.cn;lihuijuan@prec-tech.com</value>
- </labels>
- <labels>
- <fullName>OPD_Report</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OPD_Report</shortDescription>
- <value>00O10000006RfCu</value>
- </labels>
- <labels>
- <fullName>OPD_Report_Jump</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OPD_Report_Jump</shortDescription>
- <value>00O10000006Ro0B</value>
- </labels>
- <labels>
- <fullName>OPD_RunTime</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OPD浠诲姟杩愯鏃堕棿</shortDescription>
- <value>15</value>
- </labels>
- <labels>
- <fullName>OPD_Taiwan</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OPD/SIS</shortDescription>
- <value>OPD/SIS</value>
- </labels>
- <labels>
- <fullName>OPD_Taiwan_RecordType</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OPD銉昏窡鍙�</shortDescription>
- <value>OPD銉昏窡鍙�</value>
- </labels>
- <labels>
- <fullName>OSFBacth_Execute_Day</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Opportunity_Shipments_ForecastBatch鎵ц鏃�</shortDescription>
- <value>1</value>
- </labels>
- <labels>
- <fullName>OSH</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OSH</shortDescription>
- <value>00e10000000hl7wAAA,00e10000000xnoOAAQ</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion1</fullName>
- <categories>4鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗竴涓湀姣旈噸</shortDescription>
- <value>4.5</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion10</fullName>
- <categories>1鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗崄涓湀姣旈噸</shortDescription>
- <value>7.25</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion11</fullName>
- <categories>2鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗崄涓�涓湀姣旈噸</shortDescription>
- <value>4.06</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion12</fullName>
- <categories>3鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗崄浜屼釜鏈堟瘮閲�</shortDescription>
- <value>17.69</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion2</fullName>
- <categories>5鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗簩涓湀姣旈噸</shortDescription>
- <value>5.22</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion3</fullName>
- <categories>6鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗笁涓湀姣旈噸</shortDescription>
- <value>8.28</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion4</fullName>
- <categories>7鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗洓涓湀姣旈噸</shortDescription>
- <value>6.82</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion5</fullName>
- <categories>8鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗簲涓湀姣旈噸</shortDescription>
- <value>7.13</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion6</fullName>
- <categories>9鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗叚涓湀姣旈噸</shortDescription>
- <value>17.05</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion7</fullName>
- <categories>10鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗竷涓湀姣旈噸</shortDescription>
- <value>2.64</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion8</fullName>
- <categories>11鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗叓涓湀姣旈噸</shortDescription>
- <value>6.16</value>
- </labels>
- <labels>
- <fullName>ObjectiveDividedProportion9</fullName>
- <categories>12鏈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>骞村害绗節涓湀姣旈噸</shortDescription>
- <value>13.2</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionBF</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸BF</shortDescription>
- <value>5.7,8.2,7.8,5.3,7.6,16.2,3.2,7.9,11.4,6.2,9.9,10.6</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionENG</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸ENG(钀ヤ笟鏈儴)</shortDescription>
- <value>7.4,4.8,9.5,8.9,8.6,11.6,5.6,8.6,8.3,5.7,9.6,11.4</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionENGENG</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣 鐩爣鐢婚潰姣旈噸ENG(鑳介噺鏈儴)</shortDescription>
- <value>5.9,6.25,5,5.85,8,9,8,11,11.2,9.8,7,13</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionENT</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸ENT</shortDescription>
- <value>7.0,5.8,8.9,4.6,6.9,17.6,4.3,4.7,13.5,9.1,8.1,9.5</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionET</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸ET</shortDescription>
- <value>7.1,6.8,7.8,7.8,10.5,10.8,5.7,8.2,8.6,6.5,8.6,11.6</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionGI</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸GI</shortDescription>
- <value>6.5,5,8.4,5.7,7.3,17.2,3,7,14,3.8,6.6,15.5</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionGS</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸GS</shortDescription>
- <value>6.2,6.5,7.2,6.2,4.7,19.3,2.9,5.2,16.0,5.9,7.2,12.7</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionGYN</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸GYN</shortDescription>
- <value>5.2,6.6,9.9,7.2,6.0,15.9,3.9,4.4,14.2,4.5,8.1,14.1</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionOTH</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸OTH</shortDescription>
- <value>0,0,0,0,0,0,0,0,0,0,0,0</value>
- </labels>
- <labels>
- <fullName>ObjectiveProportionURO</fullName>
- <categories>鐩爣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐩爣鐢婚潰姣旈噸URO</shortDescription>
- <value>7.7,6.6,7.4,4.3,8.0,16.8,3.8,7.2,11.5,4.4,12.0,10.3</value>
- </labels>
- <labels>
- <fullName>OdsToUserEmployee_No</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>涓存椂缁欏嚑涓敤鎴峰悓姝ユ洿鏂�</shortDescription>
- <value>om003898,om003901,om003866,om003908,om003917,om003886,om003881,om003913,om003909,om003910,om003911,om003912,om003904,om003915,om003089,om002651,om002107,aa207798,aa086591,om003888,om003890,om003891,om003865,om003900,om003902,om003903,om003892,om900270,om003905,om003906</value>
- </labels>
- <labels>
- <fullName>Olympus_AccountID_Internal_staff</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Olympus绀惧唴 鍏朵粬 绀惧唴鐢ㄦ埛</shortDescription>
- <value>0011000000eTSPC</value>
- </labels>
- <labels>
- <fullName>Olympus_Dummy_Asset</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绯荤粺绠$悊鐢� Dummy 淇濅綉璁惧</shortDescription>
- <value>02i10000003F6Og</value>
- </labels>
- <labels>
- <fullName>Olympus_Dummy_MC</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绯荤粺绠$悊鐢� Dummy 缁翠慨鍚堝悓</shortDescription>
- <value>a0H1000000JgvcA</value>
- </labels>
- <labels>
- <fullName>Olympus_Dummy_Repair</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绯荤粺绠$悊鐢� Dummy 淇悊</shortDescription>
- <value>a0J1000000GjGef</value>
- </labels>
- <labels>
- <fullName>OnCall_ID</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>OnCall_ID</shortDescription>
- <value>/a0e?fcf=00B100000028ypZ</value>
- </labels>
- <labels>
- <fullName>OppSpecialApply</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璇环娉ㄦ畫鐗规畩瀵瑰簲</shortDescription>
- <value>a3W</value>
- </labels>
- <labels>
- <fullName>OppWithoutConform</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璇环(鏈浆鎹�)</shortDescription>
- <value>/a2Y?fcf=00B10000006hrU6</value>
- </labels>
- <labels>
- <fullName>Opp_Button</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇濆瓨銇椼仸绲備簡</shortDescription>
- <value>淇濆瓨銇椼仸绲備簡</value>
- </labels>
- <labels>
- <fullName>Opp_Name</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><娼滃湪瀹㈡埛>璇环鍚嶇О</shortDescription>
- <value>00N10000002EjE1</value>
- </labels>
- <labels>
- <fullName>Oppor_sepKey</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Oppor_sepKey</shortDescription>
- <value>a2c</value>
- </labels>
- <labels>
- <fullName>Opportunity</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寮曞悎</shortDescription>
- <value>寮曞悎</value>
- </labels>
- <labels>
- <fullName>OpportunityFollow</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_璇环璺熻繘</shortDescription>
- <value>01210000000cWfw</value>
- </labels>
- <labels>
- <fullName>Opportunity_Cancel_WIN_ByAPI</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎺ュ彛浼犲叆璇环鍙栨秷WIN鐞嗙敱</shortDescription>
- <value>1.缁堟鍚堝悓</value>
- </labels>
- <labels>
- <fullName>Opportunity_Columns</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Opportunity_Columns</shortDescription>
- <value>Hospital__c,AccountId,Sales_Root__c,Opportunity_Category__c,Purchase_Type__c,Promise_Class__c,Fund_Basis__c,SAP_Province__c,StageName</value>
- </labels>
- <labels>
- <fullName>Opportunity_Creating</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏃ュ牨鐢婚潰銇仱銇嬨亞銉兗銉変綔鎴�</shortDescription>
- <value>銉兗銉変綔鎴�</value>
- </labels>
- <labels>
- <fullName>Opportunity_stage</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><缁忛攢鍟嗚浠�>璇环闃舵</shortDescription>
- <value>00N10000006qOFb</value>
- </labels>
- <labels>
- <fullName>PAE</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>PAE鍒ゅ畾璁板綍</shortDescription>
- <value>PAE鍒ゅ畾缁撴灉</value>
- </labels>
- <labels>
- <fullName>PIPL_Input_Account_Error_Msg</fullName>
- <categories>PIPL</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>PIPL Input Account Error Msg</shortDescription>
- <value>璇峰厛杈撳叆鎴樼暐绉戝鍒嗙被!</value>
- </labels>
- <labels>
- <fullName>PIPL_Name_Label</fullName>
- <categories>PIPL</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>PIPL Name Label</shortDescription>
- <value>濮撳悕</value>
- </labels>
- <labels>
- <fullName>PIPL_Search_Contact_Label</fullName>
- <categories>PIPL</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>PIPL Search Contact Label</shortDescription>
- <value>璇疯緭鍏ヨ仈绯讳汉濮撳悕...</value>
- </labels>
- <labels>
- <fullName>Paid_A_Courtesy_Call</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绀艰妭鎬ф嫓璁�</shortDescription>
- <value>绀艰妭鎬ф嫓璁�</value>
- </labels>
- <labels>
- <fullName>Paste_IE</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>璨间粯锛圛E銇伩锛�</shortDescription>
- <value>璨间粯</value>
- </labels>
- <labels>
- <fullName>Payment_Block_Leader_DB</fullName>
- <categories>鍒� 鑾硅幑</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓浠樻璁″垝_涓滃寳</shortDescription>
- <value>00510000001O8cHAAS</value>
- </labels>
- <labels>
- <fullName>Payment_Block_Leader_HB</fullName>
- <categories>娲� 璐虹敺</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓浠樻璁″垝_鍗庡寳</shortDescription>
- <value>00510000002ZZTcAAO</value>
- </labels>
- <labels>
- <fullName>Payment_Block_Leader_HD</fullName>
- <categories>闄� 鏄庤禑</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓浠樻璁″垝_鍗庝笢</shortDescription>
- <value>00510000000gW96AAE</value>
- </labels>
- <labels>
- <fullName>Payment_Block_Leader_HN</fullName>
- <categories>鏈� 闈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓浠樻璁″垝_鍗庡崡</shortDescription>
- <value>00510000006jiSoAAI</value>
- </labels>
- <labels>
- <fullName>Payment_Block_Leader_HNVice</fullName>
- <categories>涓� 钑婅姵</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓浠樻璁″垝_鍗庡崡鍓�</shortDescription>
- <value>00510000001OOQTAA4</value>
- </labels>
- <labels>
- <fullName>Payment_Block_Leader_SD</fullName>
- <categories>鑻� 鐚緣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓浠樻璁″垝_灞变笢</shortDescription>
- <value>00510000001O6I6AAK</value>
- </labels>
- <labels>
- <fullName>Payment_Block_Leader_XB</fullName>
- <categories>绁� 鐞洩</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓浠樻璁″垝_瑗垮寳</shortDescription>
- <value>00510000002Y5QWAA0</value>
- </labels>
- <labels>
- <fullName>Payment_Block_Leader_XN</fullName>
- <categories>浣� 瀛︾惣</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁翠慨鍚堝悓浠樻璁″垝_瑗垮崡</shortDescription>
- <value>00510000005V9QGAA0</value>
- </labels>
- <labels>
- <fullName>Pending</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐢宠珛涓�</shortDescription>
- <value>鐢宠珛涓�</value>
- </labels>
- <labels>
- <fullName>Percent</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>锛�</shortDescription>
- <value>锛�</value>
- </labels>
- <labels>
- <fullName>PermissionSet_Createdashboard_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆嗘柊寤轰华琛ㄦ澘鐨処D</shortDescription>
- <value>0PS10000000OeAsGAK</value>
- </labels>
- <labels>
- <fullName>PermissionSet_ENDOPARTNER_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆咵NDOPARTNER浜嬩笟绠$悊閮ㄦ潈闄愮殑ID</shortDescription>
- <value>0PS10000000BVPiGAO</value>
- </labels>
- <labels>
- <fullName>PermissionSet_EditCompetitorAsset_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆嗙珵浜変骇鍝佺紪杈戠殑ID</shortDescription>
- <value>0PS10000000ncweGAA</value>
- </labels>
- <labels>
- <fullName>PermissionSet_Group_purchse_dept_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆嗛泦涓噰璐鐨処D</shortDescription>
- <value>0PS10000000OQSYGA4</value>
- </labels>
- <labels>
- <fullName>PermissionSet_P002_Agent_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆哖002_缁忛攢鍟嗘椿鍔ㄧ殑ID</shortDescription>
- <value>0PS100000007aJhGAI</value>
- </labels>
- <labels>
- <fullName>PermissionSet_P002_OCM_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆哖002_OCM娲诲姩鐨処D</shortDescription>
- <value>0PS100000007aJgGAI</value>
- </labels>
- <labels>
- <fullName>PermissionSet_Plan_report_permission_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆嗚鍒掓姤琛�/浠〃鏉跨殑ID</shortDescription>
- <value>0PS10000000OfVDGA0</value>
- </labels>
- <labels>
- <fullName>PermissionSet_ProductCost_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆嗘煡鐪嬩骇鍝佹垚鏈殑ID</shortDescription>
- <value>0PS10000000ibdqGAA</value>
- </labels>
- <labels>
- <fullName>PermissionSet_Report_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆嗕笅杞芥潈闄�(鎶ヨ〃杩愯鍜屼笅杞�)鐨処D</shortDescription>
- <value>0PS10000000O8KZGA0</value>
- </labels>
- <labels>
- <fullName>PermissionSet_SI_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏉冮檺闆哠I涓撳憳鏉冮檺鐨処D</shortDescription>
- <value>0PS100000007aD8GAI</value>
- </labels>
- <labels>
- <fullName>PersonalId</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>涓汉Id(鍙よ姵鍒�)</shortDescription>
- <value>00510000001OOJx</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_RightSide</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal Evaluation RightSide</shortDescription>
- <value>鍙嶉涓�瑙�</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_RightSide_Report1_1_Name</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_RightSide_Report1_1_Name</shortDescription>
- <value>1.鍙嶉鎶ュ憡鍘嗗彶</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_RightSide_Report1_2_Name</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_RightSide_Report1_2_Name</shortDescription>
- <value>2.绀惧唴鍩硅鍙傚姞鍘嗗彶</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_RightSide_Report1_3_Name</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_RightSide_Report1_3_Name</shortDescription>
- <value>3.CIC璇㈤棶鍘嗗彶</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabBF</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabBF</shortDescription>
- <value>06.鍛煎惛绉�</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabBasic</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabBasic</shortDescription>
- <value>01.鍩虹绠$悊</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabENT</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabENT</shortDescription>
- <value>10.鑰抽蓟鍠夌</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabGI</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabGI</shortDescription>
- <value>05.娑堝寲绉�</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabGS</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabGS</shortDescription>
- <value>07.鏅绉�</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabGYN</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabGYN</shortDescription>
- <value>09.濡囩</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabHP</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabHP</shortDescription>
- <value>03.鍖婚櫌鍒嗘瀽(閿�鍞�)</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabHP_FSE</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabHP_FSE</shortDescription>
- <value>04.鍖婚櫌鍒嗘瀽(鏈嶅姟)</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabNameJ</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabNameJ</shortDescription>
- <value>02.閿�鍞笟缁╁樊寮傚垎鏋�</value>
- </labels>
- <labels>
- <fullName>Personal_Evaluation_TabURO</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Personal_Evaluation_TabURO</shortDescription>
- <value>08.娉屽翱绉�</value>
- </labels>
- <labels>
- <fullName>Planning</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷堢敾</shortDescription>
- <value>瑷堢敾</value>
- </labels>
- <labels>
- <fullName>Planning_DivisionAId</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Planning_DivisionAId</shortDescription>
- <value>005100000068sM8</value>
- </labels>
- <labels>
- <fullName>Please_Save_Quote</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬銈掍繚瀛樸仐銇︺亸銇犮仌銇勩��</shortDescription>
- <value>瑕嬬銈掍繚瀛樸仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>Post</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍖诲斧鍖哄垎锛堝焦鑱凤級</shortDescription>
- <value>鍖诲斧鍖哄垎锛堝焦鑱凤級</value>
- </labels>
- <labels>
- <fullName>Post_to_Install</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瀹夎鏃ュ湪Post鏃ヤ箣鍚�6涓湀鐨勮瘽涓嶇畻鏂板搧</shortDescription>
- <value>6</value>
- </labels>
- <labels>
- <fullName>Present</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璧犻��</shortDescription>
- <value>璧犻��</value>
- </labels>
- <labels>
- <fullName>Price</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>渚℃牸</shortDescription>
- <value>渚℃牸</value>
- </labels>
- <labels>
- <fullName>Price_Text</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Price</shortDescription>
- <value>Price</value>
- </labels>
- <labels>
- <fullName>Price_Valid_Period</fullName>
- <categories>瑕嬬銈傘倞</categories>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬銈傘倞閲戦鏈夊姽鏈熼枔</shortDescription>
- <value>30</value>
- </labels>
- <labels>
- <fullName>Print_Button</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍗板埛</shortDescription>
- <value>鍗板埛</value>
- </labels>
- <labels>
- <fullName>Print_Content</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍗板埛鍐呭</shortDescription>
- <value>鍗板埛鍐呭</value>
- </labels>
- <labels>
- <fullName>Print_HPName</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍗板埛鐥呴櫌鍚嶇О</shortDescription>
- <value>鍗板埛鐥呴櫌鍚嶇О</value>
- </labels>
- <labels>
- <fullName>Pro_RecordType</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绔炲搧涓绘満ID</shortDescription>
- <value>01210000000aMAE</value>
- </labels>
- <labels>
- <fullName>ProductDescription</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑁藉搧瑾槑</shortDescription>
- <value>瑁藉搧瑾槑</value>
- </labels>
- <labels>
- <fullName>ProductImageFolder</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>浜у搧鍥剧墖鏂囦欢澶�</shortDescription>
- <value>00l10000001WZap</value>
- </labels>
- <labels>
- <fullName>ProductRecordTypeID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绔炰簤瀵规墜浜у搧璁板綍绫诲瀷id</shortDescription>
- <value>01210000000aMAE,01210000000aMAD</value>
- </labels>
- <labels>
- <fullName>Product_Code</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍝佺洰銈炽兗銉�</shortDescription>
- <value>鍝佺洰銈炽兗銉�</value>
- </labels>
- <labels>
- <fullName>Product_Date</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐢熸垚浜у搧鏈堥攢閲忚捣濮嬫椂闂�</shortDescription>
- <value>2020-11-01</value>
- </labels>
- <labels>
- <fullName>Product_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍝佺洰鍚�</shortDescription>
- <value>鍝佺洰鍚�</value>
- </labels>
- <labels>
- <fullName>Product_Search</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑁藉搧妞滅储</shortDescription>
- <value>瑁藉搧妞滅储</value>
- </labels>
- <labels>
- <fullName>Product_Select_Limit</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍟嗗搧妫�绱㈢敾闈㈢殑LIMIT鍊�</shortDescription>
- <value>501</value>
- </labels>
- <labels>
- <fullName>Profile2B1UserId</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璺ㄥ尯鍩熷垎閰嶉檰鍚夛紙鍏ㄥ浗锛夈�佺帇浼熸尝锛堜笂娴凤級銆侀偟濠э紙骞垮窞锛夈�佹潕绾㈣暰锛堝寳浜級</shortDescription>
- <value>00510000006jKtH,00510000003Mkv6,005100000069tgu</value>
- </labels>
- <labels>
- <fullName>ProfileId2F2B_2F4</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2F2B_鏈嶅姟绠$悊涓�2F4_鎶�鏈帹杩涢儴绠�妗D</shortDescription>
- <value>00e10000000NbCT,00e10000000xno9,00e10000000Y3o5</value>
- </labels>
- <labels>
- <fullName>ProfileId2S1HP</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S1_閿�鍞尰闄㈡媴褰撶畝妗d</shortDescription>
- <value>00e10000000xnp2AAA</value>
- </labels>
- <labels>
- <fullName>ProfileIdN_2S1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S1_閿�鍞尰闄㈡媴褰� 鐨勭畝妗D锛堥潪鍗曠偣锛�</shortDescription>
- <value>00e10000000xzQ0</value>
- </labels>
- <labels>
- <fullName>ProfileId_0AA_119</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>0AA_119_钀ヤ笟绠$悊閮ㄧ殑绠�妗D</shortDescription>
- <value>00e10000000dE0KAAU</value>
- </labels>
- <labels>
- <fullName>ProfileId_0AA_119_M</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>0AA_119_钀ヤ笟绠$悊閮╛缁忕悊鐨勭畝妗D</shortDescription>
- <value>00e10000000s3ELAAY</value>
- </labels>
- <labels>
- <fullName>ProfileId_103</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId 103</shortDescription>
- <value>00e10000000xnpRAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_2J1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2J1_缁忚惀缁熸嫭绠$悊鑰�(OT)_闈炲崟鐐�</shortDescription>
- <value>00e10000000NbBz</value>
- </labels>
- <labels>
- <fullName>ProfileId_2J3</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2J3_鐗圭害搴楃獥鍙g殑绠�妗D</shortDescription>
- <value>00e10000000Nab7AAC</value>
- </labels>
- <labels>
- <fullName>ProfileId_2M4</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2M4_甯傚満浜у搧鏈儴鎷呭綋(璇环)鐨勭畝妗D</shortDescription>
- <value>00e10000000Nb7iAAC</value>
- </labels>
- <labels>
- <fullName>ProfileId_2M5</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2M5_甯傚満鏈儴绐楀彛</shortDescription>
- <value>00e10000000xyVi</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S1_閿�鍞尰闄㈡媴褰� 鐨勭畝妗D</shortDescription>
- <value>00e10000000xnp2AAA</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S10</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S10_FSE绠$悊鑰呯畝妗D</shortDescription>
- <value>00e10000000s2gXAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S2</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S2_閿�鍞骇鍝佹媴褰撶殑绠�妗D</shortDescription>
- <value>00e10000000xnp7AAA</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S2_Price</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S2_閿�鍞骇鍝佹媴褰�(鏌ョ湅浠锋牸) 鐨勭畝妗D</shortDescription>
- <value>00e10000001220iAAA</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S3</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S3_閿�鍞競鍦�&FSE绠$悊鑰呯殑绠�妗D</shortDescription>
- <value>00e10000000xnpCAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S4</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S4_閿�鍞鐞嗚�呯殑绠�妗D</shortDescription>
- <value>00e10000000xnpHAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S4_Chief</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S4_閿�鍞鐞嗚��(缁熸嫭鎬荤洃)鐨勭畝妗D</shortDescription>
- <value>00e10000000hkasAAA</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S5</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S5_閿�鍞瓼SE鎷呭綋鐨勭畝妗D</shortDescription>
- <value>00e10000000xnpMAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S6</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId_2S6</shortDescription>
- <value>00e10000000xnpRAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S6_ENG</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId_2S6_ENG</shortDescription>
- <value>00e10000000xyK6</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S7</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S7_閿�鍞湰閮ㄥ悎鍚岀鐞嗙獥鍙�</shortDescription>
- <value>00e10000000xnpW</value>
- </labels>
- <labels>
- <fullName>ProfileId_2S8</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S8_閿�鍞鏀垮姪鐞嗙殑绠�妗D</shortDescription>
- <value>00e10000000xnpbAAA</value>
- </labels>
- <labels>
- <fullName>ProfileId_2s6dashboard</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S6_閿�鍞湰閮ㄧ獥鍙�&钀ヤ笟鍔╃悊(璁″垝浠〃鏉�)</shortDescription>
- <value>00e10000000xyK6AAI</value>
- </labels>
- <labels>
- <fullName>ProfileId_EquCenAdmin</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId 2B3_澶囧搧涓績绠$悊鑰�</shortDescription>
- <value>00e10000000xnodAAA,00e100000012CwKAAU</value>
- </labels>
- <labels>
- <fullName>ProfileId_EquCenAdminPic</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId_2B3_澶囧搧涓績绠$悊鑰�(鐓х墖)</shortDescription>
- <value>00e100000012CwKAAU</value>
- </labels>
- <labels>
- <fullName>ProfileId_EquCenCheckAndDepot</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId 2B2_澶囧搧涓績妫�鏌�&浠撳簱</shortDescription>
- <value>00e10000000xnoYAAQ,00e100000012CwPAAU</value>
- </labels>
- <labels>
- <fullName>ProfileId_EquipmentCenter</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId 2B1_澶囧搧涓績绐楀彛</shortDescription>
- <value>00e10000000xnoTAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_GPI_IF</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>ProfileId GPI_IF</shortDescription>
- <value>00e10000000dEQxAAM</value>
- </labels>
- <labels>
- <fullName>ProfileId_IThelp</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绯荤粺绠$悊鍛榑IT鏀彺</shortDescription>
- <value>00e10000000xo1DAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_OBA1zbjd</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OBA1鎷涙爣绠�妗�</shortDescription>
- <value>00e10000000s2fZAAQ</value>
- </labels>
- <labels>
- <fullName>ProfileId_OCSM_QARA1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>118_CFDA锛堣川閲忔硶瑙勬湰閮級鎷呭綋 绠�妗D</shortDescription>
- <value>00e10000000eFwF</value>
- </labels>
- <labels>
- <fullName>ProfileId_OCSM_QARA2</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>118_CFDA锛堣川閲忔硶瑙勬湰閮級绐楀彛 绠�妗D</shortDescription>
- <value>00e10000000dCrn</value>
- </labels>
- <labels>
- <fullName>ProfileId_SystemAdmin</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>ProfileId SystemAdmin</shortDescription>
- <value>00e10000000Y3o5AAC</value>
- </labels>
- <labels>
- <fullName>ProfileId_SystemAdmin2</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId_SystemAdmin2</shortDescription>
- <value>00e10000000xyK6,00e10000000xnpR,00e10000000s2c6</value>
- </labels>
- <labels>
- <fullName>ProfileId_SystemAdminGPI</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ProfileId_SystemAdminGPI</shortDescription>
- <value>00e10000000dEQxAAM</value>
- </labels>
- <labels>
- <fullName>Profile_Skip_OneToOneCheck</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Profile_璺宠繃寰呭簾寮冩椂涓�瀵逛竴link楠岃瘉</shortDescription>
- <value>00e100000012CwK</value>
- </labels>
- <labels>
- <fullName>Province</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Province</shortDescription>
- <value>鐪�</value>
- </labels>
- <labels>
- <fullName>ProvinceOrder_for_Evaluation</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐪佷竴瑙堥『搴忥紙鎸夌渷浠〃鏉匡級</shortDescription>
- <value>鍖椾含甯�,娌冲寳鐪�,澶╂触甯�,鍐呰挋鍙�,灞变笢鐪�,闈掑矝甯�,榛戦緳姹熺渷,鍚夋灄鐪�,杈藉畞鐪�,澶ц繛甯�,闄曡タ鐪�,灞辫タ鐪�,娌冲崡鐪�,闈掓捣鐪�,瀹佸鑷不鍖�,鏂扮枂鑷不鍖�,鐢樿們鐪�,鍥涘窛鐪�,瑗胯棌鑷不鍖�,閲嶅簡甯�,璐靛窞鐪�,浜戝崡鐪�,涓婃捣甯�,姹熻嫃鐪�,姹熻タ鐪�,绂忓缓鐪�,娴欐睙鐪�,瀹夊窘鐪�,骞夸笢鐪�,娣卞湷甯�,娴峰崡鐪�,骞胯タ鑷不鍖�,婀栧寳鐪�,婀栧崡鐪�</value>
- </labels>
- <labels>
- <fullName>Purchase_Reason</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><缁忛攢鍟嗚浠�>璐拱鐞嗙敱</shortDescription>
- <value>00N10000008rqHf</value>
- </labels>
- <labels>
- <fullName>Purchase_Type</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><缁忛攢鍟嗚浠�>璁㈣揣娴佺▼绫诲埆</shortDescription>
- <value>00N10000008rqHg</value>
- </labels>
- <labels>
- <fullName>Purpose</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐩殑</shortDescription>
- <value>鐩殑</value>
- </labels>
- <labels>
- <fullName>Quantity</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏁伴噺</shortDescription>
- <value>鏁伴噺</value>
- </labels>
- <labels>
- <fullName>QuoteDecision_Button</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬姹哄畾</shortDescription>
- <value>瑕嬬姹哄畾</value>
- </labels>
- <labels>
- <fullName>QuoteEntryMaxLine</fullName>
- <categories>瑕佸~姝f暣鏁帮紝鎶ヤ环鐢婚潰锛屾姤浠蜂緷璧栫敾闈�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎶ヤ环鐢婚潰鏈�澶ц鏁�</shortDescription>
- <value>150</value>
- </labels>
- <labels>
- <fullName>QuoteEntryMaxLine2</fullName>
- <categories>瑕佸~姝f暣鏁帮紝鎶ヤ环鐢婚潰</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎶ヤ环鐢婚潰鏈�澶ц鏁�(鍙姤浠风敤)</shortDescription>
- <value>30</value>
- </labels>
- <labels>
- <fullName>Quote_AddressName</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>渚涜揣鍟�</shortDescription>
- <value>渚涜揣鍟�</value>
- </labels>
- <labels>
- <fullName>Quote_Adjustment</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬瑾挎暣閲戦</shortDescription>
- <value>瑕嬬瑾挎暣閲戦</value>
- </labels>
- <labels>
- <fullName>Quote_Amount</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閲戦</shortDescription>
- <value>閲戦</value>
- </labels>
- <labels>
- <fullName>Quote_Client_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>椤у鍚�</shortDescription>
- <value>椤у鍚�</value>
- </labels>
- <labels>
- <fullName>Quote_Comment</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬琛ㄨ銈炽儭銉炽儓</shortDescription>
- <value>瑕嬬琛ㄨ銈炽儭銉炽儓</value>
- </labels>
- <labels>
- <fullName>Quote_Currency</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閫氳波</shortDescription>
- <value>閫氳波</value>
- </labels>
- <labels>
- <fullName>Quote_Department</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绉戝</shortDescription>
- <value>绉戝</value>
- </labels>
- <labels>
- <fullName>Quote_Expiration_Date</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鏈夊姽鏈熼檺</shortDescription>
- <value>瑕嬬鏈夊姽鏈熼檺</value>
- </labels>
- <labels>
- <fullName>Quote_Expiration_Date_Print</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鏈夊姽鏈熼檺</shortDescription>
- <value>瑕嬬鏈夊姽鏈熼檺</value>
- </labels>
- <labels>
- <fullName>Quote_Expirationdate</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鏈夊姽鏈熼檺鏃�</shortDescription>
- <value>瑕嬬鏈夊姽鏈熼檺鏃�</value>
- </labels>
- <labels>
- <fullName>Quote_Mobile_Phone</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎼哄腐</shortDescription>
- <value>鎼哄腐</value>
- </labels>
- <labels>
- <fullName>Quote_Owner</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鎷呭綋</shortDescription>
- <value>瑕嬬鎷呭綋</value>
- </labels>
- <labels>
- <fullName>Quote_Owner_Signature</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鎷呭綋缃插悕</shortDescription>
- <value>瑕嬬鎷呭綋缃插悕</value>
- </labels>
- <labels>
- <fullName>Quote_PackingListManual</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍖呰瑙勬牸</shortDescription>
- <value>鍖呰瑙勬牸</value>
- </labels>
- <labels>
- <fullName>Quote_Print</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鍗板埛</shortDescription>
- <value>瑕嬬鍗板埛</value>
- </labels>
- <labels>
- <fullName>Quote_ProduceCompany</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐢熶骇浼佷笟</shortDescription>
- <value>鐢熶骇浼佷笟</value>
- </labels>
- <labels>
- <fullName>Quote_Product_Code</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍟嗗搧銈炽兗銉�</shortDescription>
- <value>鍟嗗搧銈炽兗銉�</value>
- </labels>
- <labels>
- <fullName>Quote_Product_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍟嗗搧鍚�</shortDescription>
- <value>鍟嗗搧鍚�</value>
- </labels>
- <labels>
- <fullName>Quote_SFDA_Approbation_No</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娉ㄥ唽璇佸彿/澶囨鍑瘉缂栧彿</shortDescription>
- <value>娉ㄥ唽璇佸彿/澶囨鍑瘉缂栧彿</value>
- </labels>
- <labels>
- <fullName>Quote_SalesPackagingUnit</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍗曚綅</shortDescription>
- <value>鍗曚綅</value>
- </labels>
- <labels>
- <fullName>Quote_Title</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>寰¤绌嶆浉</shortDescription>
- <value>寰¤绌嶆浉</value>
- </labels>
- <labels>
- <fullName>Quote_TotalPrice</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎬婚噾棰�</shortDescription>
- <value>鎬婚噾棰�</value>
- </labels>
- <labels>
- <fullName>Quote_UnitPrice</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍗曚环</shortDescription>
- <value>鍗曚环</value>
- </labels>
- <labels>
- <fullName>Quoto_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鍚嶇О</shortDescription>
- <value>瑕嬬鍚嶇О</value>
- </labels>
- <labels>
- <fullName>Quoto_No</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬鐣彿</shortDescription>
- <value>瑕嬬鐣彿</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail1_Inventory</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏1_鐩樼偣</shortDescription>
- <value>01210000000kUD5</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail1_Invoice</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏1_鍙戠エ</shortDescription>
- <value>01210000000kUDA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail1_Order</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏1_璁㈠崟</shortDescription>
- <value>01210000000kUCl</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail1_Sale</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏1_閿�鍞�</shortDescription>
- <value>01210000000kUD0</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail1_Shipment</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏1_鍑哄簱</shortDescription>
- <value>01210000000kUCv</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail2_Delivery</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏2_鍙戣揣</shortDescription>
- <value>01210000000kUDK</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail2_Return</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏2_杩斿搧</shortDescription>
- <value>01210000000kUDP</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail_Adjust</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏_鍦ㄥ簱璋冩暣</shortDescription>
- <value>01210000000c9dwAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail_Arrive</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏_鍒拌揣</shortDescription>
- <value>01210000000c9dxAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail_Delivery</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏_鍙戣揣</shortDescription>
- <value>01210000000c9dyAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail_Inventory</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏_鐩樼偣</shortDescription>
- <value>01210000000c9dzAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail_Invoice</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏_鍙戠エ</shortDescription>
- <value>012100000006JxJAAU</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail_Order</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏_璁㈠崟</shortDescription>
- <value>01210000000c9e0AAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail_Sale</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏_閿�鍞�</shortDescription>
- <value>01210000000c9e1AAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrderDetail_Shipment</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏄庣粏_鍑哄簱</shortDescription>
- <value>01210000000c9e2AAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Arrive</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟 鍒拌揣</shortDescription>
- <value>01210000000c9dqAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Delivery</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟 鍙戣揣</shortDescription>
- <value>01210000000c9drAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Inventory</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟 鐩樼偣</shortDescription>
- <value>01210000000c9dsAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Invoice</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟 鍙戠エ</shortDescription>
- <value>012100000006JxEAAU</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Order</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟 璁㈠崟</shortDescription>
- <value>01210000000c9dtAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Outboundorder</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟 鍑哄簱鍗�</shortDescription>
- <value>012100000006Jx9AAE</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Overdue</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟_閿�瀛�</shortDescription>
- <value>01210000000cWbV</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Sale</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟 閿�鍞�</shortDescription>
- <value>01210000000c9duAAA</value>
- </labels>
- <labels>
- <fullName>RT_ConOrder_Shipment</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璁㈠崟 鍑鸿揣</shortDescription>
- <value>01210000000c9dvAAA</value>
- </labels>
- <labels>
- <fullName>Random_PW_NG</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Random PW NG</shortDescription>
- <value>闅忔満瀵嗙爜鐢熸垚澶辫触锛岃鑱旂郴绯荤粺绠$悊鍛�</value>
- </labels>
- <labels>
- <fullName>Random_PW_OK</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Random PW OK</shortDescription>
- <value>闅忔満瀵嗙爜鐢熸垚鎴愬姛锛岃鏌ユ敹閭欢锛屽苟鐢ㄩ偖浠朵腑闄勫甫鐨勫瘑鐮佹墦寮�Excel</value>
- </labels>
- <labels>
- <fullName>Rate75_63</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Rate75_63</shortDescription>
- <value>0.8076915</value>
- </labels>
- <labels>
- <fullName>Rate75_65</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Rate75_65</shortDescription>
- <value>0.8333325</value>
- </labels>
- <labels>
- <fullName>Rate75_66</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Rate75_66</shortDescription>
- <value>0.846153</value>
- </labels>
- <labels>
- <fullName>Rate75_68</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Rate75_68</shortDescription>
- <value>0.871794</value>
- </labels>
- <labels>
- <fullName>Rate83_63</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Rate83_63</shortDescription>
- <value>0.7590366</value>
- </labels>
- <labels>
- <fullName>Rate83_65</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Rate83_65</shortDescription>
- <value>0.783133</value>
- </labels>
- <labels>
- <fullName>Rate83_66</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Rate83_66</shortDescription>
- <value>0.7951812</value>
- </labels>
- <labels>
- <fullName>Rate83_68</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Rate83_68</shortDescription>
- <value>0.8192776</value>
- </labels>
- <labels>
- <fullName>ReceivingNoteWaitingReceipt_Show_Count</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>ReceivingNoteWaitingReceipt_Show_Count</shortDescription>
- <value>100,300:100</value>
- </labels>
- <labels>
- <fullName>RecordType_8</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎴︾暐绉戝鍒嗛 涓嶆槑</shortDescription>
- <value>01210000000Qf03</value>
- </labels>
- <labels>
- <fullName>RecordType_CampaignService</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏈嶅姟鎶�甯堣褰旾D</shortDescription>
- <value>01210000000gQrTAAU</value>
- </labels>
- <labels>
- <fullName>Registration</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐧婚尣</shortDescription>
- <value>鐧婚尣</value>
- </labels>
- <labels>
- <fullName>Rental_Apply_Status_Settlement</fullName>
- <categories>澶囧搧鍊熷嚭鐢宠,鎬�</categories>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Rental_Apply_Status_Settlement</shortDescription>
- <value>寮曞綋娓堛伩</value>
- </labels>
- <labels>
- <fullName>Rental_Apply_id</fullName>
- <categories>鍕垮姩</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍒嗛厤id</shortDescription>
- <value>a0t1000000B0LFmAAN</value>
- </labels>
- <labels>
- <fullName>RepairETQ</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>淇悊鍙戦�丒TQ杩囧ぇ鍙戦�侀偖浠�</shortDescription>
- <value>haijie_yin@olympus.com.cn,mengxin_zhou@olympus.com.cn,mingmeng_jian@olympus.com.cn,ningdan_song@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>RepairUpdateTo</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>淇悊閭欢To</shortDescription>
- <value>Yang_Guo@olympus.com.cn;Qiqing_Li@olympus.com.cn;Yucheng_Hu@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>RepairUpdatecc</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>淇悊鏇存柊cc</shortDescription>
- <value>hui_zhao@olympus.com.cn;Jiao_Liu@olympus.com.cn;Renren_Zhao@olympus.com.cn;Wenzhe_Li@olympus.com.cn;xiaoben_huang@Olympus.com.cn;Xiaomeng1_Liu@olympus.com.cn;Xin_Tan@olympus.com.cn;Yi_Yang@olympus.com.cn;Zihua_Ye@olympus.com.cn;Mengxin_Zhou@olympus.com.cn;MingMeng_Jian@olympus.com.cn;NingDan_Song@olympus.com.cn;Xinjian_Lei@olympus.com.cn;Haijie_Yin@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>Repair_All</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇悊銉撱儱銉糏D(銇濄伄浠�):鏈暘鐢�</shortDescription>
- <value>/a0J?fcf=00B100000028Rmd</value>
- </labels>
- <labels>
- <fullName>Repair_ID_General</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇悊銉撱儱銉糏D(涓�鑸�):鏈暘鐢�</shortDescription>
- <value>/a0J?fcf=00B100000028u9M</value>
- </labels>
- <labels>
- <fullName>Repair_ID_LTV</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇悊銉撱儱銉糏D(LTV):鏈暘鐢�</shortDescription>
- <value>/a0J?fcf=00B100000028u9H</value>
- </labels>
- <labels>
- <fullName>Repair_ID_SLTV</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇悊銉撱儱銉糏D(SLTV):鏈暘鐢�</shortDescription>
- <value>/a0J?fcf=00B100000028u9C</value>
- </labels>
- <labels>
- <fullName>Repair_Recovery</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇悊鍥炲弾</shortDescription>
- <value>淇悊鍥炲弾</value>
- </labels>
- <labels>
- <fullName>Report_Accompanied</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍚岃鍫卞憡鏇�</shortDescription>
- <value>鍚岃鍫卞憡鏇�</value>
- </labels>
- <labels>
- <fullName>Report_Returned_No_Results</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Report Returned No Results</shortDescription>
- <value>鎶ヨ〃鏈繑鍥炵粨鏋溿��</value>
- </labels>
- <labels>
- <fullName>Reporter</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍫卞憡鑰�</shortDescription>
- <value>鍫卞憡鑰�</value>
- </labels>
- <labels>
- <fullName>Request</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><缁忛攢鍟嗚浠�>濮旀墭浜嬮」</shortDescription>
- <value>00N10000008rqHi</value>
- </labels>
- <labels>
- <fullName>Request_Detail</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><缁忛攢鍟嗚浠�>濮旀墭浜嬮」璇︾粏</shortDescription>
- <value>00N10000008rqHh</value>
- </labels>
- <labels>
- <fullName>Required_Information</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>蹇呴爤鎯呭牨</shortDescription>
- <value>蹇呴爤鎯呭牨</value>
- </labels>
- <labels>
- <fullName>Row_Down</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>琛孌OWN</shortDescription>
- <value>琛孌OWN</value>
- </labels>
- <labels>
- <fullName>Row_Total_Sum</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>浼樻儬鎴愪氦浠�</shortDescription>
- <value>浼樻儬鎴愪氦浠�</value>
- </labels>
- <labels>
- <fullName>Row_Up</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>琛孶P</shortDescription>
- <value>琛孶P</value>
- </labels>
- <labels>
- <fullName>SAPSend_Button</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>SAP閫佷俊</shortDescription>
- <value>SAP閫佷俊</value>
- </labels>
- <labels>
- <fullName>SFDA_Status</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>SFDA銈广儐銉笺偪銈�</shortDescription>
- <value>SFDA銈广儐銉笺偪銈�</value>
- </labels>
- <labels>
- <fullName>SI_2M3_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2M3_SI閮ㄩ棬鎷呭綋id鍊�</shortDescription>
- <value>00e10000000NakPAAS</value>
- </labels>
- <labels>
- <fullName>SI_Group_MailAdd</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI缁勯偖浠跺湴鍧�</shortDescription>
- <value>si_yingye@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>SI_Opp_Sec_1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI璇环_鍗庡寳鎷呭綋</shortDescription>
- <value>0051000000AJrmJ</value>
- </labels>
- <labels>
- <fullName>SI_Opp_Sec_2</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI璇环_涓滃寳鎷呭綋</shortDescription>
- <value>00510000007hBuy</value>
- </labels>
- <labels>
- <fullName>SI_Opp_Sec_3</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI璇环_瑗垮寳鎷呭綋</shortDescription>
- <value>00510000005V2cA</value>
- </labels>
- <labels>
- <fullName>SI_Opp_Sec_4</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI璇环_瑗垮崡鎷呭綋</shortDescription>
- <value>00510000007hBuy</value>
- </labels>
- <labels>
- <fullName>SI_Opp_Sec_5</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI璇环_鍗庝笢鎷呭綋</shortDescription>
- <value>00510000001QRls</value>
- </labels>
- <labels>
- <fullName>SI_Opp_Sec_6</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI璇环_鍗庡崡鎷呭綋</shortDescription>
- <value>00510000001OOQW</value>
- </labels>
- <labels>
- <fullName>SI_Stock_HD</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI_澶囪揣瀹℃壒浜篲鍗庝笢</shortDescription>
- <value>00510000004pMLo</value>
- </labels>
- <labels>
- <fullName>SI_Stock_HDHN</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI_澶囪揣瀹℃壒浜篲涓滃寳瑗垮崡</shortDescription>
- <value>00510000007hBuy</value>
- </labels>
- <labels>
- <fullName>SI_Stock_XBXN</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI_澶囪揣瀹℃壒浜篲瑗垮寳</shortDescription>
- <value>0051000000AJrmJ</value>
- </labels>
- <labels>
- <fullName>SLA</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_SLA</shortDescription>
- <value>01210000000VLZO</value>
- </labels>
- <labels>
- <fullName>SSBacth_Execute_Day</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SSBacth鎵ц鏃�</shortDescription>
- <value>1</value>
- </labels>
- <labels>
- <fullName>SSOPD_Report</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SSOPD_Report</shortDescription>
- <value>00O10000006RfD9</value>
- </labels>
- <labels>
- <fullName>SalesDept</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SalesDept</shortDescription>
- <value>閿�鍞湰閮�</value>
- </labels>
- <labels>
- <fullName>SalesDept_Short</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SalesDept_Short</shortDescription>
- <value>鏈儴</value>
- </labels>
- <labels>
- <fullName>Sales_And_Service</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閿�鍞湇鍔�</shortDescription>
- <value>閿�鍞湇鍔�</value>
- </labels>
- <labels>
- <fullName>Sales_Div</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>璨╁2鍖哄垎</shortDescription>
- <value>璨╁2鍖哄垎</value>
- </labels>
- <labels>
- <fullName>Sales_Market</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閿�鍞競鍦�</shortDescription>
- <value>閿�鍞競鍦�</value>
- </labels>
- <labels>
- <fullName>Sales_Method</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><缁忛攢鍟嗚浠�>鎷涙爣鏂瑰紡</shortDescription>
- <value>00N10000008rqHj</value>
- </labels>
- <labels>
- <fullName>Sales_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍚嶇О</shortDescription>
- <value>鍚嶇О</value>
- </labels>
- <labels>
- <fullName>Sales_Name1</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绗竴璨╁2搴�</shortDescription>
- <value>绗竴璨╁2搴�</value>
- </labels>
- <labels>
- <fullName>Sales_Name2</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>绗簩璨╁2搴�</shortDescription>
- <value>绗簩璨╁2搴�</value>
- </labels>
- <labels>
- <fullName>Sales_Outlet</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>璨╁2搴�</shortDescription>
- <value>璨╁2搴�</value>
- </labels>
- <labels>
- <fullName>Sales_Profit</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍒╃泭</shortDescription>
- <value>鍒╃泭</value>
- </labels>
- <labels>
- <fullName>Sales_Promotion</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閿�鍞帹骞�</shortDescription>
- <value>閿�鍞帹骞�</value>
- </labels>
- <labels>
- <fullName>Sales_Root</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>璨╁2銉兗銉�</shortDescription>
- <value>璨╁2銉兗銉�</value>
- </labels>
- <labels>
- <fullName>Sales_Window_DB</fullName>
- <categories>璇环</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閿�鍞儴绐楀彛涓滃寳-鍏宠礉濡�</shortDescription>
- <value>00510000001O6Ho</value>
- </labels>
- <labels>
- <fullName>Sales_Window_HB</fullName>
- <categories>璇环</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閿�鍞儴绐楀彛鍗庡寳-鍛ㄨ搲</shortDescription>
- <value>00510000000gaYy</value>
- </labels>
- <labels>
- <fullName>Sales_Window_HD</fullName>
- <categories>璇环</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閿�鍞儴绐楀彛鍗庝笢-瀹嬬湡</shortDescription>
- <value>00510000000gKcA</value>
- </labels>
- <labels>
- <fullName>Sales_Window_HN</fullName>
- <categories>璇环</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閿�鍞儴绐楀彛鍗庡崡-鏉庨攼</shortDescription>
- <value>00510000001tsVX</value>
- </labels>
- <labels>
- <fullName>Sales_Window_XB</fullName>
- <categories>璇环</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閿�鍞儴绐楀彛瑗垮寳-瀵囬潤</shortDescription>
- <value>00510000000gKcj</value>
- </labels>
- <labels>
- <fullName>Sales_Window_XN</fullName>
- <categories>璇环</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閿�鍞儴绐楀彛瑗垮崡-浣欑弬</shortDescription>
- <value>00510000000gW9c</value>
- </labels>
- <labels>
- <fullName>SameAccessory_CannotSync</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍚屼竴闄勫睘鍝佷笉鑳藉悓鏃舵洿鏂�</shortDescription>
- <value>閰嶅閲屽凡缁忔湁琚彇娑堢殑闄勫睘鍝侊紝涓嶈兘杩藉姞闄勫睘鍝侊紝璇峰厛鍙栨秷鍚屼竴闄勫睘鍝佺殑鍕鹃��</value>
- </labels>
- <labels>
- <fullName>Save</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇濆瓨</shortDescription>
- <value>淇濆瓨</value>
- </labels>
- <labels>
- <fullName>SaveAndNew</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>SaveAndNew</shortDescription>
- <value>淇濆瓨骞舵柊寤�</value>
- </labels>
- <labels>
- <fullName>SaveComment</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙嶉淇濆瓨</shortDescription>
- <value>鍙嶉淇濆瓨</value>
- </labels>
- <labels>
- <fullName>Save_Back</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇濆瓨銇椼仸鎴汇倠</shortDescription>
- <value>淇濆瓨銇椼仸鎴汇倠</value>
- </labels>
- <labels>
- <fullName>Save_Button</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇濆瓨</shortDescription>
- <value>淇濆瓨</value>
- </labels>
- <labels>
- <fullName>Save_Completion</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇濆瓨銇屽畬浜嗐仐銇俱仐銇熴��</shortDescription>
- <value>淇濆瓨銇屽畬浜嗐仐銇俱仐銇熴��</value>
- </labels>
- <labels>
- <fullName>Search</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>妞滅储</shortDescription>
- <value>妞滅储</value>
- </labels>
- <labels>
- <fullName>Search_Condition</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>妞滅储鏉′欢</shortDescription>
- <value>妞滅储鏉′欢</value>
- </labels>
- <labels>
- <fullName>Search_Personnel</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎷呭綋鑰呮绱�</shortDescription>
- <value>鎷呭綋鑰呮绱�</value>
- </labels>
- <labels>
- <fullName>Search_Result</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>妞滅储绲愭灉</shortDescription>
- <value>妞滅储绲愭灉</value>
- </labels>
- <labels>
- <fullName>Select</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閫夋嫨</shortDescription>
- <value>閫夋嫨</value>
- </labels>
- <labels>
- <fullName>Select_User</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Select User</shortDescription>
- <value>閫夋嫨鐢ㄦ埛</value>
- </labels>
- <labels>
- <fullName>Selected</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>閬告姙</shortDescription>
- <value>閬告姙</value>
- </labels>
- <labels>
- <fullName>Send_Mail</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銉°兗銉�佷俊</shortDescription>
- <value>銉°兗銉�佷俊</value>
- </labels>
- <labels>
- <fullName>ServiceDesignDep_EC</fullName>
- <categories>鐢ㄥ湪鏈嶅姟鎶�甯堝煿璁� 涓婄嚎娴嬭瘯鐜鏃惰寰楁敼涓洪儹绾㈠博</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏈嶅姟浼佸垝閮ㄧ獥鍙�(5.鍗庝笢)</shortDescription>
- <value>0051000000CLXtjAAH</value>
- </labels>
- <labels>
- <fullName>ServiceDesignDep_NC</fullName>
- <categories>鐢ㄥ湪鏈嶅姟鎶�甯堝煿璁� 涓婄嚎娴嬭瘯鐜鏃惰寰楁敼涓洪儹绾㈠博</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏈嶅姟浼佸垝閮ㄧ獥鍙�(1.鍗庡寳)</shortDescription>
- <value>0051000000CLXtjAAH</value>
- </labels>
- <labels>
- <fullName>ServiceDesignDep_NE</fullName>
- <categories>鐢ㄥ湪鏈嶅姟鎶�甯堝煿璁� 涓婄嚎娴嬭瘯鐜鏃惰寰楁敼涓洪儹绾㈠博</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏈嶅姟浼佸垝閮ㄧ獥鍙�(2.涓滃寳)</shortDescription>
- <value>0051000000CLXtjAAH</value>
- </labels>
- <labels>
- <fullName>ServiceDesignDep_NW</fullName>
- <categories>鐢ㄥ湪鏈嶅姟鎶�甯堝煿璁� 涓婄嚎娴嬭瘯鐜鏃惰寰楁敼涓洪儹绾㈠博</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏈嶅姟浼佸垝閮ㄧ獥鍙�(3.瑗垮寳)</shortDescription>
- <value>0051000000CLXtjAAH</value>
- </labels>
- <labels>
- <fullName>ServiceDesignDep_SC</fullName>
- <categories>鐢ㄥ湪鏈嶅姟鎶�甯堝煿璁� 涓婄嚎娴嬭瘯鐜鏃惰寰楁敼閮孩宀�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏈嶅姟浼佸垝閮ㄧ獥鍙�(6.鍗庡崡)</shortDescription>
- <value>0051000000CLXtjAAH</value>
- </labels>
- <labels>
- <fullName>ServiceDesignDep_SW</fullName>
- <categories>鐢ㄥ湪鏈嶅姟鎶�甯堝煿璁� 涓婄嚎娴嬭瘯鐜鏃惰寰楁敼涓洪儹绾㈠博</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏈嶅姟浼佸垝閮ㄧ獥鍙�(4.瑗垮崡)</shortDescription>
- <value>0051000000CLXtjAAH</value>
- </labels>
- <labels>
- <fullName>ServiceMainTaskPageSize</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娑堣垂鐜囬璀︽瘡椤垫暟閲�</shortDescription>
- <value>100</value>
- </labels>
- <labels>
- <fullName>Service_Agreement</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈点兗銉撱偣濂戠磩</shortDescription>
- <value>銈点兗銉撱偣濂戠磩</value>
- </labels>
- <labels>
- <fullName>Set</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷畾</shortDescription>
- <value>瑷畾</value>
- </labels>
- <labels>
- <fullName>SetPersonalTargetBatch_Flag</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SetPersonalTargetBatch鐨勫紑鍏�---鍕垮姩</shortDescription>
- <value>true</value>
- </labels>
- <labels>
- <fullName>SetPersonalTarget_buffer_day</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>4鏈堜唤鍙互缂栬緫涓汉鐩爣澶╂暟</shortDescription>
- <value>15</value>
- </labels>
- <labels>
- <fullName>Set_Code</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈汇儍銉堛偝銉笺儔</shortDescription>
- <value>銈汇儍銉堛偝銉笺儔</value>
- </labels>
- <labels>
- <fullName>Set_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈汇儍銉堝搧鍚�</shortDescription>
- <value>銈汇儍銉堝搧鍚�</value>
- </labels>
- <labels>
- <fullName>Set_Product</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈汇儍銉堣=鍝併亱銈夌櫥閷�</shortDescription>
- <value>銈汇儍銉堣=鍝併亱銈夌櫥閷�</value>
- </labels>
- <labels>
- <fullName>Set_Search</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈汇儍銉堝搧妞滅储</shortDescription>
- <value>銈汇儍銉堝搧妞滅储</value>
- </labels>
- <labels>
- <fullName>ShanghaiEmai</fullName>
- <categories>EmailText</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>ShanghaiEmai</shortDescription>
- <value>ocm_assetsh@olympus.com.cn.partial</value>
- </labels>
- <labels>
- <fullName>ShowLastYear_DefermentDay</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍘诲勾搴︽暟鎹紙缂撴湡鏃ワ級锛岃繖涓棩鍓嶇殑璇濓紝鏄剧ず鍘诲勾搴︽暟鎹�</shortDescription>
- <value>10</value>
- </labels>
- <labels>
- <fullName>SmarmClipNum</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>SMARM鐨凜lip涓婇檺</shortDescription>
- <value>50</value>
- </labels>
- <labels>
- <fullName>Soakup_NotExecute_Day</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SoakupHPDeptBatch 涓嶆墽琛屾棩</shortDescription>
- <value>18</value>
- </labels>
- <labels>
- <fullName>Solution_DB</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2.涓滃寳钀ヤ笟绐楀彛</shortDescription>
- <value>00510000001OOSZ</value>
- </labels>
- <labels>
- <fullName>Solution_HB</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>1.鍗庡寳钀ヤ笟绐楀彛</shortDescription>
- <value>00510000001OOLj</value>
- </labels>
- <labels>
- <fullName>Solution_HD</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>5.鍗庝笢钀ヤ笟绐楀彛</shortDescription>
- <value>00510000000gW9G</value>
- </labels>
- <labels>
- <fullName>Solution_HN</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>6.鍗庡崡钀ヤ笟绐楀彛</shortDescription>
- <value>0051000000AJIrD</value>
- </labels>
- <labels>
- <fullName>Solution_XB</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>3.瑗垮寳钀ヤ笟绐楀彛</shortDescription>
- <value>00510000007kteE</value>
- </labels>
- <labels>
- <fullName>Solution_XN</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>4.瑗垮崡钀ヤ笟绐楀彛</shortDescription>
- <value>00510000001OORm</value>
- </labels>
- <labels>
- <fullName>Specifications</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>瑙勬牸</shortDescription>
- <value>瑙勬牸</value>
- </labels>
- <labels>
- <fullName>StartTrading_Alert</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛偄銉┿兗銉堛儭銉冦偦銉笺偢锛�</shortDescription>
- <value>瑷虹檪绉戝悕銈掗伕鎶炪仐銇︺亸銇犮仌銇勩��</value>
- </labels>
- <labels>
- <fullName>StartTrading_Cancel</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛偔銉c兂銈汇儷锛�</shortDescription>
- <value>銈儯銉炽偦銉�</value>
- </labels>
- <labels>
- <fullName>StartTrading_None</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堥伕鎶炪儶銈广儓鍒濇湡鍊わ級</shortDescription>
- <value>--銇仐--</value>
- </labels>
- <labels>
- <fullName>StartTrading_P_Campaign</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛儜銉┿儭銉笺偪涓汇偔銉c兂銉氥兗銉炽伄ID锛�</shortDescription>
- <value>opp17</value>
- </labels>
- <labels>
- <fullName>StartTrading_P_Dept</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛儜銉┿儭銉笺偪鎴︾暐绉戝鍒嗛銇甀D锛�</shortDescription>
- <value>CF00N10000002CYB7</value>
- </labels>
- <labels>
- <fullName>StartTrading_P_Hospital</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛儜銉┿儭銉笺偪鐥呴櫌銇甀D锛�</shortDescription>
- <value>CF00N10000002CYBC</value>
- </labels>
- <labels>
- <fullName>StartTrading_P_Leadsource</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛儜銉┿儭銉笺偪寮曞悎鎯呭牨鍏冦伄ID锛�</shortDescription>
- <value>opp6</value>
- </labels>
- <labels>
- <fullName>StartTrading_P_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛儜銉┿儭銉笺偪鍚嶇О[瑷虹檪绉慮銇甀D锛�</shortDescription>
- <value>accid</value>
- </labels>
- <labels>
- <fullName>StartTrading_P_Society</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛儜銉┿儭銉笺偪銇濄伄浠栧浼氥伄ID锛�</shortDescription>
- <value>00N10000002CX31</value>
- </labels>
- <labels>
- <fullName>StartTrading_Subtitle</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍙栧紩闁嬪鐢婚潰锛堛偟銉栥偪銈ゃ儓銉級</shortDescription>
- <value>鍙栧紩銇枊濮�</value>
- </labels>
- <labels>
- <fullName>StateChanges</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎰忓悜杞浠风姸鎬�</shortDescription>
- <value>寮�濮嬭浠�</value>
- </labels>
- <labels>
- <fullName>Statementlink</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Statementlink</shortDescription>
- <value>甯︽暀鏄庣粏:00O10000006RKh1</value>
- </labels>
- <labels>
- <fullName>Statu_Achievements_share</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娉ㄦ畫绌烘洿鏂颁娇鐢ㄦ爣绛�</shortDescription>
- <value>true</value>
- </labels>
- <labels>
- <fullName>Status</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈广儐銉笺偪銈�</shortDescription>
- <value>銈广儐銉笺偪銈�</value>
- </labels>
- <labels>
- <fullName>StatusProcessState</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浼氳鍐宠鐘舵�侊紙涓嶇鍚堢姸鎬侊級</shortDescription>
- <value>鑽夌,椹冲洖,缁堟鐢宠,鍙栨秷,鍒犻櫎</value>
- </labels>
- <labels>
- <fullName>Status_Update</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>渚℃牸銈广儐銉笺偪銈规儏鍫辨洿鏂�</shortDescription>
- <value>渚℃牸銈广儐銉笺偪銈规儏鍫辨洿鏂�</value>
- </labels>
- <labels>
- <fullName>Submit_Date</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎻愬嚭鏃�</shortDescription>
- <value>鎻愬嚭鏃�</value>
- </labels>
- <labels>
- <fullName>Sum_Total</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>灏忚▓</shortDescription>
- <value>灏忚▓</value>
- </labels>
- <labels>
- <fullName>System_Stop</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>System_Stop</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>Tab_Text</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鈥汇偪銉栨枃瀛楀尯鍒囥倞銇ㄣ仐銇︿笅銇曘亜</shortDescription>
- <value>鈥汇偪銉栨枃瀛楀尯鍒囥倞銇ㄣ仐銇︿笅銇曘亜</value>
- </labels>
- <labels>
- <fullName>TargetAccountVisit</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_鐩爣瀹㈡埛鎷滆</shortDescription>
- <value>01210000000cWfm</value>
- </labels>
- <labels>
- <fullName>Tax_Date</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>姹囩巼淇敼鏃ユ湡鏍囩</shortDescription>
- <value>2018-05-01</value>
- </labels>
- <labels>
- <fullName>Tax_Date_13</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>姹囩巼淇敼鏃ユ湡鏍囩13</shortDescription>
- <value>2019-04-01</value>
- </labels>
- <labels>
- <fullName>Tax_Foreign_Date</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>姹囩巼淇敼鏃ユ湡鏍囩(澶栬锤)</shortDescription>
- <value>2022-04-01</value>
- </labels>
- <labels>
- <fullName>TemporaryFileBoxNeedAttachment</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎻愭涔﹂渶瑕侀檮浠�</shortDescription>
- <value>闇�瑕佹坊闄勬彁妗堜功鏂囦欢</value>
- </labels>
- <labels>
- <fullName>TenderToOpp</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎷涙爣椤圭洰璧嬪�肩粰璇环寰楃┖鏇存柊</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>Tender_IsnotRelated_ModifyDisable</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎷涙爣椤圭洰-涓嶇浉鍏虫椂涓嶈兘鍐嶄慨鏀圭殑绠�妗�</shortDescription>
- <value>00e10000000xnpRAAQ,00e10000000xyK6AAI</value>
- </labels>
- <labels>
- <fullName>Tender_information</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription><娼滃湪瀹㈡埛>鎷涙爣椤圭洰</shortDescription>
- <value>00N10000009HKS5</value>
- </labels>
- <labels>
- <fullName>To_Manager</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銇椼仧銉炪儘銉笺偢銉�</shortDescription>
- <value>銇椼仧銉炪儘銉笺偢銉�</value>
- </labels>
- <labels>
- <fullName>Total</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>TOTAL</shortDescription>
- <value>TOTAL</value>
- </labels>
- <labels>
- <fullName>TotalLimit</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>2000</shortDescription>
- <value>2000</value>
- </labels>
- <labels>
- <fullName>Total_Discount_Amount</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>浼樻儬浠锋牸</shortDescription>
- <value>浼樻儬浠锋牸</value>
- </labels>
- <labels>
- <fullName>Total_Discount_Percent</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>浼樻儬鎶樻墸</shortDescription>
- <value>浼樻儬鎶樻墸</value>
- </labels>
- <labels>
- <fullName>Total_ListPrice</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>妯欐簴瀹氫尽鍚堣▓渚℃牸</shortDescription>
- <value>妯欐簴瀹氫尽鍚堣▓渚℃牸</value>
- </labels>
- <labels>
- <fullName>Total_Price</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑕嬬閲戦鍚堣▓</shortDescription>
- <value>瑕嬬閲戦鍚堣▓</value>
- </labels>
- <labels>
- <fullName>TradeComplianceStatusFlagFW</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璐告槗鍚堣寮�鍏�-鏈嶅姟</shortDescription>
- <value>false</value>
- </labels>
- <labels>
- <fullName>Training</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鑷ぞ銉堛儸銉笺儖銉炽偘鏂借ō</shortDescription>
- <value>01210000000QgFiAAK</value>
- </labels>
- <labels>
- <fullName>Treatment</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鎶�鏈不鐤�</shortDescription>
- <value>鎶�鏈不鐤�</value>
- </labels>
- <labels>
- <fullName>Unapproved</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>闈炴壙瑾�</shortDescription>
- <value>闈炴壙瑾�</value>
- </labels>
- <labels>
- <fullName>Under_Resp</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Sales/Field Resp</shortDescription>
- <value>涓荤浠ヤ笅</value>
- </labels>
- <labels>
- <fullName>Unit</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍗樹綅</shortDescription>
- <value>鍗樹綅</value>
- </labels>
- <labels>
- <fullName>UpdRegOnly</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>UpdRegOnly</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>UpdateRentalApplyEquipmentSetBatchLimit</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>UpdateRentalApplyEquipmentSetBatchLimit</shortDescription>
- <value>200</value>
- </labels>
- <labels>
- <fullName>UpdateServiceHistory</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍒濆鍖栨湇鍔℃妧甯堝巻鍙叉暟鎹紝鏇存柊鍚庣Щ闄�</shortDescription>
- <value>true</value>
- </labels>
- <labels>
- <fullName>Update_Inquiry</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏇存柊璇环</shortDescription>
- <value>鏇存柊璇环</value>
- </labels>
- <labels>
- <fullName>Url_Head_Custom</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Url閾炬帴瀛楃涓�-鑷畾涔�</shortDescription>
- <value>https://ocsm--c.ap0.visual.force.com</value>
- </labels>
- <labels>
- <fullName>Url_Head_Standard</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Url閾炬帴瀛楃涓�</shortDescription>
- <value>https://ocsm.my.salesforce.com</value>
- </labels>
- <labels>
- <fullName>User_OlympusSystem</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OlympusSystem</shortDescription>
- <value>00510000000gT2R</value>
- </labels>
- <labels>
- <fullName>VMContract</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_澶氬勾淇濅慨鍚堝悓</shortDescription>
- <value>01210000000NP2wAAG</value>
- </labels>
- <labels>
- <fullName>VM_ContractType</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>铏氭嫙缁翠慨鍚堝悓璁板綍绫诲瀷</shortDescription>
- <value>01210000000gTYv</value>
- </labels>
- <labels>
- <fullName>Valid_Status</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浜у搧閰嶅鏄惁鏈夋晥</shortDescription>
- <value>浜у搧閰嶅鏄惁鏈夋晥</value>
- </labels>
- <labels>
- <fullName>View_Inspections</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鐐规鍫卞憡鏇�</shortDescription>
- <value>鐐规鍫卞憡鏇�</value>
- </labels>
- <labels>
- <fullName>View_Repair_Recovery</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>淇悊鍥炲弾銉撱儱銉�</shortDescription>
- <value>淇悊鍥炲弾銉撱儱銉�</value>
- </labels>
- <labels>
<fullName>View_Weekly_Report</fullName>
<language>zh_CN</language>
<protected>false</protected>
@@ -5153,439 +22,10 @@
<value>00O0l000000zo9aEAA</value>
</labels>
<labels>
- <fullName>Visit_Date</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱浜堝畾鏃�</shortDescription>
- <value>瑷晱浜堝畾鏃�</value>
- </labels>
- <labels>
- <fullName>Visit_Location</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鍫存墍</shortDescription>
- <value>瑷晱鍫存墍</value>
- </labels>
- <labels>
- <fullName>Visiting_Hours</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鏅傞枔</shortDescription>
- <value>瑷晱鏅傞枔</value>
- </labels>
- <labels>
- <fullName>Visitor</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鑰�</shortDescription>
- <value>瑷晱鑰�</value>
- </labels>
- <labels>
- <fullName>Visitor_Name</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>瑷晱鑰呭悕</shortDescription>
- <value>瑷晱鑰呭悕</value>
- </labels>
- <labels>
- <fullName>WIN_Profile</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>WIN_Profile</shortDescription>
- <value>00e10000000Y3o5AAC</value>
- </labels>
- <labels>
- <fullName>WaitFollowInquiryForm</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>寰呰窡杩涚殑鍜ㄨ鍗�</shortDescription>
- <value>/a41?fcf=00B10000006i6VF</value>
- </labels>
- <labels>
- <fullName>Working_Time</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍕ゅ嫏鏅傞枔</shortDescription>
- <value>鍕ゅ嫏鏅傞枔</value>
- </labels>
- <labels>
- <fullName>Yes_Text</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏈�</shortDescription>
- <value>鏈�</value>
- </labels>
- <labels>
- <fullName>YouCantDeleteEvent1</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈€偗銈汇偣妯┿亴銇傘倞銇俱仜銈�</shortDescription>
- <value>銈€偗銈汇偣妯┿亴銇傘倞銇俱仜銈�</value>
- </labels>
- <labels>
- <fullName>YouCantDeleteEvent1_New</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍓婇櫎銇с亶銇俱仜銈�</shortDescription>
- <value>鍓婇櫎銇с亶銇俱仜銈�</value>
- </labels>
- <labels>
- <fullName>YouCantDeleteEvent2</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈€偗銈汇偣妯┿亴銇亜銇熴倎瑕佹眰銈掑疅琛屻仹銇嶃伨銇涖倱銆傘儑銉笺偪銇墍鏈夎�呫伨銇熴伅銆併偡銈广儐銉犵鐞嗚�呫伀銇婂晱銇勫悎銈忋仜銇忋仩銇曘亜銆�</shortDescription>
- <value>銈€偗銈汇偣妯┿亴銇亜銇熴倎瑕佹眰銈掑疅琛屻仹銇嶃伨銇涖倱銆傘儑銉笺偪銇墍鏈夎�呫伨銇熴伅銆併偡銈广儐銉犵鐞嗚�呫伀銇婂晱銇勫悎銈忋仜銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>YouCantDeleteEvent2_new</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈儸銉炽儉銉笺亱銈夊墛闄ゃ仹銇嶃伨銇涖倱銆傛棩鍫便仹鍓婇櫎銇椼仸銇忋仩銇曘亜銆�</shortDescription>
- <value>銈儸銉炽儉銉笺亱銈夊墛闄ゃ仹銇嶃伨銇涖倱銆傛棩鍫便仹鍓婇櫎銇椼仸銇忋仩銇曘亜銆�</value>
- </labels>
- <labels>
- <fullName>YouCantDeleteEvent3</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍓嶃伄銉氥兗銈搞伀鎴汇倠銇伅銆�</shortDescription>
- <value>鍓嶃伄銉氥兗銈搞伀鎴汇倠銇伅銆�</value>
- </labels>
- <labels>
- <fullName>YouCantDeleteEvent3_new</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>璇锋搷浣� 鍙栨秷 鍜� 寤舵湡</shortDescription>
- <value>璇锋搷浣� 鍙栨秷 鍜� 寤舵湡</value>
- </labels>
- <labels>
- <fullName>YouCantDeleteEvent4</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銇撱仭銈�</shortDescription>
- <value>銇撱仭銈�</value>
- </labels>
- <labels>
- <fullName>YouCantDeleteEvent5</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>銈掋偗銉儍銈仐銇俱仚銆�</shortDescription>
- <value>銈掋偗銉儍銈仐銇俱仚銆�</value>
- </labels>
- <labels>
- <fullName>batchEmailAlert</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>batchEmail鎻愰啋鐢ㄦ埛鐨勯偖浠堕粯璁ゅ彧鏈夌簿鐞㈡妧鏈�</shortDescription>
- <value>'00510000005sEEM'</value>
- </labels>
- <labels>
- <fullName>batchEmailAlertCC</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>batchEmail鎻愰啋鐢ㄦ埛鐨勯偖绠憋紝鐩墠鏄帇娴峰銆佺鐜层�佹补鏅撴櫒 锛� 浠ラ�楀彿闅斿紑杈撳叆ID銆�</shortDescription>
- <value>'00510000000gWAQ' , '00510000001rukv', '0051000000AIvdM'</value>
- </labels>
- <labels>
- <fullName>batch_retry_max_cnt</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Batch鑷嫊鍙椾俊閫佷俊鏈�澶у洖鏁�</shortDescription>
- <value>3</value>
- </labels>
- <labels>
- <fullName>campaignFollow</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_瀛︽湳浼氳璺熻繘</shortDescription>
- <value>01210000000cWfc</value>
- </labels>
- <labels>
- <fullName>creatDate_After</fullName>
- <categories>鏃ユ湡</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠ュ悗淇悊鏇存柊鍒涘缓鏃ユ湡鍦�02.19</shortDescription>
- <value>20200219</value>
- </labels>
- <labels>
- <fullName>dateJudge</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>dateJudge</shortDescription>
- <value>2020-04-19</value>
- </labels>
- <labels>
- <fullName>dateTo_Gurantee</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Maintenance鎴鏃ユ湡2</shortDescription>
- <value>3999-12-31</value>
- </labels>
- <labels>
- <fullName>dateTo_Service</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>Maintenance鎴鏃ユ湡1</shortDescription>
- <value>3999-12-31</value>
- </labels>
- <labels>
- <fullName>dealer</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁忛攢鍟�</shortDescription>
- <value>01210000000Qem1</value>
- </labels>
- <labels>
- <fullName>deleteLabel</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鍓婇櫎</shortDescription>
- <value>鍓婇櫎</value>
- </labels>
- <labels>
- <fullName>eSignAgencyNum</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐢靛瓙绛炬敹ID鍙�</shortDescription>
- <value>鐢靛瓙绛炬敹ID鍙�</value>
- </labels>
- <labels>
- <fullName>fax</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>Fax</shortDescription>
- <value>Fax</value>
- </labels>
- <labels>
- <fullName>feedbackTaskId</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>宸插弽棣堜换鍔¤鍥�</shortDescription>
- <value>/a3V?fcf=00B10000006i0Af</value>
- </labels>
- <labels>
- <fullName>interfaceUserID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鎺ュ彛鐢ㄦ埛ID</shortDescription>
- <value>00510000000gmxHAAQ</value>
- </labels>
- <labels>
<fullName>invoiceStart</fullName>
<language>zh_CN</language>
<protected>false</protected>
<shortDescription>鍙戠エ瀵硅薄鍓�3浣嶆暟鍊�</shortDescription>
<value>a2K</value>
- </labels>
- <labels>
- <fullName>mpddetLimitsize</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹槑缁嗙敾闈㈡瘡椤垫樉绀烘暟閲�</shortDescription>
- <value>20</value>
- </labels>
- <labels>
- <fullName>mpddetPageLimitsize</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>缁存姢浜у搧涓绘暟鎹槑缁嗙敾闈㈡坊鍔犱笉瓒呰繃鏁伴噺</shortDescription>
- <value>200</value>
- </labels>
- <labels>
- <fullName>notCreateRepairFromAssetButton</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐗瑰畾浜哄憳锛堝憳宸ョ紪鐮侊級涓嶄粠淇濇湁璁惧鍒涘缓淇悊1锛堟斁涓嶄笅鍓╀綑鍦�2锛�</shortDescription>
- <value>om003908,om003862,om003872,om003770,om003562,om003548,om003581,om003479,om003504,om003260,om003264,om003258,om003414,om003378,om003449,om003119,om003110,om003146,om003017,om003090,om003041,om002990,om003323,om003317,om003064,om003102,om003088,om003087,om003123,om003003,om003114,om002850,om002970,om002845,om002719,om002902,om002981,om002857,om002893,om002707,om002606,om002441,om002504,om002749,om002614,om002496,om002498,om002526,om002634,om002517,om002670,om002795,om002779,om002539,om001689,om002296,om002324,om002204,om002556,om002247,om002403,om002235,om002238,om002237,om002423,om002654,om002415,om001986,om002077,om002234,om002103,om001895,om001937,om002102,om001832,om001958,om001820,om002153,om002027,om002026,om002139,om001242,om001515,om001626,om001628,om001138,om001499,om001659,om001762,om001545,om001664,om001213,om001736,om001612,om001737,om001292,om001447,om001111,om000660,om001103,om000693,om001995,om000710,om001042,om001040,om000595,om000474,om000621,om001036,om000743</value>
- </labels>
- <labels>
- <fullName>notCreateRepairFromAssetButton02</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鐗瑰畾浜哄憳锛堝憳宸ョ紪鐮侊級涓嶄粠淇濇湁璁惧鍒涘缓淇悊1锛堟帴1锛�</shortDescription>
- <value>,om000491,om000477,om001048,om001102,om001264,om001818,om001672,om001848</value>
- </labels>
- <labels>
- <fullName>obsap_Login_area</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>obsap鎶ヤ环濮旀墭鐧诲綍浜哄湴鍖�</shortDescription>
- <value>5.鍗庝笢,6.鍗庡崡,1.鍗庡寳,3.瑗垮寳,4.瑗垮崡,2.涓滃寳</value>
- </labels>
- <labels>
- <fullName>obsap_group_opp</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>OBSAP鎶ヤ环濮旀墭缁�</shortDescription>
- <value>00G10000002qnIv</value>
- </labels>
- <labels>
- <fullName>onlyupdate</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绌烘洿鏂版搷浣�</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>opd_oldDate_update</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>opd鑰佹暟鎹洿鏂版爣璁�-prod鐢紙鍕垮姩锛�</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>orderdetLimitsize</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娑堣�楀搧鏄庣粏鐢婚潰姣忛〉鏄剧ず鏁伴噺</shortDescription>
- <value>200</value>
- </labels>
- <labels>
- <fullName>orderdetPageLimitsize</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娑堣�楀搧鏄庣粏鐢婚潰鏄剧ず鏁伴噺</shortDescription>
- <value>500</value>
- </labels>
- <labels>
- <fullName>phone</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>闆昏┍</shortDescription>
- <value>闆昏┍</value>
- </labels>
- <labels>
- <fullName>profileName_Notadminand2F1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绠$悊鍛樺拰2F1浠ュ鏌ョ湅绠�妗�</shortDescription>
- <value>102_閿�鍞瓼SE(鍙锛屽彲浠ュ綍鍏ョ偣妫�+鏂板缓淇悊),102_閿�鍞瓼SE鍏兼妧鏈暀鑲茶,112_鏈嶅姟閮ㄦ媴褰�,114_鏈嶅姟閮ㄥ姪鐞�,115_CIC,116_CIC绐楀彛,2F1_鏈嶅姟绐楀彛,2F2_鏈嶅姟鎷呭綋+RC,2F5_CIC,2F6_CIC绐楀彛,2S5_閿�鍞瓼SE鎷呭綋,绯荤粺绠$悊鍛�,2S3_閿�鍞競鍦�&FSE绠$悊鑰�,2F4_鎶�鏈帹杩涢儴,2S10_FSE绠$悊鑰�</value>
- </labels>
- <labels>
- <fullName>profileName_adminand2F1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>绠$悊鍛樺拰2F1绠�妗e悕绉�</shortDescription>
- <value>绯荤粺绠$悊鍛�,2F1_鏈嶅姟绐楀彛</value>
- </labels>
- <labels>
- <fullName>profile_2b2</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>澶囧搧涓績浠撳簱绠�妗�</shortDescription>
- <value>00e10000000xnoYAAQ</value>
- </labels>
- <labels>
- <fullName>report_oldDate_update</fullName>
- <categories>鎶ュ憡涔︽洿鏂拌�佹暟鎹紙鍕垮姩锛�</categories>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>report_oldDate_update</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>s1_jpegQuality</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>s1_jpegQuality</shortDescription>
- <value>3</value>
- </labels>
- <labels>
- <fullName>s1_longSidePixel</fullName>
- <language>en_US</language>
- <protected>false</protected>
- <shortDescription>s1_longSidePixel</shortDescription>
- <value>3200</value>
- </labels>
- <labels>
- <fullName>s6_ID</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>s6鐨勭畝妗D</shortDescription>
- <value>00e10000000xyK6,00e10000000xnpR,00e10000000Y3o5</value>
- </labels>
- <labels>
- <fullName>s9BPChuangkou</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2s9澶囧搧绐楀彛</shortDescription>
- <value>00e10000000a7NYAAY</value>
- </labels>
- <labels>
- <fullName>salesman2S1</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S1_閿�鍞尰闄㈡媴褰� 鐢ㄥ湪鏃ユ姤寮圭獥鐢�</shortDescription>
- <value>00e10000000xnp2AAA</value>
- </labels>
- <labels>
- <fullName>salesman2S1_Price</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>2S1_閿�鍞尰闄㈡媴褰�(鏌ョ湅浠锋牸) 鏃ユ姤椤甸潰鎻愰啋濉啓鎴樼暐绉戝鐥呬緥鏁扮敤銆�</shortDescription>
- <value>2S1_閿�鍞尰闄㈡媴褰�(鏌ョ湅浠锋牸) 鏃ユ姤椤甸潰鎻愰啋濉啓鎴樼暐绉戝鐥呬緥鏁扮敤銆�</value>
- </labels>
- <labels>
- <fullName>si_stock_dbhb</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>SI_澶囪揣瀹℃壒浜篲鍗庡寳鍗庡崡</shortDescription>
- <value>00510000006jjLU</value>
- </labels>
- <labels>
- <fullName>tempLabelForInsertHistData</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>娌″暐鐢紝鐩存帴鍒犳帀</shortDescription>
- <value>true</value>
- </labels>
- <labels>
- <fullName>toMail</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>閭欢鎺ユ敹浜�</shortDescription>
- <value>tianxiao_gong@olympus.com.cn</value>
- </labels>
- <labels>
- <fullName>update_Statu_Achievements_Journal</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏇存柊娉ㄦ畫鍑虹撼琛ㄦ爣绛�</shortDescription>
- <value>tr</value>
- </labels>
- <labels>
- <fullName>update_if_Newest_HaveOpportunity</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鏇存柊涓婃湡鏄惁鏈夎浠凤紙鏈�鏂帮級瀛楁</shortDescription>
- <value>0</value>
- </labels>
- <labels>
- <fullName>valid</fullName>
- <language>ja</language>
- <protected>false</protected>
- <shortDescription>鏈夊姽</shortDescription>
- <value>鏈夊姽</value>
- </labels>
- <labels>
- <fullName>visitHLevel</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>浠诲姟绫诲瀷_H灞傛嫓璁�</shortDescription>
- <value>01210000000cWfS</value>
- </labels>
- <labels>
- <fullName>xl0String</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>0绯诲垪</shortDescription>
- <value>鍙拌溅;鐩戣鍣�</value>
- </labels>
- <labels>
- <fullName>zhuliFollowInquiryForm</fullName>
- <language>zh_CN</language>
- <protected>false</protected>
- <shortDescription>鍔╃悊寰呰窡杩涘挩璇㈠崟</shortDescription>
- <value>/a41?fcf=00B10000006iFV4</value>
</labels>
</CustomLabels>
diff --git a/force-app/main/default/lwc/commonToast/__tests__/commonToast.test.js b/force-app/main/default/lwc/commonToast/__tests__/commonToast.test.js
deleted file mode 100644
index c8306e6..0000000
--- a/force-app/main/default/lwc/commonToast/__tests__/commonToast.test.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { createElement } from 'lwc';
-import CommonToast from 'c/commonToast';
-
-describe('c-common-toast', () => {
- afterEach(() => {
- // The jsdom instance is shared across test cases in a single file so reset the DOM
- while (document.body.firstChild) {
- document.body.removeChild(document.body.firstChild);
- }
- });
-
- it('TODO: test case generated by CLI command, please fill in test logic', () => {
- // Arrange
- const element = createElement('c-common-toast', {
- is: CommonToast
- });
-
- // Act
- document.body.appendChild(element);
-
- // Assert
- // const div = element.shadowRoot.querySelector('div');
- expect(1).toBe(1);
- });
-});
\ No newline at end of file
diff --git a/force-app/main/default/lwc/customUnitComp/customUnitComp.html b/force-app/main/default/lwc/customUnitComp/customUnitComp.html
index dbd66f5..b898306 100644
--- a/force-app/main/default/lwc/customUnitComp/customUnitComp.html
+++ b/force-app/main/default/lwc/customUnitComp/customUnitComp.html
@@ -16,7 +16,7 @@
data-field="selectUnit"
options={unitOptions}
class="inputFont"
-
+ disabled={isDisabled}
></lightning-combobox>
</div>
</template>
\ No newline at end of file
diff --git a/force-app/main/default/lwc/customUnitComp/customUnitComp.js b/force-app/main/default/lwc/customUnitComp/customUnitComp.js
index 420a519..4592b6c 100644
--- a/force-app/main/default/lwc/customUnitComp/customUnitComp.js
+++ b/force-app/main/default/lwc/customUnitComp/customUnitComp.js
@@ -4,8 +4,12 @@
@api unitValue;
@api unitOptions;
@api recordId;
+ @api isDisabled;
connectedCallback(){
+ if(this.isDisabled == null){
+ this.isDisabled = false;
+ }
}
handleDataChange(event){
diff --git a/force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.html b/force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.html
index 967322a..dd1a7c4 100644
--- a/force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.html
+++ b/force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.html
@@ -527,7 +527,7 @@
<div draggable="false">
<lightning-datatable key-field="Id" data={outboundData} columns={outboundColumns}
hide-checkbox-column={hideCheckbox} onrowselection={getSelectedRows}
- selected-rows={selectedRows} class="wrapped-header-datatable">
+ selected-rows={selectedRows} class="wrapped-header-datatable" data-field="outbound">
</lightning-datatable>
<lightning-datatable key-field="id" data={outboundDataSumPrice}
columns={outboundColumns} hide-checkbox-column hide-table-header
diff --git a/force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.js b/force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.js
index 213002a..eeb2a3f 100644
--- a/force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.js
+++ b/force-app/main/default/lwc/lexConInvoiceView/lexConInvoiceView.js
@@ -96,6 +96,7 @@
hideDefaultActions: true,
wrapText: true,
cellAttributes: { alignment: 'right' },
+
type: "number",
typeAttributes: {
minimumFractionDigits: 2,
@@ -160,6 +161,7 @@
label: "浜у搧鍨嬪彿",
fieldName: "esdAssetModelNo",
hideDefaultActions: true,
+ wrapText: true,
},
{
label: "瑙勬牸",
@@ -211,13 +213,13 @@
},
{
label: "寮�绁ㄥ崟浣�",
- //fieldName: "esdInvoiceUnit",
hideDefaultActions: true,
type: "customUnit",
typeAttributes: {
unitValue: { fieldName: "unitValue" },
unitOptions: { fieldName: "unitOptions" },
recordId: { fieldName: "recordId" },
+ isDisabled: { fieldName: "isDisabled" },
},
},
{
@@ -247,6 +249,7 @@
fieldName: "invoiceAllprice",
hideDefaultActions: true,
type: "number",
+ initialWidth: 150,
typeAttributes: {
minimumFractionDigits: 2,
},
@@ -497,8 +500,14 @@
this.detailsData[i]['esdInvoicedProcount'] = this.detailsData[i].esd.Invoiced_Procount__c;
this.detailsData[i]['esdInvoiceProNotCount'] = this.detailsData[i].esd.InvoiceProNot_count__c;
//寮�绁ㄥ崟浣�
- this.detailsData[i]['unitValue'] = this.detailsData[i].esd.Invoice_Unit__c;
+ //this.detailsData[i].esd.Box_Piece__c
+ //this.detailsData[i]['unitValue'] = this.detailsData[i].esd.Invoice_Unit__c;
+ this.detailsData[i]['unitValue'] = this.detailsData[i].esd.Box_Piece__c;
+ console.log('unitValue = ' + this.detailsData[i]['unitValue']);
this.detailsData[i]['recordId'] = this.detailsData[i].esd.Id;
+ //disabled="{!IF(records.esd.Box_Piece__c =='涓�' || (records.esd.Box_Piece__c =='鐩�' && records.Packing_list_manual ==1),true,false)}"
+ //this.detailsData[i]['isDisabled'] = (this.detailsData[i].esd.Box_Piece__c == '涓�' || (this.detailsData[i].esd.Box_Piece__c =='鐩�' && this.detailsData[i].Packing_list_manual ==1)) ? true:false;
+ this.detailsData[i]['isDisabled'] = true;
let unitOptions = [];
for (var key in this.detailsData[i].Invoice_UnitOptsMap) {
let unitOption = {};
@@ -585,6 +594,7 @@
this.isChange = r.entity.isChange;
this.ExistOutbound = r.entity.ExistOutbound;
this.outboundData = r.entity.invoiceOrderRecoeds;
+ console.log('this.outboundData = ' + JSON.stringify(this.outboundData))
this.done = r.entity.done;
this.accountid = r.entity.accountid;
this.userWorkLocation = r.entity.userWorkLocation;
@@ -949,7 +959,22 @@
SaveJs() {
this.isShowSpinner = true;
let cloneData = this.outboundData
+
+ debugger
+ const selectedRows = this.template.querySelector("[data-field='outbound']").getSelectedRows();
+ console.log('selectedRows = ' + JSON.stringify(selectedRows));
+
for (var i in cloneData) {
+ let b = false;
+ for (var j in selectedRows) {
+ if (cloneData[i].esd.Id == selectedRows[j].esd.Id) {
+ b = true;
+ cloneData[i].check = true;
+ }
+ }
+ if(!b){
+ cloneData[i].check = false;
+ }
delete cloneData[i].esdOutboundDate;
delete cloneData[i].esdNameUrl;
delete cloneData[i].esdName;
@@ -1210,8 +1235,21 @@
InvoiceorderSearchJs() {
this.isShowSpinner = true;
+ debugger
let cloneData = this.outboundData
+ const selectedRows = this.template.querySelector("[data-field='outbound']").getSelectedRows();
+ console.log('selectedRows ' + JSON.stringify(selectedRows));
for (var i in cloneData) {
+ let b = false;
+ for (var j in selectedRows) {
+ if (cloneData[i].esd.Id == selectedRows[j].esd.Id) {
+ b = true;
+ cloneData[i].check = true;
+ }
+ }
+ if(!b){
+ cloneData[i].check = false;
+ }
delete cloneData[i].esdOutboundDate;
delete cloneData[i].esdNameUrl;
delete cloneData[i].esdName;
@@ -1231,6 +1269,7 @@
console.log('this.HospitalInfo = ' + this.HospitalInfo);
console.log('SecondDealer = ' + this.secondaryDistributor);
console.log('invoiceOrderRecoedsLwc = ' + JSON.stringify(cloneData));
+
InvoiceorderSearch({
cocLwc: this.coc,
invoiceIdLwc: this.invoiceId,
@@ -1245,8 +1284,14 @@
console.log("r = " + JSON.stringify(r));
if (r.status == "Success") {
this.outboundData = r.entity.invoiceOrderRecoeds;
+ console.log('this.outboundData = ' + JSON.stringify(this.outboundData));
let index = 0;
+ this.selectedRows = [];
for (var i in this.outboundData) {
+
+ if(this.outboundData[i].check)
+ this.selectedRows.push(this.outboundData[i].esd.Id)
+ this.outboundData[i].Id = this.outboundData[i].esd.Id;
this.outboundData[i]['esdOutboundDate'] = this.outboundData[i].esd.Outbound_Date__c;
this.outboundData[i]['esdNameUrl'] = '/s/lexsummonscreat?ESetid=' + this.outboundData[i].esd.Id;
this.outboundData[i]['esdName'] = this.outboundData[i].esd.Name;
@@ -1292,6 +1337,7 @@
//璁$畻鍙戠エ绁ㄩ潰閲戦
this.sumPrice += this.outboundData[i].needInvoiceCount;
}
+ console.log('this.selectedRows = ' + JSON.stringify(this.selectedRows))
this.isShowSpinner = false;
} else {
this.showMyToast('鎼滅储澶辫触', r.msg, 'Error');
@@ -1303,20 +1349,20 @@
}
getSelectedRows(event) {
- console.log("getSelectedRows ");
- for (var i in this.outboundData) {
- this.outboundData[i].check = false;
- }
- const selectedRows = event.detail.selectedRows;
- for (var i in this.outboundData) {
- for (var j in selectedRows) {
- if (this.outboundData[i].esd.Id == selectedRows[j].esd.Id) {
- //this.outboundData[i].check = !this.outboundData[i].check;
- this.outboundData[i].check = true;
- }
- }
- }
- console.log('this.outboundData = ' + JSON.stringify(this.outboundData));
+ // console.log("getSelectedRows ");
+ // for (var i in this.outboundData) {
+ // this.outboundData[i].check = false;
+ // }
+ // const selectedRows = event.detail.selectedRows;
+ // for (var i in this.outboundData) {
+ // for (var j in selectedRows) {
+ // if (this.outboundData[i].esd.Id == selectedRows[j].esd.Id) {
+ // //this.outboundData[i].check = !this.outboundData[i].check;
+ // this.outboundData[i].check = true;
+ // }
+ // }
+ // }
+ // console.log('this.outboundData = ' + JSON.stringify(this.outboundData));
}
deleteButtonJs() {
@@ -1705,7 +1751,7 @@
contentVersionId: recordId
}).then(result => {
if (result.result == 'Success') {
- this.showMyToast('鎴愬姛', '鍒犻櫎鎴愬姛', 'Success');
+ this.showMyToast('鍒犻櫎鎴愬姛', '', 'Success');
if (this.fileData.length == 1)
window.location.reload();
else
diff --git a/force-app/main/default/lwc/lexConsumable/lexConsumable.js b/force-app/main/default/lwc/lexConsumable/lexConsumable.js
index 07313bb..1bc8cee 100644
--- a/force-app/main/default/lwc/lexConsumable/lexConsumable.js
+++ b/force-app/main/default/lwc/lexConsumable/lexConsumable.js
@@ -143,10 +143,10 @@
get cols(){
var cols = [];
cols.push({label:'娑堣�楀搧鍚嶇О',fieldName:'prodName',wrapText:true,hideDefaultActions: true,sortable: true});
- cols.push({label:'瑙勬牸',fieldName:'packing_list',hideDefaultActions: true,initialWidth:50,cellAttributes: { alignment: "right" }});
- cols.push({label:'CFDA鐘舵��',fieldName:'prodSFDAStatus',hideDefaultActions: true,initialWidth:97});
+ cols.push({label:'瑙勬牸',fieldName:'packing_list',wrapText:true,hideDefaultActions: true,initialWidth:50,cellAttributes: { alignment: "right" }});
+ cols.push({label:'CFDA鐘舵��',fieldName:'prodSFDAStatus',wrapText:true,hideDefaultActions: true,initialWidth:97});
cols.push({label:'娉ㄥ唽璇佺紪鐮佸彿',fieldName:'approbation_No',wrapText:true,hideDefaultActions: true,initialWidth:120});
- cols.push({label:'娉ㄥ唽璇佹晥鏈�',fieldName:'expiration_Date',hideDefaultActions: true,initialWidth:105});
+ cols.push({label:'娉ㄥ唽璇佹晥鏈�',fieldName:'expiration_Date',wrapText:true,hideDefaultActions: true,initialWidth:105});
cols.push({label:'绗�3鍒嗙被',fieldName:'prodCategory3',wrapText:true,hideDefaultActions: true,initialWidth:78,sortable: true});
cols.push({label:'绗�4鍒嗙被',fieldName:'prodCategory4',wrapText:true,hideDefaultActions: true,initialWidth:107,sortable: true});
cols.push({label:'绗�5鍒嗙被',fieldName:'prodCategory5',wrapText:true,hideDefaultActions: true,initialWidth:80,sortable: true});
@@ -1122,7 +1122,7 @@
//鎵撳紑鍚堝悓妫�绱㈠脊绐楀苟鍒濆鍖�
showSearchCon(){
- initContract({ctype:this.agencyProType})
+ initContract({ctype:this.agencyProType1})
.then(result=>{
if(result.result == 'Success'){
this.showConPop = true;
diff --git a/force-app/main/default/lwc/lexCustomLightningDatatable/customMyDrCheckBox.html b/force-app/main/default/lwc/lexCustomLightningDatatable/customMyDrCheckBox.html
new file mode 100644
index 0000000..3a93338
--- /dev/null
+++ b/force-app/main/default/lwc/lexCustomLightningDatatable/customMyDrCheckBox.html
@@ -0,0 +1,10 @@
+<!-- sldsValidatorIgnore -->
+<!-- sldsValidatorIgnore -->
+<template>
+ <c-custom-mydr-comp
+ record-id={typeAttributes.recordId}
+ is-checked-my-dr={typeAttributes.isCheckedMyDr}
+ onunitchange={handleDataChange}
+ >
+ </c-custom-mydr-comp>
+</template>
\ No newline at end of file
diff --git a/force-app/main/default/lwc/lexCustomLightningDatatable/customUnit.html b/force-app/main/default/lwc/lexCustomLightningDatatable/customUnit.html
index b1dddef..2c4f3c0 100644
--- a/force-app/main/default/lwc/lexCustomLightningDatatable/customUnit.html
+++ b/force-app/main/default/lwc/lexCustomLightningDatatable/customUnit.html
@@ -5,6 +5,7 @@
unit-value={typeAttributes.unitValue}
unit-options={typeAttributes.unitOptions}
record-id={typeAttributes.recordId}
+ is-disabled={typeAttributes.isDisabled}
onunitchange={handleDataChange}
>
</c-custom-unit-comp>
diff --git a/force-app/main/default/lwc/lexCustomLightningDatatable/customdeleteReason.html b/force-app/main/default/lwc/lexCustomLightningDatatable/customdeleteReason.html
new file mode 100644
index 0000000..667aeb4
--- /dev/null
+++ b/force-app/main/default/lwc/lexCustomLightningDatatable/customdeleteReason.html
@@ -0,0 +1,8 @@
+<!-- sldsValidatorIgnore -->
+<!-- sldsValidatorIgnore -->
+<template>
+ <c-custom-delete-reason-comp
+ record-id={typeAttributes.recordId}
+ >
+ </c-custom-delete-reason-comp>
+</template>
\ No newline at end of file
diff --git a/force-app/main/default/lwc/lexCustomLightningDatatable/lexCustomLightningDatatable.js b/force-app/main/default/lwc/lexCustomLightningDatatable/lexCustomLightningDatatable.js
index 5f9054a..153ee76 100644
--- a/force-app/main/default/lwc/lexCustomLightningDatatable/lexCustomLightningDatatable.js
+++ b/force-app/main/default/lwc/lexCustomLightningDatatable/lexCustomLightningDatatable.js
@@ -13,6 +13,8 @@
import customOutboundCountTemplate from './customOutboundCount.html';
import customWeeklyReportTemplate from './customWeeklyReport.html';
import customAgencyOppInputTemplate from './customAgencyOppInput.html';
+import customMyDrCheckBoxTemplate from './customMyDrCheckBox.html';
+import customdeleteReasonTemplate from './customdeleteReason.html';
import { loadStyle} from 'lightning/platformResourceLoader';
import LexCustomDataTable from '@salesforce/resourceUrl/LexCustomDataTable';
@@ -20,7 +22,7 @@
static customTypes = {
customUnit: {
template: customUnitTemplate,
- typeAttributes: ['unitValue','unitOptions','recordId'],
+ typeAttributes: ['unitValue','unitOptions','recordId','isDisabled'],
},
customShipment: {
template: customShipmentNumberTemplate,
@@ -73,7 +75,15 @@
agencyOppInput:{
template: customAgencyOppInputTemplate,
typeAttributes:['inputValue','recordId','fieldName','showType'],
- }
+ },
+ MyDrCheckBox:{
+ template: customMyDrCheckBoxTemplate,
+ typeAttributes:['recordId','isCheckedMyDr'],
+ },
+ deleteReason:{
+ template: customdeleteReasonTemplate,
+ typeAttributes:['recordId'],
+ },
};
constructor() {
super();
diff --git a/force-app/main/default/lwc/lexInventory/lexInventory.js b/force-app/main/default/lwc/lexInventory/lexInventory.js
index d535c79..43d0f99 100644
--- a/force-app/main/default/lwc/lexInventory/lexInventory.js
+++ b/force-app/main/default/lwc/lexInventory/lexInventory.js
@@ -393,10 +393,10 @@
}
}
- if(this.barcode == ''||this.barcode == null){
- this.showMyToast('鑾峰彇澶辫触','璇疯緭鍏arCode鍙�','error');
+ // if(this.barcode == ''||this.barcode == null){
+ // this.showMyToast('鑾峰彇澶辫触','璇疯緭鍏arCode鍙�','error');
- }
+ // }
console.log('this.data--->'+JSON.stringify(this.data));
console.log('this.currentPageToken'+this.currentPageToken);
this.selectedRows = [];
@@ -450,7 +450,7 @@
}
this.iSinventory = result.entity.iSinventory;
this.pandiandetailsMap = result.entity.pandiandetailsMap;
- this.reSet = result.entity.reSet;
+ this.reSet = result.entity.reSet1;
console.log("iSinventory:" + this.iSinventory);
this.showTable = true;
this.showbutton = true;
@@ -518,19 +518,19 @@
this.barcode = value;
}
- // getSelectedRows(event) {
- // let selectedRowsEvent = event.detail.selectedRows;
- // this.selectedRows = [];
- // for (var i in selectedRowsEvent) {
- // this.selectedRows.push(selectedRowsEvent[i].ProdId+this.data[i]["boxPiece"]);
- // }
- // const selectedRows = event.detail.selectedRows;
- // console.log("this.selectedRows = " + JSON.stringify(selectedRows));
- // for (var i in selectedRows) {
- // this.selectedRows.push(selectedRows[i].ProdId+this.data[i]["boxPiece"]);
- // }
+ getSelectedRows(event) {
+ let selectedRowsEvent = event.detail.selectedRows;
+ this.selectedRows = [];
+ for (var i in selectedRowsEvent) {
+ this.selectedRows.push(selectedRowsEvent[i].ProdId+this.data[i]["boxPiece"]);
+ }
+ const selectedRows = event.detail.selectedRows;
+ console.log("this.selectedRows = " + JSON.stringify(selectedRows));
+ for (var i in selectedRows) {
+ this.selectedRows.push(selectedRows[i].ProdId+this.data[i]["boxPiece"]);
+ }
- // }
+ }
//瀵煎嚭涓篶sv
exportData() {
@@ -593,13 +593,34 @@
console.log('reSet' + this.reSet);
this.showSpinner = true;
console.log('pandiandetailsMap' + this.pandiandetailsMap);
- var el = this.template.querySelector("c-lex-custom-lightning-datatable");
- var selected = el.getSelectedRows();
- this.selectedData = selected;
- console.log("閫変腑鏁版嵁" + JSON.stringify(this.selectedData));
+ //鏌ヨ鏈夊摢浜涢�夋嫨浜嗙殑鐒跺悗check
+ const selectedRows = this.template.querySelector('c-lex-custom-lightning-datatable').getSelectedRows();
+ console.log('selectedRows========> ' + JSON.stringify(selectedRows));
+ for (var i in this.data) {
+ this.data[i]["check"] = false;
+ }
+ for (var i in this.data) {
+ for (var j in selectedRows) {
+ if (this.data[i].ProdId+this.data[i]["boxPiece"] == selectedRows[j].ProdId+ selectedRows[j]["boxPiece"]) {
+ this.data[i]["check"] = true;
+ }
+ // console.log('this.data[i].ProdId+this.data[i]["boxPiece"]'+this.data[i].ProdId+this.data[i]["boxPiece"]);
+ console.log('selectedRows[j].ProdId+this.data[i]["boxPiece"]'+selectedRows[j].ProdId+selectedRows[j]["boxPiece"]);
+
+ }
+ }
+
+ // var el = this.template.querySelector("c-lex-custom-lightning-datatable");
+ // var selected = el.getSelectedRows();
+ // this.selectedData = selected;
+ // console.log("閫変腑鏁版嵁" + JSON.stringify(this.selectedData));
+ // console.log("reset" + JSON.stringify(this.reSet));
+ // console.log("reset1" + JSON.stringify(this.reSet1));
+ // console.log("r" + JSON.stringify(this.reSet1));
+
save({
iSinventory: this.iSinventory,
- consumableorderdetailsRecordsLWC: JSON.stringify(this.selectedData),
+ consumableorderdetailsRecordsLWC:JSON.stringify(this.data),
accountid: this.accountid,
agencyProType: this.agencyProType,
reSet: this.reSet,
@@ -611,7 +632,7 @@
console.log("111111");
if (result.status == "Success") {
- let url = "/lexInventory?ESetid=" + result.entity.eSetId;
+ let url = "/lexinventory?ESetid=" + result.entity.eSetId;
this[NavigationMixin.Navigate]({
type: "standard__webPage",
attributes: {
diff --git a/force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.html b/force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.html
index 84a3ed8..37ec174 100644
--- a/force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.html
+++ b/force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.html
@@ -75,7 +75,7 @@
<!-- <div style="height: 300px;"> -->
<template if:true={showTable}>
- <c-lex-custom-lightning-datatable key-field="prodid" data={data} columns={columns}
+ <c-lex-custom-lightning-datatable key-field="key" data={data} columns={columns}
onrowselection={getSelectedRows}
selected-rows={selectedRows} class="wrapped-header-datatable">
</c-lex-custom-lightning-datatable>
@@ -114,7 +114,7 @@
<lightning-datatable
key-field="id" data={overduePageRecords} columns={column}
onrowselection={getSelectedRows} hide-checkbox-column="true"
- selected-rows={selectedRows} class="wrapped-header-datatable">
+ selected-rows={selectedRows} class="wrapped-header-datatable " style="word-wrap:break-word; word-break:break-all; ">
</lightning-datatable>
</div>
diff --git a/force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.js b/force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.js
index d81b24d..656bf1e 100644
--- a/force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.js
+++ b/force-app/main/default/lwc/lexOverdueStock/lexOverdueStock.js
@@ -11,268 +11,335 @@
//杩囨湡搴撳瓨涓�瑙�
const columns = [
- {
- label: '鏄惁閿�瀛�',
- fieldName: 'iscount',
- type: 'checkbox',
- hideDefaultActions: true,
- initialWidth: 80,
- },
- {
- label: '娑堣�楀搧鍚嶇О',
- fieldName: 'prodname',
- type: 'prodname',
- wrapText: true,
- initialWidth: 350,
-
- hideDefaultActions: true
+ {
+ label: '鏄惁閿�瀛�',
+ fieldName: 'iscount',
+ type: 'checkbox',
+ hideDefaultActions: true,
+ initialWidth: 80,
+ },
+ {
+ label: '娑堣�楀搧鍚嶇О',
+ fieldName: 'prodname',
+ type: 'prodname',
+ wrapText: true,
+ initialWidth: 350,
- },
- {
- label: '鍗曚綅',
- fieldName: 'boxPiece',
- hideDefaultActions: true,
- // initialWidth: 250,
-
- },
- {
- label: '杩囨湡鏁伴噺',
- fieldName: 'overlimitCount',
- hideDefaultActions: true,
- cellAttributes: { alignment: 'right' }
-
- // initialWidth: 250,
-
- },
- {
- label: '閿�瀛樻暟閲�',
- fieldName: 'pandian',
- hideDefaultActions: true,
- cellAttributes: { alignment: 'right' }
- // initialWidth: 250,
+ hideDefaultActions: true
+
+ },
+ {
+ label: '鍗曚綅',
+ fieldName: 'boxPiece',
+ hideDefaultActions: true,
+ // initialWidth: 250,
+
+ },
+ {
+ label: '杩囨湡鏁伴噺',
+ fieldName: 'overlimitCount',
+ hideDefaultActions: true,
+ cellAttributes: { alignment: 'right' }
+
+ // initialWidth: 250,
+
+ },
+ {
+ label: '閿�瀛樻暟閲�',
+ fieldName: 'pandian',
+ hideDefaultActions: true,
+ cellAttributes: { alignment: 'right' }
+ // initialWidth: 250,
// cellAttributes: { alignment: 'center' }
- }
- ];
- //閿�瀛樻槑缁�
+ }
+];
+//閿�瀛樻槑缁�
const column = [
-
- {
- label: '娑堣�楀搧鍚嶇О',
- fieldName: 'Name__c',
- type: 'Name',
- // initialWidth : 300,
- hideDefaultActions: true,
- cellAttributes: { alignment: 'left' }
- },
- {
- label: '鍗曚綅',
- fieldName: 'Box_Piece__c',
- initialWidth : 80,
- hideDefaultActions: true
- },
- {
- label: 'BarCode',
- fieldName: 'Bar_Code__c',
- wrapText: true,
- hideDefaultActions: true,
- initialWidth : 500,
- },
- {
- label: '浣跨敤鏈熼檺',
- fieldName: 'Sterilization_limit__c',
- hideDefaultActions: true,
- // initialWidth : 250
+
+ {
+ label: '娑堣�楀搧鍚嶇О',
+ fieldName: 'Name__c',
+ type: 'Name',
+ // initialWidth : 300,
+ hideDefaultActions: true,
+ cellAttributes: { alignment: 'left' }
+ },
+ {
+ label: '鍗曚綅',
+ fieldName: 'Box_Piece__c',
+ initialWidth: 80,
+ hideDefaultActions: true
+ },
+ {
+ label: 'BarCode',
+ fieldName: 'Bar_Code__c',
+ wrapText: true,
+ hideDefaultActions: true,
+ initialWidth: 500,
+ },
+ {
+ label: '浣跨敤鏈熼檺',
+ fieldName: 'Sterilization_limit__c',
+ hideDefaultActions: true,
+ // initialWidth : 250
+ }
+ ,
+ {
+ label: '閿�瀛樺師鍥�',
+ fieldName: 'diffReason',
+ hideDefaultActions: true,
+ initialWidth: 160
+ }
+];
+
+
+export default class LexOverdueStock extends NavigationMixin(LightningElement) {
+ columns = columns
+ column = column
+ @track data = [];
+ @track overduePageRecords = [];
+ @track iSinventory = false
+
+
+ //鍔犺浇妗�
+ // @track casesSpinner = true;
+ @track showSpinner = true;
+ //鏄剧ず鍙�
+ @track showbutton = false
+ @track showTable = false;
+ @track showTables = false;
+ //閿�瀛樹竴瑙堟暟鎹�
+ @track accountName;
+ @track agencyProType;
+ @track userWorkLocation;
+ @track barcode = ''
+ @track orderDetZaiku
+ @track selectedRows = [];
+ @track codPageRecordsLWC;
+ @track Id;
+ @track overdueList = [];
+
+
+ renderedCallback() {
+ if (!this.stylesLoaded) {
+ Promise.all([loadStyle(this, WrappedHeaderTable)])
+ .then(() => {
+ console.log("Custom styles loaded");
+ this.stylesLoaded = true;
+ })
+ .catch((error) => {
+ console.error("Error loading custom styles");
+ });
}
- ,
- {
- label: '閿�瀛樺師鍥�',
- fieldName: 'diffReason',
- hideDefaultActions: true,
- initialWidth: 160
- }
- ];
-
-
-export default class LexOverdueStock extends NavigationMixin (LightningElement ){
- columns = columns
- column = column
- @track data =[];
- @track overduePageRecords = [];
- @track iSinventory = false
-
-
- //鍔犺浇妗�
- // @track casesSpinner = true;
- @track showSpinner =true;
- //鏄剧ず鍙�
- @track showbutton = false
- @track showTable = false;
- @track showTables = false;
- //閿�瀛樹竴瑙堟暟鎹�
- @track accountName;
- @track agencyProType;
- @track userWorkLocation;
- @track barcode = ''
- @track orderDetZaiku
- @track selectedRows = [];
- @track codPageRecordsLWC;
- @track Id;
- @track overdueList = [];
-
-
- renderedCallback() {
- if (!this.stylesLoaded) {
- Promise.all([loadStyle(this, WrappedHeaderTable)])
- .then(() => {
- console.log("Custom styles loaded");
- this.stylesLoaded = true;
- })
- .catch((error) => {
- console.error("Error loading custom styles");
- });
- }
}
- //鍒濆鍖�
- connectedCallback() {
- console.log('鍒濆鍖�');
- this.showSpinner = true;
+ //鍒濆鍖�
+ connectedCallback() {
+ console.log('鍒濆鍖�');
+ this.showSpinner = true;
- init().then((result) => {
- result = JSON.parse(JSON.stringify(result));
- console.log('result ='+JSON.stringify(result));
- console.log('result 1='+result.entity.codPageRecords);
- if(result.status = 'Success'){
- this.data = JSON.parse(result.entity.codPageRecords);
- this.codPageRecordsLWC = result.entity.codPageRecords;
- console.log('this.data'+this.data);
- this.accountName = result.entity.accountName;
- this.agencyProType = result.entity.agencyProType;
- this.userWorkLocation = result.entity.userWorkLocation;
- this.showTable = true;
- // this.casesSpinner = false;
- this.showSpinner = false;
- }else {
- this.showMyToast('鍒濆鍖栧け璐�',result.msg,'error');
- this.showSpinner = false;
- }
- }).catch((error) => {
- console.log('error = ' + JSON.stringify(error));
- });
- }
- //barcode褰曞叆
- barcodeEntrys(){
- this.showSpinner = true;
- this.showTable = false;
- console.log('code'+this.barcode);
- console.log(' this.accountName'+ this.accountName);
- console.log(' this.barcode'+ this.barcode);
-
- if(this.barcode == ''||this.barcode==null){
- this.showMyToast('鑾峰彇澶辫触','璇疯緭鍏arCode鍙�','error');
- this.showSpinner = false;
+ init().then((result) => {
+ result = JSON.parse(JSON.stringify(result));
+ console.log('result =' + JSON.stringify(result));
+ console.log('result 1=' + result.entity.codPageRecords);
+ if (result.status = 'Success') {
+ this.data = JSON.parse(result.entity.codPageRecords);
+ this.codPageRecordsLWC = result.entity.codPageRecords;
+ console.log('this.data' + this.data);
+ this.accountName = result.entity.accountName;
+ this.agencyProType = result.entity.agencyProType;
+ this.userWorkLocation = result.entity.userWorkLocation;
+ for (var i in this.data) {
+ this.data[i]["key"] = this.data[i]["prodid"] + this.data[i]["boxPiece"];
}
- barcodeEntry({
- accountNameLWC: this.accountName,
- agencyProTypeLWC: this.agencyProType,
- userWorkLocationLWC:this.userWorkLocation,
- barcodeLWC:this.barcode,
- codPageRecordsLWC:this.codPageRecordsLWC
- }).then((result)=>{
- result = JSON.parse(JSON.stringify(result));
- if (result.status == 'Success') {
- this.overduePageRecords = JSON.parse(result.entity.overduePageRecords);
- this.overdueList = result.entity.overdueList;
- this.iSinventory = result.entity.iSinventory;
- console.log('result褰曞叆'+JSON.stringify( result));
- console.log('overdueList==>'+JSON.stringify( this.overdueList));
- for(let i in this.overduePageRecords){
- if(this.overduePageRecords[i].Prod!=null){
- this.overduePageRecords[i]['Name__c'] = this.overduePageRecords[i].Prod.Name__c;
+ this.showTable = true;
+ // this.casesSpinner = false;
+ this.showSpinner = false;
+ } else {
+ this.showMyToast('鍒濆鍖栧け璐�', result.msg, 'error');
+ this.showSpinner = false;
+ }
+ }).catch((error) => {
+ console.log('error = ' + JSON.stringify(error));
+ });
+ }
+ //barcode褰曞叆
+ barcodeEntrys() {
+ this.showSpinner = true;
+ this.showTable = false;
+ console.log('code' + this.barcode);
+ console.log(' this.accountName' + this.accountName);
+ console.log(' this.barcode' + this.barcode);
+ const selectedRows = this.template.querySelector('c-lex-custom-lightning-datatable').getSelectedRows();
+ console.log('selectedRows========> ' + JSON.stringify(selectedRows));
+ for (var i in this.data) {
+ this.data[i]["check"] = false;
+ }
+ for (var i in this.data) {
+ for (var j in selectedRows) {
+ if (this.data[i].prodid + this.data[i]["boxPiece"] == selectedRows[j].prodid + selectedRows[j]["boxPiece"]) {
+ this.data[i]["check"] = true;
+ }
+ // console.log('this.data[i].ProdId+this.data[i]["boxPiece"]'+this.data[i].ProdId+this.data[i]["boxPiece"]);
+ console.log('selectedRows[j].prodid+this.data[i]["boxPiece"]' + selectedRows[j].prodid + selectedRows[j]["boxPiece"]);
- }
- this.overduePageRecords[i]['Bar_Code__c'] = this.overduePageRecords[i].orderdetails2.Bar_Code__c;
- this.overduePageRecords[i]['Box_Piece__c'] = this.overduePageRecords[i].orderdetails2.Box_Piece__c;
- this.overduePageRecords[i]['Sterilization_limit__c'] = this.overduePageRecords[i].orderdetails2.Sterilization_limit__c;
+ }
+ console.log('data===>'+ JSON.stringify(this.data));
+ }
+ // this.selectedRows = [];
+
+ // if(this.barcode == ''||this.barcode==null){
+ // this.showMyToast('鑾峰彇澶辫触','璇疯緭鍏arCode鍙�','error');
+ // this.showSpinner = false;
+ // }
+ barcodeEntry({
+ accountNameLWC: this.accountName,
+ agencyProTypeLWC: this.agencyProType,
+ userWorkLocationLWC: this.userWorkLocation,
+ barcodeLWC: this.barcode,
+ codPageRecordsLWC: JSON.stringify(this.data)
+ }).then((result) => {
+ result = JSON.parse(JSON.stringify(result));
+ if (result.status == 'Success') {
+ this.overduePageRecords = JSON.parse(result.entity.overduePageRecords);
+ this.overdueList = result.entity.overdueList;
+ this.iSinventory = result.entity.iSinventory;
+ console.log('result褰曞叆' + JSON.stringify(result));
+ console.log('overdueList==>' + JSON.stringify(this.overdueList));
+ for (let i in this.overduePageRecords) {
+ if (this.overduePageRecords[i].Prod != null) {
+ this.overduePageRecords[i]['Name__c'] = this.overduePageRecords[i].Prod.Name__c;
+
+ }
+ this.overduePageRecords[i]['Bar_Code__c'] = this.overduePageRecords[i].orderdetails2.Bar_Code__c;
+ this.overduePageRecords[i]['Box_Piece__c'] = this.overduePageRecords[i].orderdetails2.Box_Piece__c;
+ this.overduePageRecords[i]['Sterilization_limit__c'] = this.overduePageRecords[i].orderdetails2.Sterilization_limit__c;
+ }
+ this.data = JSON.parse(result.entity.codPageRecords);
+ console.log(' this.data' + JSON.stringify(this.data));
+ for (var i in this.data) {
+ this.data[i]["key"] = this.data[i]["prodid"] + this.data[i]["boxPiece"];
+ }
+ for (var i in this.data) {
+ if (this.data[i]['check']) {
+ this.selectedRows.push(this.data[i].prodid + this.data[i]["boxPiece"]);
+ console.log("selectedRows:" + this.selectedRows);
+ }
+ }
+ this.showSpinner = false;
+ // this.showTables = true;
+ this.showTable = true;
+ } else {
+ if (result.status == 'Success1') {
+ this.overduePageRecords = JSON.parse(result.entity.overduePageRecords);
+ this.overdueList = result.entity.overdueList;
+ this.iSinventory = result.entity.iSinventory;
+ console.log('result褰曞叆' + JSON.stringify(result));
+ console.log('overdueList==>' + JSON.stringify(this.overdueList));
+ for (let i in this.overduePageRecords) {
+ if (this.overduePageRecords[i].Prod != null) {
+ this.overduePageRecords[i]['Name__c'] = this.overduePageRecords[i].Prod.Name__c;
+
}
- this.data = JSON.parse(result.entity.codPageRecords);
- console.log(' this.data'+ JSON.stringify(this.data));
- for (var i in this.data) {
+ this.overduePageRecords[i]['Bar_Code__c'] = this.overduePageRecords[i].orderdetails2.Bar_Code__c;
+ this.overduePageRecords[i]['Box_Piece__c'] = this.overduePageRecords[i].orderdetails2.Box_Piece__c;
+ this.overduePageRecords[i]['Sterilization_limit__c'] = this.overduePageRecords[i].orderdetails2.Sterilization_limit__c;
+ }
+ this.data = JSON.parse(result.entity.codPageRecords);
+ console.log(' this.data' + JSON.stringify(this.data));
+ for (var i in this.data) {
+ this.data[i]["key"] = this.data[i]["prodid"] + this.data[i]["boxPiece"];
+ }
+ for (var i in this.data) {
if (this.data[i]['check']) {
- this.selectedRows.push(this.data[i].prodid);
- console.log('selectedRows:' + this.selectedRows);
+ this.selectedRows.push(this.data[i].prodid + this.data[i]["boxPiece"]);
+ console.log("selectedRows:" + this.selectedRows);
}
}
this.showSpinner = false;
// this.showTables = true;
this.showTable = true;
- }else{
- this.showMyToast('鑾峰彇澶辫触',result.msg,'error');
+ }else {
+ console.log('Error:' + result.msg);
+ this.showMyToast(result.msg,'','error');
this.showSpinner = false;
+ this.showTable = true;
}
- }).catch((error) => {
- console.log('error = ' + JSON.stringify(error));
- });
-
- }
- //鑾峰彇褰撳墠杈撳叆鍊�
+ // this.showMyToast('鑾峰彇澶辫触', result.msg, 'error');
+ // this.showSpinner = false;
+ }
+
+ }).catch((error) => {
+ console.log('error = ' + JSON.stringify(error));
+ });
+
+ }
+ //鑾峰彇褰撳墠杈撳叆鍊�
handleChange(event) {
let value = event.detail.value;
console.log('value' + value);
this.barcode = value;
- console.log('this.barcode'+this.barcode);
+ console.log('this.barcode' + this.barcode);
}
getSelectedRows(event) {
- console.log('鎵撳嬀');
- const selectedRows = event.detail.selectedRows;
- console.log('this.selectedRows = ' + this.selectedRows);
- for (var i in this.data) {
- this.data[i]['check'] = false;
- }
- for (var i in this.data) {
- for (var j in selectedRows) {
- console.log('this.selectedRows111 = ' + selectedRows[j].prodid);
- console.log('this.selectedRows1112 = ' + this.data[i].prodid );
- if (this.data[i].prodid == selectedRows[j].prodid) {
- this.data[i]['check'] = true;
- }
- }
- }
+ let selectedRowsEvent = event.detail.selectedRows;
+ this.selectedRows = [];
+ for (var i in selectedRowsEvent) {
+ this.selectedRows.push(selectedRowsEvent[i].prodid+this.data[i]["boxPiece"]);
+ }
+ console.log('this.selectedRows==>'+this.selectedRows);
+
}
//淇濆瓨
saveConfirm() {
console.log('杩涘叆閿�瀛樼‘璁�');
this.showSpinner = true;
- var el = this.template.querySelector('c-lex-custom-lightning-datatable');
- var selected = el.getSelectedRows();
- this.selectedData = selected;
- console.log('閫変腑鏁版嵁' + JSON.stringify(this.selectedData));
- console.log('this.overdueList'+this.overdueList);
+ //鏌ヨ鏈夊摢浜涢�夋嫨浜嗙殑鐒跺悗check
+ const selectedRows = this.template.querySelector('c-lex-custom-lightning-datatable').getSelectedRows();
+ console.log('selectedRows========> ' + JSON.stringify(selectedRows));
+ for (var i in this.data) {
+ this.data[i]["check"] = false;
+ }
+ for (var i in this.data) {
+ for (var j in selectedRows) {
+ if (this.data[i].prodid+this.data[i]["boxPiece"] == selectedRows[j].prodid+ selectedRows[j]["boxPiece"]) {
+ this.data[i]["check"] = true;
+ }
+ // console.log('this.data[i].ProdId+this.data[i]["boxPiece"]'+this.data[i].ProdId+this.data[i]["boxPiece"]);
+ console.log('selectedRows[j].prodid+this.data[i]["boxPiece"]'+selectedRows[j].prodid+selectedRows[j]["boxPiece"]);
+
+ }
+ }
+ // var el = this.template.querySelector('c-lex-custom-lightning-datatable');
+ // var selected = el.getSelectedRows();
+ // this.selectedData = selected;
+ // console.log('閫変腑鏁版嵁' + JSON.stringify(this.selectedData));
+ // console.log('this.overdueList' + this.overdueList);
save({
iSinventory: this.iSinventory,
- saveCodPageRecords: JSON.stringify(this.selectedData),
+ saveCodPageRecords: JSON.stringify(this.data),
// saveoverdueList:JSON.stringify(this.overdueList)
- saveoverdueList:this.overdueList
+ saveoverdueList: this.overdueList
}).then((result) => {
- result = JSON.parse(JSON.stringify(result));
- console.log('result淇濆瓨 = ' + JSON.stringify(result));
- if (result.status == 'Success') {
- this[NavigationMixin.Navigate]({
- type: 'standard__recordPage',
- attributes: {
- recordId:result.entity.Id,
- objectApiName: 'Consumable_order__c',
- actionName: 'view'
- }
- });
- this.showSpinner = false;
- } else {
- this.showMyToast('閿�瀛樺け璐�',result.msg,'error');
- this.showSpinner = false;
- }
- })
+ result = JSON.parse(JSON.stringify(result));
+ console.log('result淇濆瓨 = ' + JSON.stringify(result));
+ if (result.status == 'Success') {
+ this[NavigationMixin.Navigate]({
+ type: 'standard__recordPage',
+ attributes: {
+ recordId: result.entity.Id,
+ objectApiName: 'Consumable_order__c',
+ actionName: 'view'
+ }
+ });
+ this.showSpinner = false;
+ } else {
+ this.showMyToast('閿�瀛樺け璐�', result.msg, 'error');
+ this.showSpinner = false;
+ }
+ })
.catch((error) => {
console.log('error = ' + JSON.stringify(error));
this.showSpinner = false;
@@ -283,17 +350,17 @@
console.log('show custom message');
var iconName = '';
var content = '';
- if(variant == 'success'){
- iconName = 'utility:check';
- }else{
- iconName = 'utility:error';
+ if (variant == 'success') {
+ iconName = 'utility:check';
+ } else {
+ iconName = 'utility:error';
}
- if(message != ''){
- content = '<h2><strong>'+title+'<strong/></h2><h5>'+message+'</h5>';
- }else{
- content = '<h2><strong>'+title+'<strong/></h2>';
+ if (message != '') {
+ content = '<h2><strong>' + title + '<strong/></h2><h5>' + message + '</h5>';
+ } else {
+ content = '<h2><strong>' + title + '<strong/></h2>';
}
- this.template.querySelector('c-common-toast').showToast(variant,content,iconName,10000);
- }
+ this.template.querySelector('c-common-toast').showToast(variant, content, iconName, 10000);
+ }
- }
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.html b/force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.html
index 30f6d64..8e43278 100644
--- a/force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.html
+++ b/force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.html
@@ -632,7 +632,7 @@
<div lwc:dom="manual" class="resultDiv"></div>
<div draggable="false">
<lightning-layout multiple-rows>
- <lightning-layout-item padding="around-small" flexibility="auto">
+ <lightning-layout-item style="padding: 10px;" flexibility="auto">
<div class="slds-grid slds-grid_vertical-align-center">
<div class="slds-form-element__label">娑堣�楀搧鍚嶇О</div>
<lightning-input type="text" name="consumableName" label="娑堣�楀搧鍚嶇О"
@@ -641,7 +641,7 @@
</div>
</lightning-layout-item>
- <lightning-layout-item padding="around-small" flexibility="auto">
+ <lightning-layout-item style="padding: 10px;" flexibility="auto">
<div class="slds-grid slds-grid_vertical-align-center">
<div class="slds-form-element__label" style="width:80px">绗�3鍒嗙被</div>
<lightning-combobox name="progress" label="绗�3鍒嗙被" value={Category3}
@@ -650,7 +650,7 @@
class="inputFont"></lightning-combobox>
</div>
</lightning-layout-item>
- <lightning-layout-item padding="around-small" flexibility="auto">
+ <lightning-layout-item style="padding: 10px;" flexibility="auto">
<div class="slds-grid slds-grid_vertical-align-center">
<div class="slds-form-element__label" style="width:80px">绗�4鍒嗙被</div>
<lightning-combobox name="progress" label="绗�4鍒嗙被" value={Category4}
@@ -660,7 +660,7 @@
</div>
</lightning-layout-item>
- <lightning-layout-item padding="around-small" flexibility="auto">
+ <lightning-layout-item style="padding: 10px;" flexibility="auto">
<div class="slds-grid slds-grid_vertical-align-center">
<div class="slds-form-element__label" style="width:80px">绗�5鍒嗙被</div>
<lightning-combobox name="progress" label="绗�5鍒嗙被" value={Category5}
@@ -671,7 +671,7 @@
</lightning-layout-item>
<template if:true={hasHosPro}>
- <lightning-layout-item padding="around-small" flexibility="auto">
+ <lightning-layout-item style="padding: 10px;" flexibility="auto">
<div class="slds-grid slds-grid_vertical-align-center">
<div class="slds-form-element__label">鍖婚櫌鐗逛环</div>
<lightning-combobox name="progress" label="鍖婚櫌鐗逛环" value={outOutPattern}
diff --git a/force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.js b/force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.js
index ab13ad8..74a0853 100644
--- a/force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.js
+++ b/force-app/main/default/lwc/lexSummonsCreat/lexSummonsCreat.js
@@ -25,7 +25,13 @@
import { loadStyle } from "lightning/platformResourceLoader";
import WrappedHeaderTable from "@salesforce/resourceUrl/lexdatatable";
+import ConsumableOutboundReportId from '@salesforce/label/c.ConsumableOutboundReportId';
+const customLabel = {
+ ConsumableOutboundReportId
+}
+
export default class LexSummonsCreat extends NavigationMixin(LightningElement) {
+ @track label = customLabel;
@track isShowSpinner = true;
@track isEditShowSpinner = false;
@track showResults = true;
@@ -1774,7 +1780,9 @@
var reportId = this.ESetid;
reportId = reportId.substring(0, 15);
let reportFilters = '[{"operator":"equals","value":"' + reportId + '","column":"FK_CUSTENT_ID"}]';
- let url = "/report/00O0l000000zZtpEAE?reportFilters=" + encodeURIComponent(reportFilters);
+ let reportUrl = this.label.ConsumableOutboundReportId;
+ console.log("reportUrl = " + reportUrl);
+ let url = "/report/" + reportUrl + "?reportFilters=" + encodeURIComponent(reportFilters);
console.log("url = " + url);
this[NavigationMixin.Navigate]({
type: "standard__webPage",
diff --git a/force-app/main/default/lwc/lexinventoryViewLWC/lexinventoryViewLWC.js b/force-app/main/default/lwc/lexinventoryViewLWC/lexinventoryViewLWC.js
index 33c59dd..7b2a2c7 100644
--- a/force-app/main/default/lwc/lexinventoryViewLWC/lexinventoryViewLWC.js
+++ b/force-app/main/default/lwc/lexinventoryViewLWC/lexinventoryViewLWC.js
@@ -442,7 +442,7 @@
this[NavigationMixin.Navigate]({
type: 'standard__webPage',
attributes: {
- url: '/lexInventory'
+ url: '/lexinventory'
}
});
}
@@ -452,7 +452,7 @@
this[NavigationMixin.Navigate]({
type: 'standard__webPage',
attributes: {
- url: '/lexoverdueStock'
+ url: '/lexoverduestock'
}
});
@@ -470,7 +470,7 @@
this[NavigationMixin.Navigate]({
type: 'standard__webPage',
attributes: {
- url: '/lexCancelRemoveBox'
+ url: '/lexcancelremovebox'
}
});
diff --git a/force-app/main/default/permissionsets/Community_LEX_PS.permissionset-meta.xml b/force-app/main/default/permissionsets/Community_LEX_PS.permissionset-meta.xml
new file mode 100644
index 0000000..4e2c37d
--- /dev/null
+++ b/force-app/main/default/permissionsets/Community_LEX_PS.permissionset-meta.xml
@@ -0,0 +1,315 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<PermissionSet xmlns="http://soap.sforce.com/2006/04/metadata">
+ <classAccesses>
+ <apexClass>LexArriveGoodsController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexArriveGoodsMainController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexArriveGsDetailsController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexBTReportController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexCancelRemoveBoxController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexCancelRemoveBoxControllerTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConInvoiceList</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConInvoiceViewController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConInvoicedetailsController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConsumApply_FromQISCtl</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConsumableAccountController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConsumableAccountInfoController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConsumableAccountSOQL</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConsumableController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConsumableGoodsInfo</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexConsumableOrderManageController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexContractAuthorizeController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexDealerInquiryModifyStateController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexEquipmentRentalApply_FromQISCtl</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryHeaderClearStatusController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryHeaderController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryListController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryListControllerTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryListTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryViewController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryViewControllerTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexInventoryViewTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexLicenceReminderController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexLicenceReminderControllerTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexLostSubmitApprovalController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexMeetingCostsController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexNewAndEditBasePIPLController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexNewAndEditContactPIPLController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexNewAndEditLeadPIPLController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexNewAndEditReportPIPLController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexNewSICustomNewController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexNoReportApplicationController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexOutboundorderImportController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexOverdueStockController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexPaymentPlanLoadController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexPrintInspectupReportController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexProductLimitEditController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexProductLimitEditControllerTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexProductLimitEditTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexRemoveBoxController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexRemoveBoxControllerTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexRentalApplySetSelectSubstitute</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSIAbortBtnController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSINewQuoteEntryController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSISearchSetProductController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSaleAndDeliveryController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSaleOrderController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSearchAgencyHospitalTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSearchContractController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSearchHospitalController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSearchProductController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSearchProductCsController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSearchProductIraiController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSearchSetProductController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexStockCancelController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexSummonsCreatController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexTopPageController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexTopPageControllerTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexTransferApplyController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexUpAccountProLimit</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexUpAccountProLimitControllerTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexUpAccountProLimitTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexUtility</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexUtilityTest</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <classAccesses>
+ <apexClass>LexVisitReportCancelController</apexClass>
+ <enabled>true</enabled>
+ </classAccesses>
+ <hasActivationRequired>false</hasActivationRequired>
+ <label>Community LEX PS</label>
+ <objectPermissions>
+ <allowCreate>true</allowCreate>
+ <allowDelete>false</allowDelete>
+ <allowEdit>false</allowEdit>
+ <allowRead>true</allowRead>
+ <modifyAllRecords>false</modifyAllRecords>
+ <object>Agency_Report_Header__c</object>
+ <viewAllRecords>false</viewAllRecords>
+ </objectPermissions>
+ <objectPermissions>
+ <allowCreate>true</allowCreate>
+ <allowDelete>false</allowDelete>
+ <allowEdit>false</allowEdit>
+ <allowRead>true</allowRead>
+ <modifyAllRecords>false</modifyAllRecords>
+ <object>Agency_Report__c</object>
+ <viewAllRecords>false</viewAllRecords>
+ </objectPermissions>
+ <userPermissions>
+ <enabled>true</enabled>
+ <name>ChatterEnabledForUser</name>
+ </userPermissions>
+ <userPermissions>
+ <enabled>true</enabled>
+ <name>ViewContent</name>
+ </userPermissions>
+</PermissionSet>
--
Gitblit v1.9.1