Administrator
2022-09-14 58d006e05dcf2a20d0ec5367dd03d66a61db6849
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
package com.mandi.fendan.util.persist;
 
import java.io.Serializable;
import java.util.Date;
 
public class Yktbsitem implements Serializable{
    
    private String id;
    private String bussinessNo;//业务单编号
    private String name;//物料名称
    private String materielNo;//物料编号
    private String norms;//规格型号
    private String unitname;//单位
    private double num;//数量
    private String note;//备注
    private double weight;//重量
    private double price;//单价
    private double preweight;//改磅差之前的重量 
    private String pici;//批次号
    private String hejin;//hejin
    private double gross;//毛重
    private String taotong;//0 wu ,1 tie 2lv
    private double taotongWeight;//套筒重(皮重)
    private double money;//金额
    
    private String createid;//创建人
    private String cname;//创建人
    private long cdepartid;//创建部门
    private String cdepart;//创建部门
    private Date ctime;//创建时间
    
    private boolean loadbuild;//是否装卸货记录生成
    private boolean factory;//是否需要返厂
    private boolean fachang;//是否返厂
    private double fcnum;//返厂数量 单据结束后这个地方才更新
    
    private String product_billNo;//提单号
    private String product_serialNo;//流水号
    private String product_otherNo;//对方编号
    private String product_ywrq;//业务日期
    private String product_flh;//分录号
    
    
    private double reserved11;
    private double reserved12;
    private double reserved13;
    
    private String reserved14;  
    private String reserved15; //用于保存维修出厂物资的验证码
    private String reserved16;//业务详情关联装卸货记录id
    
    private String recompany;//最后收货单位
    private String reID;//
    private String decompany;//发货单位
    private String deID;
    private String rcompany;//收货单位(只有半成品转运出值需要验证)
    private String rID;
    private String frombatch;//数据来源  批次号,成品条码,ERP提货单,手动输入
 
    private double jsnum;//拒收数量
    private int forshowindx;//为了显示排序
    private String barcode;//成品条码号
    private boolean nzwzfinish;//是否已经生成内转记录
    
    
    private String product_thlx;//退货类型
    private String product_thyy;//退货原因
    private String product_thdq;//退货地区
    
    public String getPici() {
        return pici;
    }
    public void setPici(String pici) {
        this.pici = pici;
    }
    public String getHejin() {
        return hejin;
    }
    public void setHejin(String hejin) {
        this.hejin = hejin;
    }
    public String getTaotong() {
        return taotong;
    }
    public void setTaotong(String taotong) {
        this.taotong = taotong;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getBussinessNo() {
        return bussinessNo;
    }
    public void setBussinessNo(String bussinessNo) {
        this.bussinessNo = bussinessNo;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getMaterielNo() {
        return materielNo;
    }
    public void setMaterielNo(String materielNo) {
        this.materielNo = materielNo;
    }
    public String getNorms() {
        return norms;
    }
    public void setNorms(String norms) {
        this.norms = norms;
    }
    
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public String getCreateid() {
        return createid;
    }
    public void setCreateid(String createid) {
        this.createid = createid;
    }
    public String getCname() {
        return cname;
    }
    public void setCname(String cname) {
        this.cname = cname;
    }
    public long getCdepartid() {
        return cdepartid;
    }
    public void setCdepartid(long cdepartid) {
        this.cdepartid = cdepartid;
    }
    public String getCdepart() {
        return cdepart;
    }
    public void setCdepart(String cdepart) {
        this.cdepart = cdepart;
    }
    public Date getCtime() {
        return ctime;
    }
    public void setCtime(Date ctime) {
        this.ctime = ctime;
    }
    public boolean isLoadbuild() {
        return loadbuild;
    }
    public void setLoadbuild(boolean loadbuild) {
        this.loadbuild = loadbuild;
    }
    public boolean isFactory() {
        return factory;
    }
    public void setFactory(boolean factory) {
        this.factory = factory;
    }
    public boolean isFachang() {
        return fachang;
    }
    public void setFachang(boolean fachang) {
        this.fachang = fachang;
    }
    public double getReserved11() {
        return reserved11;
    }
    public void setReserved11(double reserved11) {
        this.reserved11 = reserved11;
    }
    public double getReserved12() {
        return reserved12;
    }
    public void setReserved12(double reserved12) {
        this.reserved12 = reserved12;
    }
    public double getReserved13() {
        return reserved13;
    }
    public void setReserved13(double reserved13) {
        this.reserved13 = reserved13;
    }
    public String getReserved14() {
        return reserved14;
    }
    public void setReserved14(String reserved14) {
        this.reserved14 = reserved14;
    }
    public String getReserved15() {
        return reserved15;
    }
    public void setReserved15(String reserved15) {
        this.reserved15 = reserved15;
    }
    public String getReserved16() {
        return reserved16;
    }
    public void setReserved16(String reserved16) {
        this.reserved16 = reserved16;
    }
    public String getUnitname() {
        return unitname;
    }
    public void setUnitname(String unitname) {
        this.unitname = unitname;
    }
    public String getProduct_billNo() {
        return product_billNo;
    }
    public void setProduct_billNo(String product_billNo) {
        this.product_billNo = product_billNo;
    }
    public String getProduct_serialNo() {
        return product_serialNo;
    }
    public void setProduct_serialNo(String product_serialNo) {
        this.product_serialNo = product_serialNo;
    }
    public String getProduct_otherNo() {
        return product_otherNo;
    }
    public void setProduct_otherNo(String product_otherNo) {
        this.product_otherNo = product_otherNo;
    }
    public double getWeight() {
        return weight;
    }
    public void setWeight(double weight) {
        this.weight = weight;
    }
    public double getPrice() {
        return price;
    }
    public void setPrice(double price) {
        this.price = price;
    }
    public double getPreweight() {
        return preweight;
    }
    public void setPreweight(double preweight) {
        this.preweight = preweight;
    }
    public double getMoney() {
        return money;
    }
    public void setMoney(double money) {
        this.money = money;
    }
    public double getNum() {
        return num;
    }
    public void setNum(double num) {
        this.num = num;
    }
    public double getFcnum() {
        return fcnum;
    }
    public void setFcnum(double fcnum) {
        this.fcnum = fcnum;
    }
    public String getProduct_ywrq() {
        return product_ywrq;
    }
    public void setProduct_ywrq(String product_ywrq) {
        this.product_ywrq = product_ywrq;
    }
    public String getProduct_flh() {
        return product_flh;
    }
    public void setProduct_flh(String product_flh) {
        this.product_flh = product_flh;
    }
    public String getRecompany() {
        return recompany;
    }
    public void setRecompany(String recompany) {
        this.recompany = recompany;
    }
    public String getReID() {
        return reID;
    }
    public void setReID(String reID) {
        this.reID = reID;
    }
    public String getDecompany() {
        return decompany;
    }
    public void setDecompany(String decompany) {
        this.decompany = decompany;
    }
    public String getDeID() {
        return deID;
    }
    public void setDeID(String deID) {
        this.deID = deID;
    }
    public String getFrombatch() {
        return frombatch;
    }
    public void setFrombatch(String frombatch) {
        this.frombatch = frombatch;
    }
    public double getJsnum() {
        return jsnum;
    }
    public void setJsnum(double jsnum) {
        this.jsnum = jsnum;
    }
    public String getRcompany() {
        return rcompany;
    }
    public void setRcompany(String rcompany) {
        this.rcompany = rcompany;
    }
    public String getrID() {
        return rID;
    }
    public void setrID(String rID) {
        this.rID = rID;
    }
    public int getForshowindx() {
        return forshowindx;
    }
    public void setForshowindx(int forshowindx) {
        this.forshowindx = forshowindx;
    }
    public String getBarcode() {
        return barcode;
    }
    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }
    public boolean isNzwzfinish() {
        return nzwzfinish;
    }
    public void setNzwzfinish(boolean nzwzfinish) {
        this.nzwzfinish = nzwzfinish;
    }
    public double getGross() {
        return gross;
    }
    public void setGross(double gross) {
        this.gross = gross;
    }
    public double getTaotongWeight() {
        return taotongWeight;
    }
    public void setTaotongWeight(double taotongWeight) {
        this.taotongWeight = taotongWeight;
    }
    public String getProduct_thlx() {
        return product_thlx;
    }
    public void setProduct_thlx(String product_thlx) {
        this.product_thlx = product_thlx;
    }
    public String getProduct_thyy() {
        return product_thyy;
    }
    public void setProduct_thyy(String product_thyy) {
        this.product_thyy = product_thyy;
    }
    public String getProduct_thdq() {
        return product_thdq;
    }
    public void setProduct_thdq(String product_thdq) {
        this.product_thdq = product_thdq;
    }
    
    
}