yeawood_consts 1.0.20 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +11 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -137,3 +137,14 @@ exports.TENDER_CEE_PROJECT_STATE_CALCULATOR = (
|
|
|
137
137
|
return exports.TENDER_CEE_PROJECT_STATE_QUOTED
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
|
+
|
|
141
|
+
exports.TENDER_COMPANY_FILTER = (company, company_curr) => {
|
|
142
|
+
switch (company) {
|
|
143
|
+
case company_curr:
|
|
144
|
+
return company
|
|
145
|
+
case '重庆飞鸿运输有限公司':
|
|
146
|
+
return '重庆帝睿物流有限公司'
|
|
147
|
+
default:
|
|
148
|
+
return company
|
|
149
|
+
}
|
|
150
|
+
}
|