Changeset 279 for branches/web/UBill.pas
- Timestamp:
- Mar 5, 2010, 8:52:50 PM (15 years ago)
- Location:
- branches/web
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/web
- Property svn:ignore
-
old new 3 3 *.o 4 4 backup 5 6 5 index.cgi 7 8 6 index.compiled 9 10 7 UConfig.pas 8 bin
-
- Property svn:ignore
-
branches/web/UBill.pas
r158 r279 153 153 procedure TBill.Store; 154 154 var 155 Data: TAssoc Array;156 begin 157 Data := TAssoc Array.Create;155 Data: TAssociativeArray; 156 begin 157 Data := TAssociativeArray.Create; 158 158 Data.AddKeyValue('BillCode', BillCode); 159 159 Data.AddKeyValue('time_due', IntToStr(DateTimeToUnix(TimeDue))); … … 312 312 procedure TBillItem.Store; 313 313 var 314 DbRows: TDbRows; 315 Data: TAssocArray; 316 begin 317 Data := TAssocArray.Create; 314 Data: TAssociativeArray; 315 begin 316 Data := TAssociativeArray.Create; 318 317 Data.AddKeyValue('Quantitiy', IntToStr(Quantity)); 319 318 Data.AddKeyValue('Description', Description);
Note:
See TracChangeset
for help on using the changeset viewer.