phpBMS

Show
Ignore:
Timestamp:
01/01/10 14:34:39 (2 years ago)
Author:
nate
Message:
  • Removed references to 'deposits' and replaced them with references to 'credits' (in relation to ar items and receipts).
  • Made sure that the type field for aritems should be able to take 'credit' but not 'deposit', and the update will change the references from deposit to credit (this time on the database side).
  • Fixed bugs with generateuuids.php and with the load open items button on the receipts add-edit.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/phpbms/modules/bms/install/updatev0.98.sql

    r698 r701  
    3939    ADD COLUMN `uuid` VARCHAR(64) NOT NULL, 
    4040    MODIFY `clientid` VARCHAR(64) NOT NULL, 
    41     MODIFY `relatedid` VARCHAR(64); 
     41    MODIFY `relatedid` VARCHAR(64), 
     42    MODIFY `type` ENUM('invoice','credit','service charge', 'deposit') NOT NULL; 
     43UPDATE `aritems` SET `type`='credit' WHERE `type`='deposit'; 
     44ALTER TABLE `aritems` 
     45    MODIFY `type` ENUM('invoice','credit','service charge') NOT NULL; 
    4246--end aritems ALTER-- 
    4347--attachements ALTER-- 
phpBMS vulnerability assesment provided by Orvant Inc. Copyright © 2010 Kreotek, LLC. All Rights reserved.