yeawood_consts 1.0.43 → 1.0.45

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.
Files changed (2) hide show
  1. package/index.js +39 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -56,7 +56,9 @@ exports.TENDER_PROJECT_SPEEDS = [
56
56
  { type: 'cee', env: 'LATEST', speeds: [80000, 80000, 40000] },
57
57
  { type: 'cee', env: 'STABLE', speeds: [40000, 30000, 1000] },
58
58
  { type: 'teruide', env: 'LATEST', speeds: [80000, 80000, 40000] },
59
- { type: 'teruide', env: 'STABLE', speeds: [40000, 30000, 5000] }
59
+ { type: 'teruide', env: 'STABLE', speeds: [40000, 30000, 5000] },
60
+ { type: 'powerchina', env: 'LATEST', speeds: [80000, 80000, 5000] },
61
+ { type: 'powerchina', env: 'STABLE', speeds: [40000, 30000, 1000] }
60
62
  ]
61
63
 
62
64
  exports.TENDER_DECREASE_BASIS = [
@@ -91,6 +93,41 @@ exports.TENDER_PROJECT_STATES = [
91
93
  }
92
94
  ]
93
95
 
96
+ exports.TENDER_POWERCHINA_TENDER_METHODS = [
97
+ {
98
+ label: '邀请招标',
99
+ value: '01'
100
+ },
101
+ {
102
+ label: '直接采购',
103
+ value: '11'
104
+ },
105
+ {
106
+ label: '公开询比采购',
107
+ value: '06'
108
+ },
109
+ {
110
+ label: '邀请询比采购',
111
+ value: '07'
112
+ },
113
+ {
114
+ label: '公开谈判采购',
115
+ value: '08'
116
+ },
117
+ {
118
+ label: '邀请谈判采购',
119
+ value: '09'
120
+ },
121
+ {
122
+ label: '公开竞价采购',
123
+ value: '14'
124
+ },
125
+ {
126
+ label: '邀请竞价采购',
127
+ value: '15'
128
+ }
129
+ ]
130
+
94
131
  exports.TENDER_PROJECT_SORT_CALCULATOR = (state, time) => {
95
132
  const INFINITY = '9999999999999'
96
133
 
@@ -199,7 +236,7 @@ exports.TENDER_COMPANY_FILTER = (company, company_curr) => {
199
236
  switch (company) {
200
237
  case company_curr:
201
238
  return company
202
- case '重庆飞鸿运输有限公司':
239
+ case '重庆飞鸿供应链有限公司':
203
240
  return '重庆帝睿物流有限公司'
204
241
  default:
205
242
  return company
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yeawood_consts",
3
- "version": "1.0.43",
3
+ "version": "1.0.45",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {},